diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f096a347..fb0bacb08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ Added support for Kotlin and TOML. Fixed an issue with YAML and `|` block strings. Updated to the latest upstream C++, C#, Elixir, Go, Haskell, Java, -Python, Ruby and TypeScript parsers. +Python, Ruby, Rust and TypeScript parsers. ### Diffing diff --git a/vendor/tree-sitter-rust/Cargo.toml b/vendor/tree-sitter-rust/Cargo.toml index a22598960..b45b1b707 100644 --- a/vendor/tree-sitter-rust/Cargo.toml +++ b/vendor/tree-sitter-rust/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-rust" description = "Rust grammar for the tree-sitter parsing library" -version = "0.19.1" +version = "0.20.1" authors = ["Max Brunsfeld "] license = "MIT" readme = "bindings/rust/README.md" @@ -23,7 +23,7 @@ autoexamples = false path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "0.19" +tree-sitter = "0.20" [build-dependencies] cc = "1.0" diff --git a/vendor/tree-sitter-rust/corpus/async.txt b/vendor/tree-sitter-rust/corpus/async.txt index a4a49b7bf..ea251d893 100644 --- a/vendor/tree-sitter-rust/corpus/async.txt +++ b/vendor/tree-sitter-rust/corpus/async.txt @@ -1,6 +1,6 @@ -============================================ +================================================================================ Async function -============================================ +================================================================================ async fn abc() {} @@ -8,7 +8,7 @@ async fn main() { let x = futures.await?; } ---- +-------------------------------------------------------------------------------- (source_file (function_item @@ -16,56 +16,73 @@ async fn main() { (identifier) (parameters) (block)) - (function_item (function_modifiers) (identifier) (parameters) + (function_item + (function_modifiers) + (identifier) + (parameters) (block - (let_declaration (identifier) (try_expression - (await_expression (identifier))))))) + (let_declaration + (identifier) + (try_expression + (await_expression + (identifier))))))) -============================================ +================================================================================ Await expression -============================================ +================================================================================ futures.await; futures.await?; futures.await?.await?; futures.await?.function().await?; ---- +-------------------------------------------------------------------------------- (source_file - (await_expression (identifier)) - (try_expression - (await_expression (identifier))) - (try_expression + (expression_statement (await_expression - (try_expression - (await_expression (identifier))))) - (try_expression - (await_expression - (call_expression - (field_expression - (try_expression - (await_expression (identifier))) - (field_identifier)) - (arguments))))) + (identifier))) + (expression_statement + (try_expression + (await_expression + (identifier)))) + (expression_statement + (try_expression + (await_expression + (try_expression + (await_expression + (identifier)))))) + (expression_statement + (try_expression + (await_expression + (call_expression + (field_expression + (try_expression + (await_expression + (identifier))) + (field_identifier)) + (arguments)))))) -============================================ +================================================================================ Async Block -============================================ +================================================================================ async {} async { let x = 10; } async move {} ---- +-------------------------------------------------------------------------------- (source_file - (async_block - (block)) - (async_block - (block - (let_declaration - (identifier) - (integer_literal)))) - (async_block - (block))) + (expression_statement + (async_block + (block))) + (expression_statement + (async_block + (block + (let_declaration + (identifier) + (integer_literal))))) + (expression_statement + (async_block + (block)))) diff --git a/vendor/tree-sitter-rust/corpus/declarations.txt b/vendor/tree-sitter-rust/corpus/declarations.txt index 55fa032b0..99a2d2f1f 100644 --- a/vendor/tree-sitter-rust/corpus/declarations.txt +++ b/vendor/tree-sitter-rust/corpus/declarations.txt @@ -1,6 +1,6 @@ -============================================ +================================================================================ Modules -============================================ +================================================================================ mod english; @@ -13,34 +13,53 @@ mod english { pub mod english; ---- +-------------------------------------------------------------------------------- (source_file - (mod_item (identifier)) - (mod_item (identifier) (declaration_list)) - (mod_item (identifier) (declaration_list - (mod_item (identifier) (declaration_list)) - (mod_item (identifier) (declaration_list)))) - (mod_item (visibility_modifier) (identifier))) - -============================================ + (mod_item + (identifier)) + (mod_item + (identifier) + (declaration_list)) + (mod_item + (identifier) + (declaration_list + (mod_item + (identifier) + (declaration_list)) + (mod_item + (identifier) + (declaration_list)))) + (mod_item + (visibility_modifier) + (identifier))) + +================================================================================ Extern crate declarations -============================================ +================================================================================ extern crate std; extern crate std as ruststd; pub extern crate futures; ---- +-------------------------------------------------------------------------------- (source_file - (extern_crate_declaration (crate) (identifier)) - (extern_crate_declaration (crate) (identifier) (identifier)) - (extern_crate_declaration (visibility_modifier) (crate) (identifier))) + (extern_crate_declaration + (crate) + (identifier)) + (extern_crate_declaration + (crate) + (identifier) + (identifier)) + (extern_crate_declaration + (visibility_modifier) + (crate) + (identifier))) -============================================ +================================================================================ Function declarations -============================================ +================================================================================ fn main() {} @@ -70,7 +89,7 @@ fn foo(#[attr] x: i32, #[attr] x: i64) {} fn accumulate(self) -> Machine<{State::Accumulate}> {} ---- +-------------------------------------------------------------------------------- (source_file (function_item @@ -88,10 +107,11 @@ fn accumulate(self) -> Machine<{State::Accumulate}> {} type: (primitive_type))) return_type: (primitive_type) body: (block - (return_expression - (binary_expression - left: (identifier) - right: (identifier))))) + (expression_statement + (return_expression + (binary_expression + left: (identifier) + right: (identifier)))))) (function_item name: (identifier) parameters: (parameters @@ -100,11 +120,13 @@ fn accumulate(self) -> Machine<{State::Accumulate}> {} type: (reference_type type: (primitive_type)))) body: (block - (macro_invocation - macro: (identifier) - (token_tree - (string_literal) - (identifier))))) + (expression_statement + (macro_invocation + macro: (identifier) + (token_tree + (string_literal) + (non_special_punctuation) + (identifier)))))) (function_item name: (identifier) parameters: (parameters) @@ -112,10 +134,11 @@ fn accumulate(self) -> Machine<{State::Accumulate}> {} element: (primitive_type) length: (integer_literal)) body: (block - (return_expression - (array_expression - (integer_literal) - (integer_literal))))) + (expression_statement + (return_expression + (array_expression + (integer_literal) + (integer_literal)))))) (function_item name: (identifier) parameters: (parameters) @@ -123,10 +146,11 @@ fn accumulate(self) -> Machine<{State::Accumulate}> {} (primitive_type) (primitive_type)) body: (block - (return_expression - (tuple_expression - (integer_literal) - (integer_literal))))) + (expression_statement + (return_expression + (tuple_expression + (integer_literal) + (integer_literal)))))) (function_item name: (identifier) parameters: (parameters) @@ -153,13 +177,13 @@ fn accumulate(self) -> Machine<{State::Accumulate}> {} name: (identifier) parameters: (parameters (attribute_item - (meta_item + (attr_item (identifier))) (parameter pattern: (identifier) type: (primitive_type)) (attribute_item - (meta_item + (attr_item (identifier))) (parameter pattern: (identifier) @@ -179,25 +203,29 @@ fn accumulate(self) -> Machine<{State::Accumulate}> {} name: (identifier))))) body: (block))) -============================================ +================================================================================ Const function declarations -============================================ +================================================================================ const fn main() {} ---- +-------------------------------------------------------------------------------- (source_file - (function_item (function_modifiers) (identifier) (parameters) (block))) + (function_item + (function_modifiers) + (identifier) + (parameters) + (block))) -============================================ +================================================================================ Functions with abstract return types -============================================ +================================================================================ fn triples(a: impl B) -> impl Iterator { } ---- +-------------------------------------------------------------------------------- (source_file (function_item @@ -205,20 +233,26 @@ fn triples(a: impl B) -> impl Iterator { (parameters (parameter (identifier) - (abstract_type (type_identifier)))) - (abstract_type (generic_type - (type_identifier) - (type_arguments (type_binding (type_identifier) (tuple_type (primitive_type)))))) + (abstract_type + (type_identifier)))) + (abstract_type + (generic_type + (type_identifier) + (type_arguments + (type_binding + (type_identifier) + (tuple_type + (primitive_type)))))) (block))) -============================================ +================================================================================ Diverging functions -============================================ +================================================================================ fn aborts() -> ! { } ---- +-------------------------------------------------------------------------------- (source_file (function_item @@ -227,9 +261,9 @@ fn aborts() -> ! { (empty_type) (block))) -============================================ +================================================================================ Extern function declarations -============================================ +================================================================================ extern "C" fn foo() {} extern "C" fn printf( @@ -237,23 +271,30 @@ extern "C" fn printf( ..., ) {} ---- +-------------------------------------------------------------------------------- (source_file (function_item - (function_modifiers (extern_modifier (string_literal))) + (function_modifiers + (extern_modifier + (string_literal))) (identifier) (parameters) (block)) (function_item - (function_modifiers (extern_modifier (string_literal))) + (function_modifiers + (extern_modifier + (string_literal))) (identifier) - (parameters (pointer_type (type_identifier)) (variadic_parameter)) + (parameters + (pointer_type + (type_identifier)) + (variadic_parameter)) (block))) -============================================ +================================================================================ Use declarations -============================================ +================================================================================ use abc; use phrases::japanese; @@ -267,7 +308,7 @@ use three::{ dot::{one, four} }; use my::{ some::* }; use my::{*}; ---- +-------------------------------------------------------------------------------- (source_file (use_declaration @@ -346,9 +387,9 @@ use my::{*}; list: (use_list (use_wildcard))))) -============================================ +================================================================================ Variable bindings -============================================ +================================================================================ let x; let x = 42; @@ -359,21 +400,41 @@ let y: bool = false; let bool: bool = false; let u32: str = ""; ---- +-------------------------------------------------------------------------------- (source_file - (let_declaration (identifier)) - (let_declaration (identifier) (integer_literal)) - (let_declaration (identifier) (primitive_type)) - (let_declaration (identifier) (primitive_type) (integer_literal)) - (let_declaration (mutable_specifier) (identifier) (integer_literal)) - (let_declaration (identifier) (primitive_type) (boolean_literal)) - (let_declaration (identifier) (primitive_type) (boolean_literal)) - (let_declaration (identifier) (primitive_type) (string_literal))) - -============================================ + (let_declaration + (identifier)) + (let_declaration + (identifier) + (integer_literal)) + (let_declaration + (identifier) + (primitive_type)) + (let_declaration + (identifier) + (primitive_type) + (integer_literal)) + (let_declaration + (mutable_specifier) + (identifier) + (integer_literal)) + (let_declaration + (identifier) + (primitive_type) + (boolean_literal)) + (let_declaration + (identifier) + (primitive_type) + (boolean_literal)) + (let_declaration + (identifier) + (primitive_type) + (string_literal))) + +================================================================================ Structs -============================================ +================================================================================ struct Proton; struct Electron {} @@ -387,26 +448,52 @@ struct Point { struct Color(pub i32, i32, i32); struct Inches(i32); ---- +-------------------------------------------------------------------------------- (source_file - (struct_item (type_identifier)) - (struct_item (type_identifier) (field_declaration_list)) - (struct_item (type_identifier) (field_declaration_list - (field_declaration (visibility_modifier) (field_identifier) (type_identifier)) - (field_declaration (visibility_modifier) (field_identifier) (primitive_type)))) - (struct_item (type_identifier) (field_declaration_list - (field_declaration (field_identifier) (primitive_type)) - (attribute_item (meta_item (identifier))) - (field_declaration (field_identifier) (primitive_type)))) - (struct_item (type_identifier) (ordered_field_declaration_list - (visibility_modifier) (primitive_type) (primitive_type) (primitive_type))) - (struct_item (type_identifier) (ordered_field_declaration_list - (primitive_type)))) - -============================================ + (struct_item + (type_identifier)) + (struct_item + (type_identifier) + (field_declaration_list)) + (struct_item + (type_identifier) + (field_declaration_list + (field_declaration + (visibility_modifier) + (field_identifier) + (type_identifier)) + (field_declaration + (visibility_modifier) + (field_identifier) + (primitive_type)))) + (struct_item + (type_identifier) + (field_declaration_list + (field_declaration + (field_identifier) + (primitive_type)) + (attribute_item + (attr_item + (identifier))) + (field_declaration + (field_identifier) + (primitive_type)))) + (struct_item + (type_identifier) + (ordered_field_declaration_list + (visibility_modifier) + (primitive_type) + (primitive_type) + (primitive_type))) + (struct_item + (type_identifier) + (ordered_field_declaration_list + (primitive_type)))) + +================================================================================ Unions -============================================ +================================================================================ pub union in6_addr__bindgen_ty_1 { pub __u6_addr8: [__uint8_t; 16usize], @@ -415,25 +502,47 @@ pub union in6_addr__bindgen_ty_1 { _bindgen_union_align: [u32; 4usize], } ---- +-------------------------------------------------------------------------------- (source_file - (union_item (visibility_modifier) (type_identifier) (field_declaration_list - (field_declaration (visibility_modifier) (field_identifier) (array_type (type_identifier) (integer_literal))) - (field_declaration (visibility_modifier) (field_identifier) (array_type (type_identifier) (integer_literal))) - (field_declaration (visibility_modifier) (field_identifier) (array_type (type_identifier) (integer_literal))) - (field_declaration (field_identifier) (array_type (primitive_type) (integer_literal)))))) + (union_item + (visibility_modifier) + (type_identifier) + (field_declaration_list + (field_declaration + (visibility_modifier) + (field_identifier) + (array_type + (type_identifier) + (integer_literal))) + (field_declaration + (visibility_modifier) + (field_identifier) + (array_type + (type_identifier) + (integer_literal))) + (field_declaration + (visibility_modifier) + (field_identifier) + (array_type + (type_identifier) + (integer_literal))) + (field_declaration + (field_identifier) + (array_type + (primitive_type) + (integer_literal)))))) -============================================ +================================================================================ Generic structs -============================================ +================================================================================ struct A {} struct C<'a, 'b> {} struct C<'a,> {} struct D {} ---- +-------------------------------------------------------------------------------- (source_file (struct_item @@ -463,9 +572,9 @@ struct D {} type: (primitive_type))) body: (field_declaration_list))) -============================================ +================================================================================ Enums -============================================ +================================================================================ pub enum Option { None, @@ -484,66 +593,90 @@ pub enum Node { } } ---- +-------------------------------------------------------------------------------- (source_file (enum_item (visibility_modifier) (type_identifier) - (type_parameters (type_identifier)) + (type_parameters + (type_identifier)) (enum_variant_list - (enum_variant (identifier)) - (enum_variant (identifier) (ordered_field_declaration_list (type_identifier))))) + (enum_variant + (identifier)) + (enum_variant + (identifier) + (ordered_field_declaration_list + (type_identifier))))) (enum_item (visibility_modifier) (type_identifier) - (type_parameters (constrained_type_parameter - (type_identifier) - (trait_bounds (type_identifier)))) + (type_parameters + (constrained_type_parameter + (type_identifier) + (trait_bounds + (type_identifier)))) (enum_variant_list (enum_variant (identifier) (field_declaration_list - (field_declaration (field_identifier) (generic_type - (type_identifier) - (type_arguments - (generic_type (type_identifier) (type_arguments (type_identifier)))))) - (field_declaration (field_identifier) (primitive_type)))) - (attribute_item (meta_item (identifier))) - (attribute_item (meta_item (identifier))) + (field_declaration + (field_identifier) + (generic_type + (type_identifier) + (type_arguments + (generic_type + (type_identifier) + (type_arguments + (type_identifier)))))) + (field_declaration + (field_identifier) + (primitive_type)))) + (attribute_item + (attr_item + (identifier))) + (attribute_item + (attr_item + (identifier))) (enum_variant (identifier) (field_declaration_list - (field_declaration (field_identifier) (type_identifier))))))) + (field_declaration + (field_identifier) + (type_identifier))))))) -============================================ +================================================================================ Enums with values specified -============================================ +================================================================================ pub enum c_style_enum { val1 = 1, val2 = 2 } ---- +-------------------------------------------------------------------------------- (source_file (enum_item (visibility_modifier) (type_identifier) (enum_variant_list - (enum_variant (identifier) (integer_literal)) - (enum_variant (identifier) (integer_literal))))) + (enum_variant + (identifier) + (integer_literal)) + (enum_variant + (identifier) + (integer_literal))))) -============================================ +================================================================================ Generic functions -============================================ +================================================================================ pub fn splice>(&mut self, old_range: Range, new_text: T) { } pub fn uninit_array() -> [Self; LEN] {} ---- +-------------------------------------------------------------------------------- (source_file (function_item @@ -584,63 +717,77 @@ pub fn uninit_array() -> [Self; LEN] {} length: (identifier)) body: (block))) -============================================ +================================================================================ Functions with mutable parameters -============================================ +================================================================================ fn foo(mut x : u32) { } ---- +-------------------------------------------------------------------------------- (source_file (function_item (identifier) - (parameters (parameter (mutable_specifier) (identifier) (primitive_type))) + (parameters + (parameter + (mutable_specifier) + (identifier) + (primitive_type))) (block))) -============================================ +================================================================================ Functions with destructured parameters -============================================ +================================================================================ fn f1([x, y]: [u32; 2]) {} fn f2(&x: &Y) {} fn f3((x, y): (T, U)) {} ---- +-------------------------------------------------------------------------------- (source_file (function_item (identifier) (parameters (parameter - (slice_pattern (identifier) (identifier)) - (array_type (primitive_type) (integer_literal)))) + (slice_pattern + (identifier) + (identifier)) + (array_type + (primitive_type) + (integer_literal)))) (block)) (function_item (identifier) (parameters (parameter - (reference_pattern (identifier)) - (reference_type (type_identifier)))) + (reference_pattern + (identifier)) + (reference_type + (type_identifier)))) (block)) (function_item (identifier) (parameters (parameter - (tuple_pattern (identifier) (identifier)) - (tuple_type (type_identifier) (type_identifier)))) + (tuple_pattern + (identifier) + (identifier)) + (tuple_type + (type_identifier) + (type_identifier)))) (block))) -============================================ +================================================================================ Functions with custom types for self -============================================ +================================================================================ trait Callback { fn call(self: Box); } ---- +-------------------------------------------------------------------------------- (source_file (trait_item @@ -651,11 +798,14 @@ trait Callback { (parameters (parameter (self) - (generic_type (type_identifier) (type_arguments (type_identifier))))))))) + (generic_type + (type_identifier) + (type_arguments + (type_identifier))))))))) -============================================ +================================================================================ Constant items -============================================ +================================================================================ const N: i32 = 5; @@ -663,22 +813,28 @@ trait Foo { const X: u8; } ---- +-------------------------------------------------------------------------------- (source_file - (const_item (identifier) (primitive_type) (integer_literal)) + (const_item + (identifier) + (primitive_type) + (integer_literal)) (trait_item (type_identifier) - (declaration_list (const_item (identifier) (primitive_type))))) + (declaration_list + (const_item + (identifier) + (primitive_type))))) -============================================ +================================================================================ Static items -============================================ +================================================================================ static N: i32 = 5; static mut __progname: *mut ::c_char; ---- +-------------------------------------------------------------------------------- (source_file (static_item @@ -688,49 +844,67 @@ static mut __progname: *mut ::c_char; (static_item (mutable_specifier) (identifier) - (pointer_type (mutable_specifier) (scoped_type_identifier (type_identifier))))) + (pointer_type + (mutable_specifier) + (scoped_type_identifier + (type_identifier))))) -============================================ +================================================================================ Static 'ref' items using lazy_static -============================================ +================================================================================ static ref ONE: usize = 0; ---- +-------------------------------------------------------------------------------- (source_file - (static_item (identifier) (primitive_type) (integer_literal))) + (static_item + (identifier) + (primitive_type) + (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))))) + (type_item + (type_identifier) + (primitive_type)) + (type_item + (type_identifier) + (type_parameters + (type_identifier)) + (generic_type + (type_identifier) + (type_arguments + (type_identifier))))) -============================================ +================================================================================ Empty statements -============================================ +================================================================================ fn main() { ; } ---- +-------------------------------------------------------------------------------- (source_file - (function_item (identifier) (parameters) (block - (empty_statement)))) + (function_item + (identifier) + (parameters) + (block + (empty_statement)))) -============================================ +================================================================================ Attributes -============================================ +================================================================================ #[test] fn test_foo() {} @@ -748,73 +922,244 @@ mod macos_only {} #[clippy::cyclomatic_complexity = "100"] ---- +-------------------------------------------------------------------------------- (source_file - (attribute_item (meta_item (identifier))) + (attribute_item + (meta_item + (identifier))) (function_item name: (identifier) parameters: (parameters) body: (block)) - - (attribute_item (meta_item - (identifier) - arguments: (meta_arguments (meta_item (identifier))))) - (struct_item name: (type_identifier)) - - (attribute_item (meta_item - (identifier) - arguments: (meta_arguments - (meta_item (identifier)) - (meta_item (identifier))))) - (struct_item name: (type_identifier)) - - (attribute_item (meta_item - (identifier) - arguments: (meta_arguments - (meta_item - (identifier) - value: (string_literal))))) + (attribute_item + (meta_item + (identifier) + arguments: (meta_arguments + (meta_item + (identifier))))) + (struct_item + name: (type_identifier)) + (attribute_item + (meta_item + (identifier) + arguments: (meta_arguments + (meta_item + (identifier)) + (meta_item + (identifier))))) + (struct_item + name: (type_identifier)) + (attribute_item + (meta_item + (identifier) + arguments: (meta_arguments + (meta_item + (identifier) + value: (string_literal))))) (mod_item name: (identifier) body: (declaration_list)) - - (inner_attribute_item (meta_item - (identifier) - arguments: (meta_arguments (meta_item + (inner_attribute_item + (meta_item + (identifier) + arguments: (meta_arguments + (meta_item + (scoped_identifier + path: (identifier) + name: (identifier)))))) + (attribute_item + (attr_item (scoped_identifier path: (identifier) - name: (identifier)))))) - - (attribute_item (meta_item - (scoped_identifier - path: (identifier) - name: (identifier)) - value: (string_literal)))) + name: (identifier)) + value: (string_literal)))) -============================================ +================================================================================ Inner attributes -============================================ +================================================================================ mod macos_only { #![cfg(target_os = "macos")] } ---- +-------------------------------------------------------------------------------- (source_file (mod_item name: (identifier) body: (declaration_list - (inner_attribute_item (meta_item - (identifier) - arguments: (meta_arguments (meta_item + (inner_attribute_item + (meta_item (identifier) - value: (string_literal)))))))) + arguments: (meta_arguments + (meta_item + (identifier) + value: (string_literal)))))))) + +================================================================================ +Key-Value Attribute Expressions +================================================================================ + +#[doc = include_str!("foo-doc.md")] +fn foo() {} + +#[namespace = foo::bar] +fn baz() {} + +-------------------------------------------------------------------------------- + +(source_file + (attribute_item + (meta_item + (identifier) + (macro_invocation + (identifier) + (token_tree + (string_literal))))) + (function_item + (identifier) + (parameters) + (block)) + (attribute_item + (attr_item + (identifier) + (scoped_identifier + (identifier) + (identifier)))) + (function_item + (identifier) + (parameters) + (block))) + +================================================================================ +Attribute macros +================================================================================ + +foo(#[attr(=> arbitrary tokens <=)] x, y); -============================================ +foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); + +-------------------------------------------------------------------------------- + +(source_file + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (attribute_item + (attr_item + (identifier) + arguments: (token_tree + (non_special_punctuation) + (identifier) + (identifier) + (non_special_punctuation)))) + (identifier) + (identifier)))) + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (attribute_item + (attr_item + (identifier) + arguments: (token_tree + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (non_special_punctuation) + (non_special_punctuation) + (non_special_punctuation) + (token_tree) + (non_special_punctuation) + (token_tree) + (non_special_punctuation) + (non_special_punctuation)))) + (identifier))))) + +================================================================================ +Derive macro helper attributes +================================================================================ + +// Example from https://github.com/dtolnay/thiserror/blob/21c26903e29cb92ba1a7ff11e82ae2001646b60d/README.md + +use thiserror::Error; + +#[derive(Error, Debug)] +pub enum Error { + #[error("first letter must be lowercase but was {:?}", first_char(.0))] + WrongCase(String), + #[error("invalid index {idx}, expected at least {} and at most {}", .limits.lo, .limits.hi)] + OutOfBounds { idx: usize, limits: Limits }, +} + +-------------------------------------------------------------------------------- + +(source_file + (line_comment) + (use_declaration + (scoped_identifier + (identifier) + (identifier))) + (attribute_item + (meta_item + (identifier) + (meta_arguments + (meta_item + (identifier)) + (meta_item + (identifier))))) + (enum_item + (visibility_modifier) + (type_identifier) + (enum_variant_list + (attribute_item + (attr_item + (identifier) + (token_tree + (string_literal) + (non_special_punctuation) + (identifier) + (token_tree + (non_special_punctuation) + (integer_literal))))) + (enum_variant + (identifier) + (ordered_field_declaration_list + (type_identifier))) + (attribute_item + (attr_item + (identifier) + (token_tree + (string_literal) + (non_special_punctuation) + (non_special_punctuation) + (identifier) + (non_special_punctuation) + (identifier) + (non_special_punctuation) + (non_special_punctuation) + (identifier) + (non_special_punctuation) + (identifier)))) + (enum_variant + (identifier) + (field_declaration_list + (field_declaration + (field_identifier) + (primitive_type)) + (field_declaration + (field_identifier) + (type_identifier))))))) + +================================================================================ Attributes and Expressions -============================================ +================================================================================ fn foo() { bar(x, @@ -824,41 +1169,48 @@ fn foo() { let t = (#[hello] 2, 7, 8); } ---- +-------------------------------------------------------------------------------- (source_file (function_item name: (identifier) parameters: (parameters) body: (block - (call_expression - function: (identifier) - arguments: (arguments - (identifier) - (attribute_item (meta_item - (identifier) - arguments: (meta_arguments (meta_item + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (identifier) + (attribute_item + (meta_item (identifier) - value: (string_literal))))) - (identifier))) + arguments: (meta_arguments + (meta_item + (identifier) + value: (string_literal))))) + (identifier)))) (let_declaration pattern: (identifier) value: (array_expression - (attribute_item (meta_item (identifier))) + (attribute_item + (attr_item + (identifier))) (integer_literal) (integer_literal) (integer_literal))) (let_declaration pattern: (identifier) value: (tuple_expression - (attribute_item (meta_item (identifier))) + (attribute_item + (attr_item + (identifier))) (integer_literal) (integer_literal) (integer_literal)))))) -=========================================== +================================================================================ Inherent Impls -=========================================== +================================================================================ impl Person { const leg_count : u32 = 2; @@ -871,7 +1223,7 @@ impl Person { impl Machine<{State::Init}> {} ---- +-------------------------------------------------------------------------------- (source_file (impl_item @@ -919,9 +1271,9 @@ impl Machine<{State::Init}> {} name: (identifier))))) body: (declaration_list))) -=========================================== +================================================================================ Trait impls -=========================================== +================================================================================ impl<'a> iter::Iterator for Self::Iter<'a> { } @@ -930,11 +1282,13 @@ impl ConvertTo for i32 { fn convert(&self) -> i64 { *self as i64 } } ---- +-------------------------------------------------------------------------------- (source_file (impl_item - type_parameters: (type_parameters (lifetime (identifier))) + type_parameters: (type_parameters + (lifetime + (identifier))) trait: (scoped_type_identifier path: (identifier) name: (type_identifier)) @@ -942,37 +1296,81 @@ impl ConvertTo for i32 { type: (scoped_type_identifier path: (identifier) name: (type_identifier)) - type_arguments: (type_arguments (lifetime (identifier)))) + type_arguments: (type_arguments + (lifetime + (identifier)))) body: (declaration_list)) (impl_item trait: (generic_type type: (type_identifier) - type_arguments: (type_arguments (primitive_type))) + type_arguments: (type_arguments + (primitive_type))) type: (primitive_type) body: (declaration_list (function_item name: (identifier) - parameters: (parameters (self_parameter (self))) + parameters: (parameters + (self_parameter + (self))) return_type: (primitive_type) body: (block (type_cast_expression - value: (unary_expression (self)) + value: (unary_expression + (self)) type: (primitive_type))))))) -=========================================== +================================================================================ Unsafe impls -=========================================== +================================================================================ unsafe impl Foo { } ---- +-------------------------------------------------------------------------------- + +(source_file + (impl_item + (type_identifier) + (declaration_list))) + +================================================================================ +Trait impl signature +================================================================================ -(source_file (impl_item (type_identifier) (declaration_list))) +impl Debug for OccupiedError; +impl Display for OccupiedError; + +-------------------------------------------------------------------------------- + +(source_file + (impl_item + (type_parameters + (constrained_type_parameter + (type_identifier) + (trait_bounds + (type_identifier) + (type_identifier)))) + (type_identifier) + (generic_type + (type_identifier) + (type_arguments + (type_identifier)))) + (impl_item + (type_parameters + (constrained_type_parameter + (type_identifier) + (trait_bounds + (type_identifier) + (type_identifier)))) + (type_identifier) + (generic_type + (type_identifier) + (type_arguments + (type_identifier))))) -=========================================== +================================================================================ Impls with default functions -=========================================== +================================================================================ impl Foo { const default fn bar() -> i32 { @@ -981,24 +1379,29 @@ impl Foo { } } ---- +-------------------------------------------------------------------------------- (source_file - (impl_item (type_identifier) (declaration_list - (function_item - (function_modifiers) - (identifier) - (parameters) - (primitive_type) - (block - (line_comment) - (call_expression - (field_expression (identifier) (field_identifier)) - (arguments))))))) + (impl_item + (type_identifier) + (declaration_list + (function_item + (function_modifiers) + (identifier) + (parameters) + (primitive_type) + (block + (line_comment) + (expression_statement + (call_expression + (field_expression + (identifier) + (field_identifier)) + (arguments)))))))) -============================================ +================================================================================ Trait declarations -============================================ +================================================================================ pub trait Item: Clone + Eq + fmt::Debug { fn summarize(&self) -> Self::Summary; @@ -1006,7 +1409,7 @@ pub trait Item: Clone + Eq + fmt::Debug { unsafe trait Foo { } ---- +-------------------------------------------------------------------------------- (source_file (trait_item @@ -1015,44 +1418,63 @@ unsafe trait Foo { } (trait_bounds (type_identifier) (type_identifier) - (scoped_type_identifier (identifier) (type_identifier))) + (scoped_type_identifier + (identifier) + (type_identifier))) (declaration_list (function_signature_item (identifier) - (parameters (self_parameter (self))) - (scoped_type_identifier (identifier) (type_identifier))))) - (trait_item (type_identifier) (declaration_list))) + (parameters + (self_parameter + (self))) + (scoped_type_identifier + (identifier) + (type_identifier))))) + (trait_item + (type_identifier) + (declaration_list))) -============================================ +================================================================================ Trait declarations with optional type parameters -============================================ +================================================================================ trait Add { type Output; fn add(self, rhs: RHS) -> Self::Output; } ---- +-------------------------------------------------------------------------------- (source_file (trait_item (type_identifier) - (type_parameters (optional_type_parameter (type_identifier) (type_identifier))) + (type_parameters + (optional_type_parameter + (type_identifier) + (type_identifier))) (declaration_list - (associated_type (type_identifier)) + (associated_type + (type_identifier)) (function_signature_item (identifier) - (parameters (self_parameter (self)) (parameter (identifier) (type_identifier))) - (scoped_type_identifier (identifier) (type_identifier)))))) + (parameters + (self_parameter + (self)) + (parameter + (identifier) + (type_identifier))) + (scoped_type_identifier + (identifier) + (type_identifier)))))) -============================================ +================================================================================ Unsized types in trait bounds -============================================ +================================================================================ trait Foo { } ---- +-------------------------------------------------------------------------------- (source_file (trait_item @@ -1060,12 +1482,14 @@ trait Foo { (type_parameters (constrained_type_parameter (type_identifier) - (trait_bounds (removed_trait_bound (type_identifier))))) + (trait_bounds + (removed_trait_bound + (type_identifier))))) (declaration_list))) -============================================ +================================================================================ Macro invocations inside trait declarations -============================================ +================================================================================ pub trait A: B + C + D { @@ -1073,57 +1497,176 @@ pub trait A: B + C + D { fn f(&self); } ---- +-------------------------------------------------------------------------------- (source_file (trait_item (visibility_modifier) (type_identifier) - (trait_bounds (type_identifier) (type_identifier) (type_identifier)) + (trait_bounds + (type_identifier) + (type_identifier) + (type_identifier)) (declaration_list - (macro_invocation (identifier) (token_tree)) - (function_signature_item (identifier) (parameters (self_parameter (self))))))) + (macro_invocation + (identifier) + (token_tree)) + (function_signature_item + (identifier) + (parameters + (self_parameter + (self))))))) -============================================ +================================================================================ Associated Types -============================================ +================================================================================ pub trait Graph { type N: fmt::Display; type E; } ---- +-------------------------------------------------------------------------------- (source_file (trait_item (visibility_modifier) (type_identifier) (declaration_list - (associated_type (type_identifier) (trait_bounds (scoped_type_identifier (identifier) (type_identifier)))) - (associated_type (type_identifier))))) + (associated_type + (type_identifier) + (trait_bounds + (scoped_type_identifier + (identifier) + (type_identifier)))) + (associated_type + (type_identifier))))) + +================================================================================ +Generic Associated Types +================================================================================ + +pub trait Database { + type F<'a, D>: Future + 'a; +} + +impl Database for Foo { + type F<'a, D> = DatabaseFuture<'a, D>; +} + +fn use_database1 = F>>() {} -===================== +fn use_database2() +where + D: Database = F>, +{} + +-------------------------------------------------------------------------------- + +(source_file + (trait_item + (visibility_modifier) + (type_identifier) + (declaration_list + (associated_type + (type_identifier) + (type_parameters + (lifetime + (identifier)) + (type_identifier)) + (trait_bounds + (generic_type + (type_identifier) + (type_arguments + (type_binding + (type_identifier) + (type_identifier)))) + (lifetime + (identifier)))))) + (impl_item + (type_identifier) + (type_identifier) + (declaration_list + (type_item + (type_identifier) + (type_parameters + (lifetime + (identifier)) + (type_identifier)) + (generic_type + (type_identifier) + (type_arguments + (lifetime + (identifier)) + (type_identifier)))))) + (function_item + (identifier) + (type_parameters + (constrained_type_parameter + (type_identifier) + (trait_bounds + (generic_type + (type_identifier) + (type_arguments + (type_binding + (type_identifier) + (type_arguments + (lifetime + (identifier)) + (type_identifier)) + (type_identifier))))))) + (parameters) + (block)) + (function_item + (identifier) + (type_parameters + (type_identifier)) + (parameters) + (where_clause + (where_predicate + (type_identifier) + (trait_bounds + (generic_type + (type_identifier) + (type_arguments + (type_binding + (type_identifier) + (type_arguments + (lifetime + (identifier)) + (type_identifier)) + (type_identifier))))))) + (block))) + +================================================================================ Higher-ranked types -===================== +================================================================================ trait T: for<'a> AddAssign<&'a usize> { } ---- +-------------------------------------------------------------------------------- (source_file (trait_item (type_identifier) (trait_bounds (higher_ranked_trait_bound - (type_parameters (lifetime (identifier))) - (generic_type (type_identifier) (type_arguments (reference_type (lifetime (identifier)) (primitive_type)))))) + (type_parameters + (lifetime + (identifier))) + (generic_type + (type_identifier) + (type_arguments + (reference_type + (lifetime + (identifier)) + (primitive_type)))))) (declaration_list))) -===================== +================================================================================ Visibility modifiers -===================== +================================================================================ pub fn a() {} pub(super) fn b() {} @@ -1131,36 +1674,70 @@ pub(self) fn c() {} pub(crate) fn c() {} pub(in crate::d) fn e() {} ---- +-------------------------------------------------------------------------------- (source_file - (function_item (visibility_modifier) (identifier) (parameters) (block)) - (function_item (visibility_modifier (super)) (identifier) (parameters) (block)) - (function_item (visibility_modifier (self)) (identifier) (parameters) (block)) - (function_item (visibility_modifier (crate)) (identifier) (parameters) (block)) (function_item - (visibility_modifier (scoped_identifier (crate) (identifier))) + (visibility_modifier) + (identifier) + (parameters) + (block)) + (function_item + (visibility_modifier + (super)) + (identifier) + (parameters) + (block)) + (function_item + (visibility_modifier + (self)) + (identifier) + (parameters) + (block)) + (function_item + (visibility_modifier + (crate)) + (identifier) + (parameters) + (block)) + (function_item + (visibility_modifier + (scoped_identifier + (crate) + (identifier))) (identifier) (parameters) (block))) -======================================================== +================================================================================ Function parameter names that match built-in type names -======================================================== +================================================================================ fn foo(str: *const c_char) {} fn bar(bool: bool) {} ---- +-------------------------------------------------------------------------------- (source_file - (function_item (identifier) (parameters (parameter (identifier) (pointer_type (type_identifier)))) (block)) - (function_item (identifier) (parameters (parameter (identifier) (primitive_type))) (block))) - + (function_item + (identifier) + (parameters + (parameter + (identifier) + (pointer_type + (type_identifier)))) + (block)) + (function_item + (identifier) + (parameters + (parameter + (identifier) + (primitive_type))) + (block))) -===================== +================================================================================ Where clauses -===================== +================================================================================ fn walk(&self, it: &mut F) -> bool where F: FnMut(&Pat) -> bool @@ -1198,14 +1775,16 @@ fn foo() where A: B + As, f64: As {} impl Default for B where *mut A: C + D {} ---- +-------------------------------------------------------------------------------- (source_file (function_item name: (identifier) - type_parameters: (type_parameters (type_identifier)) + type_parameters: (type_parameters + (type_identifier)) parameters: (parameters - (self_parameter (self)) + (self_parameter + (self)) (parameter pattern: (identifier) type: (reference_type @@ -1218,105 +1797,137 @@ impl Default for B where *mut A: C + D {} bounds: (trait_bounds (function_type trait: (type_identifier) - parameters: (parameters (reference_type type: (type_identifier))) + parameters: (parameters + (reference_type + type: (type_identifier))) return_type: (primitive_type))))) - body: (block (return_expression (boolean_literal)))) - + body: (block + (return_expression + (boolean_literal)))) (impl_item type_parameters: (type_parameters - (lifetime (identifier)) + (lifetime + (identifier)) (constrained_type_parameter left: (type_identifier) bounds: (trait_bounds - (lifetime (identifier)) + (lifetime + (identifier)) (type_identifier)))) trait: (type_identifier) type: (generic_type type: (type_identifier) type_arguments: (type_arguments - (lifetime (identifier)) + (lifetime + (identifier)) (type_identifier))) - (where_clause (where_predicate - left: (type_identifier) - bounds: (trait_bounds (lifetime (identifier))))) + (where_clause + (where_predicate + left: (type_identifier) + bounds: (trait_bounds + (lifetime + (identifier))))) body: (declaration_list)) - (impl_item - type_parameters: (type_parameters (type_identifier)) + type_parameters: (type_parameters + (type_identifier)) trait: (type_identifier) type: (generic_type type: (type_identifier) - type_arguments: (type_arguments (type_identifier))) + type_arguments: (type_arguments + (type_identifier))) (where_clause (where_predicate left: (generic_type type: (type_identifier) - type_arguments: (type_arguments (type_identifier))) - bounds: (trait_bounds (type_identifier))) + type_arguments: (type_arguments + (type_identifier))) + bounds: (trait_bounds + (type_identifier))) (where_predicate left: (type_identifier) - bounds: (trait_bounds (lifetime (identifier)))) + bounds: (trait_bounds + (lifetime + (identifier)))) (where_predicate - left: (lifetime (identifier)) - bounds: (trait_bounds (lifetime (identifier))))) + left: (lifetime + (identifier)) + bounds: (trait_bounds + (lifetime + (identifier))))) body: (declaration_list)) - (impl_item type_parameters: (type_parameters - (lifetime (identifier)) + (lifetime + (identifier)) (type_identifier)) type: (type_identifier) (where_clause (where_predicate left: (reference_type - (lifetime (identifier)) + (lifetime + (identifier)) type: (type_identifier)) - bounds: (trait_bounds (type_identifier)))) + bounds: (trait_bounds + (type_identifier)))) body: (declaration_list)) - (impl_item - type_parameters: (type_parameters (type_identifier)) + type_parameters: (type_parameters + (type_identifier)) trait: (type_identifier) type: (generic_type type: (type_identifier) - type_arguments: (type_arguments (type_identifier))) + type_arguments: (type_arguments + (type_identifier))) (where_clause (where_predicate - left: (tuple_type (type_identifier) (type_identifier) (type_identifier)) - bounds: (trait_bounds (type_identifier)))) + left: (tuple_type + (type_identifier) + (type_identifier) + (type_identifier)) + bounds: (trait_bounds + (type_identifier)))) body: (declaration_list)) - (impl_item - type_parameters: (type_parameters (type_identifier)) + type_parameters: (type_parameters + (type_identifier)) trait: (type_identifier) type: (generic_type type: (type_identifier) - type_arguments: (type_arguments (type_identifier))) + type_arguments: (type_arguments + (type_identifier))) (where_clause (where_predicate left: (higher_ranked_trait_bound - type_parameters: (type_parameters (lifetime (identifier))) + type_parameters: (type_parameters + (lifetime + (identifier))) type: (generic_type type: (type_identifier) - type_arguments: (type_arguments (type_identifier)))) + type_arguments: (type_arguments + (type_identifier)))) bounds: (trait_bounds (generic_type type: (type_identifier) - type_arguments: (type_arguments (lifetime (identifier))))))) + type_arguments: (type_arguments + (lifetime + (identifier))))))) body: (declaration_list)) - (trait_item (visibility_modifier) name: (type_identifier) - type_parameters: (type_parameters (type_identifier)) - (where_clause (where_predicate - left: (type_identifier) - bounds: (trait_bounds (type_identifier)))) + type_parameters: (type_parameters + (type_identifier)) + (where_clause + (where_predicate + left: (type_identifier) + bounds: (trait_bounds + (type_identifier)))) body: (declaration_list)) - (function_item name: (identifier) - type_parameters: (type_parameters (type_identifier)) + type_parameters: (type_parameters + (type_identifier)) parameters: (parameters) (where_clause (where_predicate @@ -1325,29 +1936,37 @@ impl Default for B where *mut A: C + D {} (type_identifier) (generic_type type: (type_identifier) - type_arguments: (type_arguments (primitive_type))))) + type_arguments: (type_arguments + (primitive_type))))) (where_predicate left: (primitive_type) - bounds: (trait_bounds (generic_type - type: (type_identifier) - type_arguments: (type_arguments (type_identifier)))))) + bounds: (trait_bounds + (generic_type + type: (type_identifier) + type_arguments: (type_arguments + (type_identifier)))))) body: (block)) - (impl_item - type_parameters: (type_parameters (type_identifier)) + type_parameters: (type_parameters + (type_identifier)) trait: (type_identifier) type: (generic_type type: (type_identifier) - type_arguments: (type_arguments (type_identifier))) + type_arguments: (type_arguments + (type_identifier))) (where_clause (where_predicate - left: (pointer_type (mutable_specifier) type: (type_identifier)) - bounds: (trait_bounds (type_identifier) (type_identifier)))) + left: (pointer_type + (mutable_specifier) + type: (type_identifier)) + bounds: (trait_bounds + (type_identifier) + (type_identifier)))) body: (declaration_list))) -=================================== +================================================================================ External Modules -=================================== +================================================================================ pub extern { pub fn napi_module_register(mod_: *mut napi_module); @@ -1355,50 +1974,88 @@ pub extern { extern "C" {} ---- +-------------------------------------------------------------------------------- (source_file - (foreign_mod_item (visibility_modifier) (extern_modifier) (declaration_list - (function_signature_item (visibility_modifier) (identifier) (parameters (parameter (identifier) (pointer_type (mutable_specifier) (type_identifier))))))) - (foreign_mod_item (extern_modifier (string_literal)) (declaration_list))) + (foreign_mod_item + (visibility_modifier) + (extern_modifier) + (declaration_list + (function_signature_item + (visibility_modifier) + (identifier) + (parameters + (parameter + (identifier) + (pointer_type + (mutable_specifier) + (type_identifier))))))) + (foreign_mod_item + (extern_modifier + (string_literal)) + (declaration_list))) -=================================== +================================================================================ Crate visibility -=================================== +================================================================================ crate mod foo; crate struct Foo(crate crate::Bar); crate fn foo() { } crate const X: u32 = 0; ---- +-------------------------------------------------------------------------------- (source_file (mod_item - (visibility_modifier (crate)) (identifier)) + (visibility_modifier + (crate)) + (identifier)) (struct_item - (visibility_modifier (crate)) + (visibility_modifier + (crate)) (type_identifier) - (ordered_field_declaration_list (visibility_modifier (crate)) (scoped_type_identifier (crate) (type_identifier)))) + (ordered_field_declaration_list + (visibility_modifier + (crate)) + (scoped_type_identifier + (crate) + (type_identifier)))) (function_item - (visibility_modifier (crate)) (identifier) (parameters) (block)) + (visibility_modifier + (crate)) + (identifier) + (parameters) + (block)) (const_item - (visibility_modifier (crate)) (identifier) (primitive_type) (integer_literal))) + (visibility_modifier + (crate)) + (identifier) + (primitive_type) + (integer_literal))) -=================================== +================================================================================ Reserved keywords in path -=================================== +================================================================================ struct A { a: default::B, b: union::C, } ---- +-------------------------------------------------------------------------------- (source_file (struct_item (type_identifier) - (field_declaration_list - (field_declaration (field_identifier) (scoped_type_identifier (identifier) (type_identifier))) - (field_declaration (field_identifier) (scoped_type_identifier (identifier) (type_identifier)))))) + (field_declaration_list + (field_declaration + (field_identifier) + (scoped_type_identifier + (identifier) + (type_identifier))) + (field_declaration + (field_identifier) + (scoped_type_identifier + (identifier) + (type_identifier)))))) diff --git a/vendor/tree-sitter-rust/corpus/expressions.txt b/vendor/tree-sitter-rust/corpus/expressions.txt index e5f0c15bb..f1d4666f4 100644 --- a/vendor/tree-sitter-rust/corpus/expressions.txt +++ b/vendor/tree-sitter-rust/corpus/expressions.txt @@ -1,79 +1,105 @@ -============================================ +================================================================================ Identifiers -============================================ +================================================================================ fn main() { abc; } ---- +-------------------------------------------------------------------------------- (source_file - (function_item (identifier) (parameters) (block - (identifier)))) + (function_item + (identifier) + (parameters) + (block + (expression_statement + (identifier))))) -============================================ +================================================================================ Raw identifiers -============================================ +================================================================================ fn main() { (r#abc as r#Def).r#ghi; } ---- +-------------------------------------------------------------------------------- (source_file (function_item (identifier) (parameters) (block - (field_expression - (parenthesized_expression - (type_cast_expression (identifier) (type_identifier))) - (field_identifier))))) - -============================================ + (expression_statement + (field_expression + (parenthesized_expression + (type_cast_expression + (identifier) + (type_identifier))) + (field_identifier)))))) + +================================================================================ Unary operator expressions -============================================ +================================================================================ -num; !bits; *boxed_thing; ---- +-------------------------------------------------------------------------------- (source_file - (unary_expression (identifier)) - (unary_expression (identifier)) - (unary_expression (identifier))) - -============================================ + (expression_statement + (unary_expression + (identifier))) + (expression_statement + (unary_expression + (identifier))) + (expression_statement + (unary_expression + (identifier)))) + +================================================================================ Reference expressions -============================================ +================================================================================ &a; &mut self.name; ---- +-------------------------------------------------------------------------------- (source_file - (reference_expression (identifier)) - (reference_expression (mutable_specifier) (field_expression (self) (field_identifier)))) + (expression_statement + (reference_expression + (identifier))) + (expression_statement + (reference_expression + (mutable_specifier) + (field_expression + (self) + (field_identifier))))) -============================================ +================================================================================ Try expressions -============================================ +================================================================================ a.unwrap()?; ---- +-------------------------------------------------------------------------------- (source_file - (try_expression (call_expression (field_expression (identifier) (field_identifier)) (arguments)))) - -============================================ + (expression_statement + (try_expression + (call_expression + (field_expression + (identifier) + (field_identifier)) + (arguments))))) + +================================================================================ Binary operator expressions -============================================ +================================================================================ a * b; a / b; @@ -86,38 +112,75 @@ a == b; a && b; a || b; ---- +-------------------------------------------------------------------------------- (source_file - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier))) - -============================================ + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier)))) + +================================================================================ Grouped expressions -============================================ +================================================================================ (0); (2 * (3 + 4)); ---- +-------------------------------------------------------------------------------- (source_file - (parenthesized_expression (integer_literal)) - (parenthesized_expression (binary_expression - (integer_literal) - (parenthesized_expression (binary_expression (integer_literal) (integer_literal)))))) + (expression_statement + (parenthesized_expression + (integer_literal))) + (expression_statement + (parenthesized_expression + (binary_expression + (integer_literal) + (parenthesized_expression + (binary_expression + (integer_literal) + (integer_literal))))))) -============================================ +================================================================================ Range expressions -============================================ +================================================================================ 1..2; 3..; @@ -128,70 +191,109 @@ a..b; 1..(1); (1)..1; (1)..(1); +1..{1}; +for i in 1.. { +} ---- - -(source_file - (range_expression (integer_literal) (integer_literal)) - (range_expression (integer_literal)) - (range_expression (integer_literal)) - (range_expression) - (range_expression (integer_literal) (identifier)) - (range_expression (identifier) (identifier)) - (range_expression - (integer_literal) - (parenthesized_expression (integer_literal))) - (range_expression - (parenthesized_expression (integer_literal)) - (integer_literal)) - (range_expression - (parenthesized_expression (integer_literal)) - (parenthesized_expression (integer_literal)))) - -============================================ +-------------------------------------------------------------------------------- + +(source_file + (expression_statement + (range_expression + (integer_literal) + (integer_literal))) + (expression_statement + (range_expression + (integer_literal))) + (expression_statement + (range_expression + (integer_literal))) + (expression_statement + (range_expression)) + (expression_statement + (range_expression + (integer_literal) + (identifier))) + (expression_statement + (range_expression + (identifier) + (identifier))) + (expression_statement + (range_expression + (integer_literal) + (parenthesized_expression + (integer_literal)))) + (expression_statement + (range_expression + (parenthesized_expression + (integer_literal)) + (integer_literal))) + (expression_statement + (range_expression + (parenthesized_expression + (integer_literal)) + (parenthesized_expression + (integer_literal)))) + (expression_statement + (range_expression + (integer_literal) + (block + (integer_literal)))) + (expression_statement + (for_expression + (identifier) + (range_expression + (integer_literal)) + (block)))) + +================================================================================ Assignment expressions -============================================ +================================================================================ x = y; ---- +-------------------------------------------------------------------------------- (source_file - (assignment_expression - left: (identifier) - right: (identifier))) + (expression_statement + (assignment_expression + left: (identifier) + right: (identifier)))) -============================================ +================================================================================ Compound assignment expressions -============================================ +================================================================================ x += 1; x += y; ---- +-------------------------------------------------------------------------------- (source_file - (compound_assignment_expr - left: (identifier) - right: (integer_literal)) - (compound_assignment_expr - left: (identifier) - right: (identifier))) - -============================================ + (expression_statement + (compound_assignment_expr + left: (identifier) + right: (integer_literal))) + (expression_statement + (compound_assignment_expr + left: (identifier) + right: (identifier)))) + +================================================================================ Type cast expressions -============================================ +================================================================================ 1000 as u8; let character = integer as char; let size: f64 = len(values) as f64; ---- +-------------------------------------------------------------------------------- (source_file - (type_cast_expression - value: (integer_literal) - type: (primitive_type)) + (expression_statement + (type_cast_expression + value: (integer_literal) + type: (primitive_type))) (let_declaration pattern: (identifier) value: (type_cast_expression @@ -203,12 +305,13 @@ let size: f64 = len(values) as f64; value: (type_cast_expression value: (call_expression function: (identifier) - arguments: (arguments (identifier))) + arguments: (arguments + (identifier))) type: (primitive_type)))) -============================================ +================================================================================ Call expressions -============================================ +================================================================================ foo(); add(1i32, 2i32); @@ -217,79 +320,107 @@ add( 2i32, ); ---- +-------------------------------------------------------------------------------- (source_file - (call_expression - function: (identifier) - arguments: (arguments)) - (call_expression - function: (identifier) - arguments: (arguments (integer_literal) (integer_literal))) - (call_expression - function: (identifier) - arguments: (arguments (integer_literal) (integer_literal)))) + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments))) + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (integer_literal) + (integer_literal)))) + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (integer_literal) + (integer_literal))))) -============================================ +================================================================================ Array expressions -============================================ +================================================================================ []; [1, 2, 3]; ["a", "b", "c"]; [0; 128]; ---- +-------------------------------------------------------------------------------- (source_file - (array_expression) - (array_expression - (integer_literal) - (integer_literal) - (integer_literal)) - (array_expression - (string_literal) - (string_literal) - (string_literal)) - (array_expression - (integer_literal) - length: (integer_literal))) + (expression_statement + (array_expression)) + (expression_statement + (array_expression + (integer_literal) + (integer_literal) + (integer_literal))) + (expression_statement + (array_expression + (string_literal) + (string_literal) + (string_literal))) + (expression_statement + (array_expression + (integer_literal) + length: (integer_literal)))) -============================================ +================================================================================ Tuple expressions -============================================ +================================================================================ (); (0,); let (x, y, z) = (1, 2, 3); ---- +-------------------------------------------------------------------------------- (source_file - (unit_expression) - (tuple_expression (integer_literal)) + (expression_statement + (unit_expression)) + (expression_statement + (tuple_expression + (integer_literal))) (let_declaration - (tuple_pattern (identifier) (identifier) (identifier)) - (tuple_expression (integer_literal) (integer_literal) (integer_literal)))) + (tuple_pattern + (identifier) + (identifier) + (identifier)) + (tuple_expression + (integer_literal) + (integer_literal) + (integer_literal)))) -============================================ +================================================================================ Struct expressions -============================================ +================================================================================ NothingInMe {}; Point {x: 10.0, y: 20.0}; let a = SomeStruct { field1, field2: expression, field3, }; let u = game::User {name: "Joe", age: 35, score: 100_000}; ---- +-------------------------------------------------------------------------------- (source_file - (struct_expression (type_identifier) - (field_initializer_list)) - (struct_expression (type_identifier) - (field_initializer_list - (field_initializer (field_identifier) (float_literal)) - (field_initializer (field_identifier) (float_literal)))) + (expression_statement + (struct_expression + (type_identifier) + (field_initializer_list))) + (expression_statement + (struct_expression + (type_identifier) + (field_initializer_list + (field_initializer + (field_identifier) + (float_literal)) + (field_initializer + (field_identifier) + (float_literal))))) (let_declaration (identifier) (struct_expression @@ -297,25 +428,35 @@ let u = game::User {name: "Joe", age: 35, score: 100_000}; (field_initializer_list (shorthand_field_initializer (identifier)) - (field_initializer (field_identifier) (identifier)) + (field_initializer + (field_identifier) + (identifier)) (shorthand_field_initializer (identifier))))) (let_declaration (identifier) (struct_expression - (scoped_type_identifier (identifier) (type_identifier)) + (scoped_type_identifier + (identifier) + (type_identifier)) (field_initializer_list - (field_initializer (field_identifier) (string_literal)) - (field_initializer (field_identifier) (integer_literal)) - (field_initializer (field_identifier) (integer_literal)))))) + (field_initializer + (field_identifier) + (string_literal)) + (field_initializer + (field_identifier) + (integer_literal)) + (field_initializer + (field_identifier) + (integer_literal)))))) -============================================ +================================================================================ Struct expressions with update initializers -============================================ +================================================================================ let u = User{name, ..current_user()}; ---- +-------------------------------------------------------------------------------- (source_file (let_declaration @@ -325,11 +466,14 @@ let u = User{name, ..current_user()}; (field_initializer_list (shorthand_field_initializer (identifier)) - (base_field_initializer (call_expression (identifier) (arguments))))))) + (base_field_initializer + (call_expression + (identifier) + (arguments))))))) -============================================ +================================================================================ If expressions -============================================ +================================================================================ fn main() { if n == 1 { @@ -340,67 +484,78 @@ fn main() { let y = if x == 5 { 10 } else { 15 }; ---- +-------------------------------------------------------------------------------- (source_file (function_item name: (identifier) parameters: (parameters) body: (block - (if_expression - condition: (binary_expression - left: (identifier) - right: (integer_literal)) - consequence: (block) - alternative: (else_clause - (if_expression - condition: (binary_expression - left: (identifier) - right: (integer_literal)) - consequence: (block) - alternative: (else_clause (block))))))) + (expression_statement + (if_expression + condition: (binary_expression + left: (identifier) + right: (integer_literal)) + consequence: (block) + alternative: (else_clause + (if_expression + condition: (binary_expression + left: (identifier) + right: (integer_literal)) + consequence: (block) + alternative: (else_clause + (block)))))))) (let_declaration pattern: (identifier) value: (if_expression condition: (binary_expression left: (identifier) right: (integer_literal)) - consequence: (block (integer_literal)) - alternative: (else_clause (block (integer_literal)))))) + consequence: (block + (integer_literal)) + alternative: (else_clause + (block + (integer_literal)))))) -============================================ +================================================================================ If let expressions -============================================ +================================================================================ if let ("Bacon", b) = dish { } ---- +-------------------------------------------------------------------------------- (source_file - (if_let_expression - (tuple_pattern (string_literal) (identifier)) - (identifier) - (block))) + (expression_statement + (if_let_expression + (tuple_pattern + (string_literal) + (identifier)) + (identifier) + (block)))) -============================================ +================================================================================ While let expressions -============================================ +================================================================================ while let ("Bacon", b) = dish { } ---- +-------------------------------------------------------------------------------- (source_file - (while_let_expression - (tuple_pattern (string_literal) (identifier)) - (identifier) - (block))) + (expression_statement + (while_let_expression + (tuple_pattern + (string_literal) + (identifier)) + (identifier) + (block)))) -============================================ +================================================================================ Match expressions -============================================ +================================================================================ match x { 1 => { "one" } @@ -424,47 +579,48 @@ let msg = match x { _ => "something else", }; ---- +-------------------------------------------------------------------------------- (source_file - (match_expression - value: (identifier) - body: (match_block - (match_arm - pattern: (match_pattern - (integer_literal)) - value: (block - (string_literal))) - (match_arm - pattern: (match_pattern - (integer_literal)) - value: (string_literal)) - (match_arm - pattern: (match_pattern - (negative_literal - (integer_literal))) - value: (integer_literal)) - (match_arm - pattern: (match_pattern - (negative_literal - (float_literal))) - value: (integer_literal)) - (match_arm - (attribute_item - (meta_item - (identifier))) - pattern: (match_pattern - (integer_literal)) - value: (string_literal)) - (match_arm - pattern: (macro_invocation - macro: (identifier) - (token_tree - (integer_literal))) - value: (string_literal)) - (match_arm - pattern: (match_pattern) - value: (string_literal)))) + (expression_statement + (match_expression + value: (identifier) + body: (match_block + (match_arm + pattern: (match_pattern + (integer_literal)) + value: (block + (string_literal))) + (match_arm + pattern: (match_pattern + (integer_literal)) + value: (string_literal)) + (match_arm + pattern: (match_pattern + (negative_literal + (integer_literal))) + value: (integer_literal)) + (match_arm + pattern: (match_pattern + (negative_literal + (float_literal))) + value: (integer_literal)) + (match_arm + (attribute_item + (attr_item + (identifier))) + pattern: (match_pattern + (integer_literal)) + value: (string_literal)) + (match_arm + pattern: (macro_invocation + macro: (identifier) + (token_tree + (integer_literal))) + value: (string_literal)) + (match_arm + pattern: (match_pattern) + value: (string_literal))))) (let_declaration pattern: (identifier) value: (match_expression @@ -499,27 +655,30 @@ let msg = match x { pattern: (match_pattern) value: (string_literal)))))) -============================================ +================================================================================ While expressions -============================================ +================================================================================ while !done { done = true; } ---- +-------------------------------------------------------------------------------- (source_file - (while_expression - condition: (unary_expression (identifier)) - body: (block - (assignment_expression - left: (identifier) - right: (boolean_literal))))) + (expression_statement + (while_expression + condition: (unary_expression + (identifier)) + body: (block + (expression_statement + (assignment_expression + left: (identifier) + right: (boolean_literal))))))) -============================================ +================================================================================ Loop expressions -============================================ +================================================================================ 'outer: loop { 'inner: loop { @@ -528,17 +687,30 @@ Loop expressions } } ---- +-------------------------------------------------------------------------------- (source_file - (loop_expression (loop_label (identifier)) (block - (loop_expression (loop_label (identifier)) (block - (break_expression (loop_label (identifier))) - (break_expression (boolean_literal))))))) - -============================================ + (expression_statement + (loop_expression + (loop_label + (identifier)) + (block + (expression_statement + (loop_expression + (loop_label + (identifier)) + (block + (expression_statement + (break_expression + (loop_label + (identifier)))) + (expression_statement + (break_expression + (boolean_literal)))))))))) + +================================================================================ For expressions -============================================ +================================================================================ for e in v { bar(e); @@ -555,153 +727,268 @@ for i in 0..256 { } } ---- +-------------------------------------------------------------------------------- (source_file - (for_expression (identifier) (identifier) (block - (call_expression (identifier) (arguments (identifier))))) - (for_expression (identifier) (range_expression (integer_literal) (integer_literal)) (block - (call_expression (identifier) (arguments (identifier))))) - (for_expression (loop_label (identifier)) (identifier) (range_expression (integer_literal) (integer_literal)) (block - (for_expression (loop_label (identifier)) (identifier) (range_expression (integer_literal) (integer_literal)) (block - (if_expression (binary_expression (binary_expression (identifier) (integer_literal)) (integer_literal)) (block - (continue_expression (loop_label (identifier))))) - (if_expression (binary_expression (binary_expression (identifier) (integer_literal)) (integer_literal)) (block - (continue_expression (loop_label (identifier)))))))))) - -============================================ + (expression_statement + (for_expression + (identifier) + (identifier) + (block + (expression_statement + (call_expression + (identifier) + (arguments + (identifier))))))) + (expression_statement + (for_expression + (identifier) + (range_expression + (integer_literal) + (integer_literal)) + (block + (expression_statement + (call_expression + (identifier) + (arguments + (identifier))))))) + (expression_statement + (for_expression + (loop_label + (identifier)) + (identifier) + (range_expression + (integer_literal) + (integer_literal)) + (block + (expression_statement + (for_expression + (loop_label + (identifier)) + (identifier) + (range_expression + (integer_literal) + (integer_literal)) + (block + (expression_statement + (if_expression + (binary_expression + (binary_expression + (identifier) + (integer_literal)) + (integer_literal)) + (block + (expression_statement + (continue_expression + (loop_label + (identifier))))))) + (expression_statement + (if_expression + (binary_expression + (binary_expression + (identifier) + (integer_literal)) + (integer_literal)) + (block + (expression_statement + (continue_expression + (loop_label + (identifier)))))))))))))) + +================================================================================ Field expressions -============================================ +================================================================================ mystruct.myfield; foo().x; value.0.1.iter(); 1.max(2); ---- +-------------------------------------------------------------------------------- (source_file - (field_expression (identifier) (field_identifier)) - (field_expression (call_expression (identifier) (arguments)) (field_identifier)) - (call_expression + (expression_statement (field_expression - (field_expression (field_expression (identifier) (integer_literal)) (integer_literal)) - (field_identifier)) - (arguments)) - (call_expression - (field_expression (integer_literal) (field_identifier)) (arguments (integer_literal)))) + (identifier) + (field_identifier))) + (expression_statement + (field_expression + (call_expression + (identifier) + (arguments)) + (field_identifier))) + (expression_statement + (call_expression + (field_expression + (field_expression + (field_expression + (identifier) + (integer_literal)) + (integer_literal)) + (field_identifier)) + (arguments))) + (expression_statement + (call_expression + (field_expression + (integer_literal) + (field_identifier)) + (arguments + (integer_literal))))) -============================================ +================================================================================ Method call expressions -============================================ +================================================================================ mystruct.foo(); ---- +-------------------------------------------------------------------------------- -(source_file (call_expression (field_expression (identifier) (field_identifier)) (arguments))) +(source_file + (expression_statement + (call_expression + (field_expression + (identifier) + (field_identifier)) + (arguments)))) -============================================ +================================================================================ Index expressions -============================================ +================================================================================ ([1, 2, 3, 4])[0]; arr[10]; arr[n]; ---- +-------------------------------------------------------------------------------- (source_file - (index_expression - (parenthesized_expression - (array_expression (integer_literal) (integer_literal) (integer_literal) (integer_literal))) - (integer_literal)) - (index_expression (identifier) (integer_literal)) - (index_expression (identifier) (identifier))) - -============================================ + (expression_statement + (index_expression + (parenthesized_expression + (array_expression + (integer_literal) + (integer_literal) + (integer_literal) + (integer_literal))) + (integer_literal))) + (expression_statement + (index_expression + (identifier) + (integer_literal))) + (expression_statement + (index_expression + (identifier) + (identifier)))) + +================================================================================ Scoped functions -============================================ +================================================================================ a::b(); C::::e(); ::f(); ::g::h(); ---- +-------------------------------------------------------------------------------- (source_file - (call_expression - (scoped_identifier (identifier) (identifier)) - (arguments)) - (call_expression - (scoped_identifier - (generic_type (type_identifier) (type_arguments (type_identifier))) - (identifier)) - (arguments)) - (call_expression (scoped_identifier (identifier)) (arguments)) - (call_expression (scoped_identifier (scoped_identifier (identifier)) (identifier)) (arguments))) + (expression_statement + (call_expression + (scoped_identifier + (identifier) + (identifier)) + (arguments))) + (expression_statement + (call_expression + (scoped_identifier + (generic_type + (type_identifier) + (type_arguments + (type_identifier))) + (identifier)) + (arguments))) + (expression_statement + (call_expression + (scoped_identifier + (identifier)) + (arguments))) + (expression_statement + (call_expression + (scoped_identifier + (scoped_identifier + (identifier)) + (identifier)) + (arguments)))) -============================================ +================================================================================ Scoped functions with fully qualified syntax -============================================ +================================================================================ ::eat(d); ---- +-------------------------------------------------------------------------------- (source_file - (call_expression - (scoped_identifier - (bracketed_type (qualified_type (type_identifier) (type_identifier))) - (identifier)) - (arguments (identifier)))) + (expression_statement + (call_expression + (scoped_identifier + (bracketed_type + (qualified_type + (type_identifier) + (type_identifier))) + (identifier)) + (arguments + (identifier))))) -============================================ +================================================================================ Scoped functions with macros as types -============================================ +================================================================================ ::foo(); ---- +-------------------------------------------------------------------------------- (source_file - (call_expression - (scoped_identifier - (bracketed_type (macro_invocation - (identifier) - (token_tree))) - (identifier)) - (arguments))) + (expression_statement + (call_expression + (scoped_identifier + (bracketed_type + (macro_invocation + (identifier) + (token_tree))) + (identifier)) + (arguments)))) -============================================ +================================================================================ Generic functions -============================================ +================================================================================ std::sizeof::(); foo::<8>(); ---- +-------------------------------------------------------------------------------- (source_file - (call_expression - function: (generic_function - function: (scoped_identifier - path: (identifier) - name: (identifier)) - type_arguments: (type_arguments - (primitive_type))) - arguments: (arguments)) - (call_expression - function: (generic_function - function: (identifier) - type_arguments: (type_arguments - (integer_literal))) - arguments: (arguments))) + (expression_statement + (call_expression + function: (generic_function + function: (scoped_identifier + path: (identifier) + name: (identifier)) + type_arguments: (type_arguments + (primitive_type))) + arguments: (arguments))) + (expression_statement + (call_expression + function: (generic_function + function: (identifier) + type_arguments: (type_arguments + (integer_literal))) + arguments: (arguments)))) -=========================================== +================================================================================ Closures -=========================================== +================================================================================ a.map(|(b, c)| b.push(c)); d.map(move |mut e| { @@ -710,97 +997,175 @@ d.map(move |mut e| { }); h(|| -> i { j }); ---- +-------------------------------------------------------------------------------- (source_file - (call_expression - (field_expression (identifier) (field_identifier)) - (arguments - (closure_expression - (closure_parameters (tuple_pattern (identifier) (identifier))) - (call_expression - (field_expression (identifier) (field_identifier)) - (arguments (identifier)))))) - (call_expression - (field_expression (identifier) (field_identifier)) - (arguments - (closure_expression - (closure_parameters (mut_pattern (mutable_specifier) (identifier))) - (block - (call_expression (identifier) (arguments (identifier))) - (call_expression (identifier) (arguments (identifier))))))) - (call_expression - (identifier) - (arguments - (closure_expression - (closure_parameters) - (type_identifier) - (block (identifier)))))) - -=========================================== + (expression_statement + (call_expression + (field_expression + (identifier) + (field_identifier)) + (arguments + (closure_expression + (closure_parameters + (tuple_pattern + (identifier) + (identifier))) + (call_expression + (field_expression + (identifier) + (field_identifier)) + (arguments + (identifier))))))) + (expression_statement + (call_expression + (field_expression + (identifier) + (field_identifier)) + (arguments + (closure_expression + (closure_parameters + (mut_pattern + (mutable_specifier) + (identifier))) + (block + (expression_statement + (call_expression + (identifier) + (arguments + (identifier)))) + (call_expression + (identifier) + (arguments + (identifier)))))))) + (expression_statement + (call_expression + (identifier) + (arguments + (closure_expression + (closure_parameters) + (type_identifier) + (block + (identifier))))))) + +================================================================================ Closures with typed parameteres -=========================================== +================================================================================ a.map(|b: usize| b.push(c)); ---- +-------------------------------------------------------------------------------- (source_file - (call_expression - (field_expression (identifier) (field_identifier)) - (arguments (closure_expression - (closure_parameters (parameter (identifier) (primitive_type))) - (call_expression (field_expression (identifier) (field_identifier)) (arguments (identifier))))))) + (expression_statement + (call_expression + (field_expression + (identifier) + (field_identifier)) + (arguments + (closure_expression + (closure_parameters + (parameter + (identifier) + (primitive_type))) + (call_expression + (field_expression + (identifier) + (field_identifier)) + (arguments + (identifier)))))))) + +================================================================================ +Generators +================================================================================ + +move || { + while i <= n { + yield i; + i += 1; + } + return; +}; + +-------------------------------------------------------------------------------- -=========================================== +(source_file + (expression_statement + (closure_expression + (closure_parameters) + (block + (expression_statement + (while_expression + (binary_expression + (identifier) + (identifier)) + (block + (expression_statement + (yield_expression + (identifier))) + (expression_statement + (compound_assignment_expr + (identifier) + (integer_literal)))))) + (expression_statement + (return_expression)))))) + +================================================================================ Unsafe blocks -=========================================== +================================================================================ const a : A = unsafe { foo() }; ---- +-------------------------------------------------------------------------------- (source_file (const_item (identifier) (type_identifier) - (unsafe_block (block (call_expression (identifier) (arguments)))))) + (unsafe_block + (block + (call_expression + (identifier) + (arguments)))))) -=========================================== +================================================================================ Inline const or Const blocks as expression -=========================================== +================================================================================ const { 1 + 3 }; if *x < 0 { const { &4i32.pow(4) } } else { x } let three_ranges = [const { (0..=5).into_inner() }; 3]; ---- +-------------------------------------------------------------------------------- (source_file - (const_block - body: (block - (binary_expression - left: (integer_literal) - right: (integer_literal)))) + (expression_statement + (const_block + body: (block + (binary_expression + left: (integer_literal) + right: (integer_literal))))) (empty_statement) - (if_expression - condition: (binary_expression - left: (unary_expression - (identifier)) - right: (integer_literal)) - consequence: (block - (const_block - body: (block - (reference_expression - value: (call_expression - function: (field_expression - value: (integer_literal) - field: (field_identifier)) - arguments: (arguments - (integer_literal))))))) - alternative: (else_clause - (block - (identifier)))) + (expression_statement + (if_expression + condition: (binary_expression + left: (unary_expression + (identifier)) + right: (integer_literal)) + consequence: (block + (expression_statement + (const_block + body: (block + (reference_expression + value: (call_expression + function: (field_expression + value: (integer_literal) + field: (field_identifier)) + arguments: (arguments + (integer_literal)))))))) + alternative: (else_clause + (block + (identifier))))) (let_declaration pattern: (identifier) value: (array_expression diff --git a/vendor/tree-sitter-rust/corpus/literals.txt b/vendor/tree-sitter-rust/corpus/literals.txt index fa96d22c4..2500a1a1f 100644 --- a/vendor/tree-sitter-rust/corpus/literals.txt +++ b/vendor/tree-sitter-rust/corpus/literals.txt @@ -1,6 +1,6 @@ -============================================ +================================================================================ Integer literals -============================================ +================================================================================ 0; 0___0; @@ -14,24 +14,35 @@ Integer literals 0b1111_1111_1001_0000_i32; 1u128; ---- +-------------------------------------------------------------------------------- (source_file - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal)) - -============================================ + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal)) + (expression_statement + (integer_literal))) + +================================================================================ Floating-point literals -============================================ +================================================================================ 123.123; 2.; @@ -40,19 +51,25 @@ Floating-point literals 0.1f32; 12E+99_f64; ---- +-------------------------------------------------------------------------------- (source_file - (float_literal) - (float_literal) - (float_literal) - (float_literal) - (float_literal) - (float_literal)) - -============================================ + (expression_statement + (float_literal)) + (expression_statement + (float_literal)) + (expression_statement + (float_literal)) + (expression_statement + (float_literal)) + (expression_statement + (float_literal)) + (expression_statement + (float_literal))) + +================================================================================ String literals -============================================ +================================================================================ ""; "abc"; @@ -64,52 +81,75 @@ b"foo\nbar"; "foo\x42\x43bar"; "foo \x42 \x43 bar"; ---- +-------------------------------------------------------------------------------- (source_file - (string_literal) - (string_literal) - (string_literal (escape_sequence)) - (string_literal (escape_sequence)) - (string_literal (escape_sequence) (escape_sequence)) - (string_literal) - (string_literal (escape_sequence) (escape_sequence)) - (string_literal (escape_sequence) (escape_sequence))) - -============================================ + (expression_statement + (string_literal)) + (expression_statement + (string_literal)) + (expression_statement + (string_literal + (escape_sequence))) + (expression_statement + (string_literal + (escape_sequence))) + (expression_statement + (string_literal + (escape_sequence) + (escape_sequence))) + (expression_statement + (string_literal)) + (expression_statement + (string_literal + (escape_sequence) + (escape_sequence))) + (expression_statement + (string_literal + (escape_sequence) + (escape_sequence)))) + +================================================================================ Raw string literals -============================================ +================================================================================ r#"abc"#; r##"ok"##; r##"foo #"# bar"##; r###"foo ##"## bar"###; r######"foo ##### bar"######; ---- +-------------------------------------------------------------------------------- (source_file - (raw_string_literal) - (raw_string_literal) - (raw_string_literal) - (raw_string_literal) - (raw_string_literal)) - -============================================ + (expression_statement + (raw_string_literal)) + (expression_statement + (raw_string_literal)) + (expression_statement + (raw_string_literal)) + (expression_statement + (raw_string_literal)) + (expression_statement + (raw_string_literal))) + +================================================================================ Raw byte string literals -============================================ +================================================================================ br#"abc"#; br##"abc"##; ---- +-------------------------------------------------------------------------------- (source_file - (raw_string_literal) - (raw_string_literal)) + (expression_statement + (raw_string_literal)) + (expression_statement + (raw_string_literal))) -============================================ +================================================================================ Character literals -============================================ +================================================================================ 'a'; '\''; @@ -119,24 +159,35 @@ b'x'; '\xff'; '\\'; ---- +-------------------------------------------------------------------------------- (source_file - (char_literal) - (char_literal) - (char_literal) - (char_literal) - (char_literal) - (char_literal) - (char_literal)) - -============================================ + (expression_statement + (char_literal)) + (expression_statement + (char_literal)) + (expression_statement + (char_literal)) + (expression_statement + (char_literal)) + (expression_statement + (char_literal)) + (expression_statement + (char_literal)) + (expression_statement + (char_literal))) + +================================================================================ Boolean literals -============================================ +================================================================================ true; false; ---- +-------------------------------------------------------------------------------- -(source_file (boolean_literal) (boolean_literal)) +(source_file + (expression_statement + (boolean_literal)) + (expression_statement + (boolean_literal))) diff --git a/vendor/tree-sitter-rust/corpus/macros.txt b/vendor/tree-sitter-rust/corpus/macros.txt index ca687d6ac..cfb542073 100644 --- a/vendor/tree-sitter-rust/corpus/macros.txt +++ b/vendor/tree-sitter-rust/corpus/macros.txt @@ -1,6 +1,6 @@ -============================================ +================================================================================ Macro invocation - no arguments -============================================ +================================================================================ a!(); b![]; @@ -8,18 +8,39 @@ c!{}; d::e!(); f::g::h!{}; ---- +-------------------------------------------------------------------------------- (source_file - (macro_invocation (identifier) (token_tree)) - (macro_invocation (identifier) (token_tree)) - (macro_invocation (identifier) (token_tree)) - (macro_invocation (scoped_identifier (identifier) (identifier)) (token_tree)) - (macro_invocation (scoped_identifier (scoped_identifier (identifier) (identifier)) (identifier)) (token_tree))) + (expression_statement + (macro_invocation + (identifier) + (token_tree))) + (expression_statement + (macro_invocation + (identifier) + (token_tree))) + (expression_statement + (macro_invocation + (identifier) + (token_tree))) + (expression_statement + (macro_invocation + (scoped_identifier + (identifier) + (identifier)) + (token_tree))) + (expression_statement + (macro_invocation + (scoped_identifier + (scoped_identifier + (identifier) + (identifier)) + (identifier)) + (token_tree)))) -============================================ +================================================================================ Macro invocation - arbitrary tokens -============================================ +================================================================================ a!(* a *); a!(& a &); @@ -30,57 +51,129 @@ a!('\u{0}'..='\u{2}'); a!('lifetime) default!(a); union!(a); +a!($); +a!($()); +a!($ a $); +a!(${$([ a ])}); +a!($a $a:ident $($a);*); ----- +-------------------------------------------------------------------------------- (source_file + (expression_statement + (macro_invocation + (identifier) + (token_tree + (non_special_punctuation) + (identifier) + (non_special_punctuation)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (non_special_punctuation) + (identifier) + (non_special_punctuation)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (non_special_punctuation) + (identifier) + (non_special_punctuation)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (identifier) + (non_special_punctuation) + (identifier) + (non_special_punctuation) + (non_special_punctuation)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (char_literal) + (non_special_punctuation) + (char_literal)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (char_literal) + (non_special_punctuation) + (char_literal)))) (macro_invocation (identifier) - (token_tree (identifier))) - (macro_invocation - (identifier) - (token_tree (identifier))) - (macro_invocation - (identifier) - (token_tree (identifier))) - (macro_invocation - (identifier) - (token_tree (identifier) (identifier))) - (macro_invocation - (identifier) - (token_tree (char_literal) (char_literal))) - (macro_invocation - (identifier) - (token_tree (char_literal) (char_literal))) - (macro_invocation - (identifier) - (token_tree (identifier))) - (macro_invocation - (identifier) - (token_tree (identifier))) - (macro_invocation - (identifier) - (token_tree (identifier)))) + (token_tree + (identifier))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (identifier)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (identifier)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (token_tree)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (identifier)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (token_tree + (token_tree + (token_tree + (identifier))))))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (identifier) + (identifier) + (non_special_punctuation) + (identifier) + (token_tree + (identifier)) + (non_special_punctuation) + (non_special_punctuation))))) -===================================== +================================================================================ Macro invocation with comments -===================================== +================================================================================ ok! { // one /* two */ } ---- +-------------------------------------------------------------------------------- (source_file (macro_invocation (identifier) - (token_tree (line_comment) (block_comment)))) + (token_tree + (line_comment) + (block_comment)))) -============================================ +================================================================================ Macro definition -============================================ +================================================================================ macro_rules! say_hello { () => ( @@ -111,7 +204,7 @@ macro_rules! zero_or_one { }; } ----- +-------------------------------------------------------------------------------- (source_file (macro_definition @@ -120,38 +213,47 @@ macro_rules! zero_or_one { left: (token_tree_pattern) right: (token_tree (identifier) + (non_special_punctuation) (token_tree - (string_literal))))) + (string_literal)) + (non_special_punctuation)))) (macro_definition name: (identifier) (macro_rule left: (token_tree_pattern) right: (token_tree (integer_literal) + (non_special_punctuation) (integer_literal)))) (macro_definition name: (identifier) (macro_rule left: (token_tree_pattern (identifier) + (non_special_punctuation) (token_binding_pattern name: (metavariable) type: (fragment_specifier))) right: (token_tree (identifier) + (non_special_punctuation) (token_tree (string_literal) + (non_special_punctuation) (metavariable)))) (macro_rule left: (token_tree_pattern (identifier) + (non_special_punctuation) (token_binding_pattern name: (metavariable) type: (fragment_specifier))) right: (token_tree (identifier) + (non_special_punctuation) (token_tree (string_literal) + (non_special_punctuation) (metavariable))))) (macro_definition name: (identifier) @@ -161,6 +263,7 @@ macro_rules! zero_or_one { (token_binding_pattern name: (metavariable) type: (fragment_specifier)) + (non_special_punctuation) (token_tree_pattern (token_repetition_pattern (token_binding_pattern @@ -170,6 +273,7 @@ macro_rules! zero_or_one { (token_repetition (token_repetition (metavariable) + (non_special_punctuation) (metavariable)))))) (macro_definition name: (identifier) diff --git a/vendor/tree-sitter-rust/corpus/patterns.txt b/vendor/tree-sitter-rust/corpus/patterns.txt index 54ccb855c..0e00564ea 100644 --- a/vendor/tree-sitter-rust/corpus/patterns.txt +++ b/vendor/tree-sitter-rust/corpus/patterns.txt @@ -1,26 +1,36 @@ -================================= +================================================================================ Tuple struct patterns -================================= +================================================================================ match x { Some(x) => "some", std::None() => "none" } ---- +-------------------------------------------------------------------------------- (source_file - (match_expression (identifier) (match_block - (match_arm - (match_pattern (tuple_struct_pattern (identifier) (identifier))) - (string_literal)) - (match_arm - (match_pattern (tuple_struct_pattern (scoped_identifier (identifier) (identifier)))) - (string_literal))))) - -================================= + (expression_statement + (match_expression + (identifier) + (match_block + (match_arm + (match_pattern + (tuple_struct_pattern + (identifier) + (identifier))) + (string_literal)) + (match_arm + (match_pattern + (tuple_struct_pattern + (scoped_identifier + (identifier) + (identifier)))) + (string_literal)))))) + +================================================================================ Reference patterns -================================= +================================================================================ match x { A(ref x) => x.0, @@ -28,51 +38,82 @@ match x { & mut z => z, } ---- +-------------------------------------------------------------------------------- (source_file - (match_expression (identifier) (match_block - (match_arm - (match_pattern (tuple_struct_pattern (identifier) (ref_pattern (identifier)))) - (field_expression (identifier) (integer_literal))) - (match_arm - (match_pattern (ref_pattern (mut_pattern (mutable_specifier) (identifier)))) - (identifier)) - (match_arm - (match_pattern (reference_pattern (mutable_specifier) (identifier))) - (identifier))))) - -================================= + (expression_statement + (match_expression + (identifier) + (match_block + (match_arm + (match_pattern + (tuple_struct_pattern + (identifier) + (ref_pattern + (identifier)))) + (field_expression + (identifier) + (integer_literal))) + (match_arm + (match_pattern + (ref_pattern + (mut_pattern + (mutable_specifier) + (identifier)))) + (identifier)) + (match_arm + (match_pattern + (reference_pattern + (mutable_specifier) + (identifier))) + (identifier)))))) + +================================================================================ Struct patterns -================================= +================================================================================ match x { Person{name, age} if age < 5 => ("toddler", name), Person{name: adult_name, age: _} => ("adult", adult_name), } ---- +-------------------------------------------------------------------------------- (source_file - (match_expression (identifier) (match_block - (match_arm - (match_pattern (struct_pattern - (type_identifier) - (field_pattern (shorthand_field_identifier)) - (field_pattern (shorthand_field_identifier))) - (binary_expression (identifier) (integer_literal))) - (tuple_expression (string_literal) (identifier))) - (match_arm - (match_pattern - (struct_pattern - (type_identifier) - (field_pattern (field_identifier) (identifier)) - (field_pattern (field_identifier)))) - (tuple_expression (string_literal) (identifier)))))) - -================================= + (expression_statement + (match_expression + (identifier) + (match_block + (match_arm + (match_pattern + (struct_pattern + (type_identifier) + (field_pattern + (shorthand_field_identifier)) + (field_pattern + (shorthand_field_identifier))) + (binary_expression + (identifier) + (integer_literal))) + (tuple_expression + (string_literal) + (identifier))) + (match_arm + (match_pattern + (struct_pattern + (type_identifier) + (field_pattern + (field_identifier) + (identifier)) + (field_pattern + (field_identifier)))) + (tuple_expression + (string_literal) + (identifier))))))) + +================================================================================ Ignored patterns -================================= +================================================================================ match x { (a, ..) => a, @@ -80,29 +121,40 @@ match x { D::E{f: g, ..} => g } ---- +-------------------------------------------------------------------------------- (source_file - (match_expression (identifier) (match_block - (match_arm - (match_pattern - (tuple_pattern (identifier) (remaining_field_pattern))) - (identifier)) - (match_arm - (match_pattern - (tuple_struct_pattern (identifier) (remaining_field_pattern))) - (identifier)) - (match_arm - (match_pattern - (struct_pattern - (scoped_type_identifier (identifier) (type_identifier)) - (field_pattern (field_identifier) (identifier)) - (remaining_field_pattern))) - (identifier))))) - -================================= + (expression_statement + (match_expression + (identifier) + (match_block + (match_arm + (match_pattern + (tuple_pattern + (identifier) + (remaining_field_pattern))) + (identifier)) + (match_arm + (match_pattern + (tuple_struct_pattern + (identifier) + (remaining_field_pattern))) + (identifier)) + (match_arm + (match_pattern + (struct_pattern + (scoped_type_identifier + (identifier) + (type_identifier)) + (field_pattern + (field_identifier) + (identifier)) + (remaining_field_pattern))) + (identifier)))))) + +================================================================================ Captured patterns -================================= +================================================================================ match x { a @ A(_) | b @ B(..) => a, @@ -112,61 +164,62 @@ match x { a @ b..=c => a, } ---- +-------------------------------------------------------------------------------- (source_file - (match_expression - value: (identifier) - body: (match_block - (match_arm - pattern: (match_pattern - (or_pattern + (expression_statement + (match_expression + value: (identifier) + body: (match_block + (match_arm + pattern: (match_pattern + (or_pattern + (captured_pattern + (identifier) + (tuple_struct_pattern + type: (identifier))) + (captured_pattern + (identifier) + (tuple_struct_pattern + type: (identifier) + (remaining_field_pattern))))) + value: (identifier)) + (match_arm + pattern: (match_pattern (captured_pattern (identifier) - (tuple_struct_pattern - type: (identifier))) + (range_pattern + (integer_literal) + (integer_literal)))) + value: (identifier)) + (match_arm + pattern: (match_pattern + (tuple_struct_pattern + type: (identifier) + (range_pattern + (integer_literal) + (integer_literal)))) + value: (identifier)) + (match_arm + pattern: (match_pattern (captured_pattern (identifier) - (tuple_struct_pattern - type: (identifier) - (remaining_field_pattern))))) - value: (identifier)) - (match_arm - pattern: (match_pattern - (captured_pattern - (identifier) - (range_pattern - (integer_literal) - (integer_literal)))) - value: (identifier)) - (match_arm - pattern: (match_pattern - (tuple_struct_pattern - type: (identifier) - (range_pattern - (integer_literal) - (integer_literal)))) - value: (identifier)) - (match_arm - pattern: (match_pattern - (captured_pattern - (identifier) - (range_pattern - (identifier) - (identifier)))) - value: (identifier)) - (match_arm - pattern: (match_pattern - (captured_pattern - (identifier) - (range_pattern + (range_pattern + (identifier) + (identifier)))) + value: (identifier)) + (match_arm + pattern: (match_pattern + (captured_pattern (identifier) - (identifier)))) - value: (identifier))))) + (range_pattern + (identifier) + (identifier)))) + value: (identifier)))))) -================================= +================================================================================ Or patterns -================================= +================================================================================ if let A(x) | B(x) = expr { do_stuff_with(x); @@ -196,37 +249,41 @@ fn foo((1 | 2 | 3): u8) {} // Not handled cause devs didn't got into agreement if should be acceptd or not // |Ok(x) | Err(x)| expr(); ---- +-------------------------------------------------------------------------------- (source_file - (if_let_expression - pattern: (or_pattern - (tuple_struct_pattern - type: (identifier) - (identifier)) - (tuple_struct_pattern - type: (identifier) - (identifier))) - value: (identifier) - consequence: (block - (call_expression - function: (identifier) - arguments: (arguments - (identifier))))) - (while_let_expression - pattern: (or_pattern - (tuple_struct_pattern - type: (identifier) - (identifier)) - (tuple_struct_pattern - type: (identifier) - (identifier))) - value: (identifier) - body: (block - (call_expression - function: (identifier) - arguments: (arguments - (identifier))))) + (expression_statement + (if_let_expression + pattern: (or_pattern + (tuple_struct_pattern + type: (identifier) + (identifier)) + (tuple_struct_pattern + type: (identifier) + (identifier))) + value: (identifier) + consequence: (block + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (identifier))))))) + (expression_statement + (while_let_expression + pattern: (or_pattern + (tuple_struct_pattern + type: (identifier) + (identifier)) + (tuple_struct_pattern + type: (identifier) + (identifier))) + value: (identifier) + body: (block + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (identifier))))))) (let_declaration pattern: (or_pattern (tuple_struct_pattern @@ -242,13 +299,14 @@ fn foo((1 | 2 | 3): u8) {} arguments: (arguments (reference_expression value: (identifier))))) - (for_expression - pattern: (or_pattern - (ref_pattern + (expression_statement + (for_expression + pattern: (or_pattern + (ref_pattern + (identifier)) (identifier)) - (identifier)) - value: (identifier) - body: (block)) + value: (identifier) + body: (block))) (let_declaration pattern: (or_pattern (tuple_struct_pattern @@ -261,27 +319,29 @@ fn foo((1 | 2 | 3): u8) {} function: (identifier) arguments: (arguments (identifier)))) - (for_expression - pattern: (or_pattern - (or_pattern - (identifier) - (identifier)) - (identifier)) - value: (identifier) - body: (block)) - (closure_expression - parameters: (closure_parameters - (tuple_pattern + (expression_statement + (for_expression + pattern: (or_pattern (or_pattern - (tuple_struct_pattern - type: (identifier) - (identifier)) - (tuple_struct_pattern - type: (identifier) - (identifier))))) - body: (call_expression - function: (identifier) - arguments: (arguments))) + (identifier) + (identifier)) + (identifier)) + value: (identifier) + body: (block))) + (expression_statement + (closure_expression + parameters: (closure_parameters + (tuple_pattern + (or_pattern + (tuple_struct_pattern + type: (identifier) + (identifier)) + (tuple_struct_pattern + type: (identifier) + (identifier))))) + body: (call_expression + function: (identifier) + arguments: (arguments)))) (let_declaration pattern: (ref_pattern (mut_pattern @@ -311,9 +371,9 @@ fn foo((1 | 2 | 3): u8) {} (line_comment) (line_comment)) -=========================================== +================================================================================ Inline const or Const blocks as pattern -=========================================== +================================================================================ fn foo(x: i32) { const CUBE: i32 = 3.pow(3); @@ -330,7 +390,7 @@ fn foo(x: i32) { } } ---- +-------------------------------------------------------------------------------- (source_file (function_item @@ -349,19 +409,20 @@ fn foo(x: i32) { field: (field_identifier)) arguments: (arguments (integer_literal)))) - (match_expression - value: (identifier) - body: (match_block - (match_arm - pattern: (match_pattern - (identifier)) - value: (macro_invocation - macro: (identifier) - (token_tree - (string_literal)))) - (match_arm - pattern: (match_pattern) - value: (block)))))) + (expression_statement + (match_expression + value: (identifier) + body: (match_block + (match_arm + pattern: (match_pattern + (identifier)) + value: (macro_invocation + macro: (identifier) + (token_tree + (string_literal)))) + (match_arm + pattern: (match_pattern) + value: (block))))))) (function_item name: (identifier) parameters: (parameters @@ -369,23 +430,24 @@ fn foo(x: i32) { pattern: (identifier) type: (primitive_type))) body: (block - (match_expression - value: (identifier) - body: (match_block - (match_arm - pattern: (match_pattern - (const_block - body: (block - (call_expression - function: (field_expression - value: (integer_literal) - field: (field_identifier)) - arguments: (arguments - (integer_literal)))))) - value: (macro_invocation - macro: (identifier) - (token_tree - (string_literal)))) - (match_arm - pattern: (match_pattern) - value: (block))))))) \ No newline at end of file + (expression_statement + (match_expression + value: (identifier) + body: (match_block + (match_arm + pattern: (match_pattern + (const_block + body: (block + (call_expression + function: (field_expression + value: (integer_literal) + field: (field_identifier)) + arguments: (arguments + (integer_literal)))))) + value: (macro_invocation + macro: (identifier) + (token_tree + (string_literal)))) + (match_arm + pattern: (match_pattern) + value: (block)))))))) diff --git a/vendor/tree-sitter-rust/corpus/types.txt b/vendor/tree-sitter-rust/corpus/types.txt index a648a8cdd..389d394c6 100644 --- a/vendor/tree-sitter-rust/corpus/types.txt +++ b/vendor/tree-sitter-rust/corpus/types.txt @@ -1,123 +1,187 @@ -===================== +================================================================================ The unit type -===================== +================================================================================ type A = (); ---- +-------------------------------------------------------------------------------- (source_file - (type_item (type_identifier) (unit_type))) + (type_item + (type_identifier) + (unit_type))) -===================== +================================================================================ Tuple types -===================== +================================================================================ type A = (i32, String); ---- +-------------------------------------------------------------------------------- (source_file - (type_item (type_identifier) (tuple_type (primitive_type) (type_identifier)))) + (type_item + (type_identifier) + (tuple_type + (primitive_type) + (type_identifier)))) -===================== +================================================================================ Reference types -===================== +================================================================================ type A = &B; type C = &'a str; type D = &'a mut str; ---- +-------------------------------------------------------------------------------- (source_file - (type_item (type_identifier) (reference_type (type_identifier))) - (type_item (type_identifier) (reference_type (lifetime (identifier)) (primitive_type))) - (type_item (type_identifier) (reference_type (lifetime (identifier)) (mutable_specifier) (primitive_type)))) + (type_item + (type_identifier) + (reference_type + (type_identifier))) + (type_item + (type_identifier) + (reference_type + (lifetime + (identifier)) + (primitive_type))) + (type_item + (type_identifier) + (reference_type + (lifetime + (identifier)) + (mutable_specifier) + (primitive_type)))) -===================== +================================================================================ Raw pointer types -===================== +================================================================================ type A = *mut B; type C = *const str; ---- +-------------------------------------------------------------------------------- (source_file - (type_item (type_identifier) (pointer_type (mutable_specifier) (type_identifier))) - (type_item (type_identifier) (pointer_type (primitive_type)))) + (type_item + (type_identifier) + (pointer_type + (mutable_specifier) + (type_identifier))) + (type_item + (type_identifier) + (pointer_type + (primitive_type)))) -===================== +================================================================================ Generic types -===================== +================================================================================ type A = B; type D = E; type G = H<'a, I>; type J = H; ---- +-------------------------------------------------------------------------------- (source_file (type_item (type_identifier) - (generic_type (type_identifier) (type_arguments (type_identifier)))) + (generic_type + (type_identifier) + (type_arguments + (type_identifier)))) (type_item (type_identifier) - (generic_type (type_identifier) (type_arguments (type_identifier) (primitive_type)))) + (generic_type + (type_identifier) + (type_arguments + (type_identifier) + (primitive_type)))) (type_item (type_identifier) - (generic_type (type_identifier) (type_arguments (lifetime (identifier)) (type_identifier)))) + (generic_type + (type_identifier) + (type_arguments + (lifetime + (identifier)) + (type_identifier)))) (type_item (type_identifier) - (generic_type (type_identifier) (type_arguments (type_binding (type_identifier) (type_identifier)))))) + (generic_type + (type_identifier) + (type_arguments + (type_binding + (type_identifier) + (type_identifier)))))) -===================== +================================================================================ Scoped types -===================== +================================================================================ type A = B::C; type D = E::F::G; type H = I::J; type L = M::O; ---- +-------------------------------------------------------------------------------- (source_file (type_item (type_identifier) - (scoped_type_identifier (identifier) (type_identifier))) + (scoped_type_identifier + (identifier) + (type_identifier))) (type_item (type_identifier) - (scoped_type_identifier (scoped_identifier (identifier) (identifier)) (type_identifier))) + (scoped_type_identifier + (scoped_identifier + (identifier) + (identifier)) + (type_identifier))) (type_item (type_identifier) (generic_type - (scoped_type_identifier (identifier) (type_identifier)) - (type_arguments (type_identifier)))) + (scoped_type_identifier + (identifier) + (type_identifier)) + (type_arguments + (type_identifier)))) (type_item (type_identifier) (scoped_type_identifier - (generic_type (type_identifier) (type_arguments (type_identifier))) + (generic_type + (type_identifier) + (type_arguments + (type_identifier))) (type_identifier)))) -===================== +================================================================================ Array types -===================== +================================================================================ type A = [B; 4]; type C = &[D]; ---- +-------------------------------------------------------------------------------- (source_file - (type_item (type_identifier) (array_type (type_identifier) (integer_literal))) - (type_item (type_identifier) (reference_type (array_type (type_identifier))))) + (type_item + (type_identifier) + (array_type + (type_identifier) + (integer_literal))) + (type_item + (type_identifier) + (reference_type + (array_type + (type_identifier))))) -============================ +================================================================================ Function types -============================ +================================================================================ fn high_order1(value: i32, f: fn(i32)) -> i32 {} @@ -131,107 +195,190 @@ fn high_order3(value: i32, f: &FnOnce(i32) -> i32) -> i32 { type F = for<'a, 'b> fn(x: &'a A, y: &'a mut B<'i, 't>,) -> C; ---- +-------------------------------------------------------------------------------- (source_file (function_item (identifier) (parameters - (parameter (identifier) (primitive_type)) - (parameter (identifier) (function_type (parameters (primitive_type))))) + (parameter + (identifier) + (primitive_type)) + (parameter + (identifier) + (function_type + (parameters + (primitive_type))))) (primitive_type) (block)) (function_item (identifier) (parameters - (parameter (identifier) (primitive_type)) - (parameter (identifier) (function_type (parameters (primitive_type)) (primitive_type)))) + (parameter + (identifier) + (primitive_type)) + (parameter + (identifier) + (function_type + (parameters + (primitive_type)) + (primitive_type)))) (primitive_type) - (block (call_expression (identifier) (arguments (identifier))))) + (block + (call_expression + (identifier) + (arguments + (identifier))))) (function_item (identifier) (parameters - (parameter (identifier) (primitive_type)) - (parameter (identifier) (reference_type (function_type (type_identifier) (parameters (primitive_type)) (primitive_type))))) - (primitive_type) (block (call_expression (identifier) (arguments (identifier))))) + (parameter + (identifier) + (primitive_type)) + (parameter + (identifier) + (reference_type + (function_type + (type_identifier) + (parameters + (primitive_type)) + (primitive_type))))) + (primitive_type) + (block + (call_expression + (identifier) + (arguments + (identifier))))) (type_item (type_identifier) (function_type - (for_lifetimes (lifetime (identifier)) (lifetime (identifier))) - (parameters (parameter (identifier) (reference_type (lifetime (identifier)) (type_identifier))) (parameter (identifier) (reference_type (lifetime (identifier)) (mutable_specifier) (generic_type (type_identifier) (type_arguments (lifetime (identifier)) (lifetime (identifier))))))) + (for_lifetimes + (lifetime + (identifier)) + (lifetime + (identifier))) + (parameters + (parameter + (identifier) + (reference_type + (lifetime + (identifier)) + (type_identifier))) + (parameter + (identifier) + (reference_type + (lifetime + (identifier)) + (mutable_specifier) + (generic_type + (type_identifier) + (type_arguments + (lifetime + (identifier)) + (lifetime + (identifier))))))) (type_identifier)))) -================================= +================================================================================ Unsafe and extern function types -================================= +================================================================================ type a = extern "C" fn(*mut c_void); type b = unsafe extern "C" fn() -> *mut c_void; ---- +-------------------------------------------------------------------------------- (source_file (type_item (type_identifier) (function_type - (function_modifiers (extern_modifier (string_literal))) - (parameters (pointer_type (mutable_specifier) (type_identifier))))) + (function_modifiers + (extern_modifier + (string_literal))) + (parameters + (pointer_type + (mutable_specifier) + (type_identifier))))) (type_item (type_identifier) (function_type - (function_modifiers (extern_modifier (string_literal))) + (function_modifiers + (extern_modifier + (string_literal))) (parameters) - (pointer_type (mutable_specifier) (type_identifier))))) + (pointer_type + (mutable_specifier) + (type_identifier))))) -=================================== +================================================================================ Trait objects -=================================== +================================================================================ type a = Box; type b = Rc; type c = A<&dyn Fn(&B) -> C>; ---- +-------------------------------------------------------------------------------- (source_file (type_item (type_identifier) (generic_type (type_identifier) - (type_arguments (bounded_type (type_identifier) (lifetime (identifier)))))) + (type_arguments + (bounded_type + (type_identifier) + (lifetime + (identifier)))))) (type_item (type_identifier) (generic_type (type_identifier) - (type_arguments (dynamic_type (type_identifier))))) + (type_arguments + (dynamic_type + (type_identifier))))) (type_item (type_identifier) (generic_type (type_identifier) (type_arguments (reference_type - (dynamic_type (function_type (type_identifier) (parameters (reference_type (type_identifier))) (type_identifier)))))))) - -==================================== + (dynamic_type + (function_type + (type_identifier) + (parameters + (reference_type + (type_identifier))) + (type_identifier)))))))) + +================================================================================ Type cast expressions with generics -==================================== +================================================================================ a as B; d as *mut E<::G>; ---- +-------------------------------------------------------------------------------- (source_file - (type_cast_expression - (identifier) - (generic_type (type_identifier) (type_arguments (type_identifier)))) - (type_cast_expression - (identifier) - (pointer_type - (mutable_specifier) + (expression_statement + (type_cast_expression + (identifier) (generic_type (type_identifier) (type_arguments - (scoped_type_identifier - (bracketed_type (qualified_type (type_identifier) (type_identifier))) - (type_identifier))))))) + (type_identifier))))) + (expression_statement + (type_cast_expression + (identifier) + (pointer_type + (mutable_specifier) + (generic_type + (type_identifier) + (type_arguments + (scoped_type_identifier + (bracketed_type + (qualified_type + (type_identifier) + (type_identifier))) + (type_identifier)))))))) diff --git a/vendor/tree-sitter-rust/grammar.js b/vendor/tree-sitter-rust/grammar.js index d1e4f43f9..d17a07b44 100644 --- a/vendor/tree-sitter-rust/grammar.js +++ b/vendor/tree-sitter-rust/grammar.js @@ -35,6 +35,54 @@ const numeric_types = [ const primitive_types = numeric_types.concat(['bool', 'str', 'char']) +const built_in_attributes = [ + 'cfg', + 'cfg_attr', + 'test', + 'ignore', + 'should_panic', + 'derive', + 'automatically_derived', + 'macro_export', + 'macro_use', + 'proc_macro', + 'proc_macro_derive', + 'proc_macro_attribute', + 'allow', + 'warn', + 'deny', + 'forbid', + 'deprecated', + 'must_use', + 'link', + 'link_name', + 'no_link', + 'repr', + 'crate_type', + 'no_main', + 'export_name', + 'link_section', + 'no_mangle', + 'used', + 'crate_name', + 'inline', + 'cold', + 'no_builtins', + 'target_feature', + 'track_caller', + 'doc', + 'no_std', + 'no_implicit_prelude', + 'path', + 'recursion_limit', + 'type_length_limit', + 'panic_handler', + 'global_allocator', + 'windows_subsystem', + 'feature', + 'non_exhaustive' +] + module.exports = grammar({ name: 'rust', @@ -84,13 +132,13 @@ module.exports = grammar({ source_file: $ => repeat($._statement), _statement: $ => choice( - $._expression_statement, + $.expression_statement, $._declaration_statement ), empty_statement: $ => ';', - _expression_statement: $ => choice( + expression_statement: $ => choice( seq($._expression, ';'), prec(1, $._expression_ending_with_block) ), @@ -150,6 +198,7 @@ module.exports = grammar({ $.token_tree_pattern, $.token_repetition_pattern, $.token_binding_pattern, + $.metavariable, $._non_special_token ), @@ -177,6 +226,7 @@ module.exports = grammar({ _tokens: $ => choice( $.token_tree, $.token_repetition, + $.metavariable, $._non_special_token ), @@ -190,10 +240,19 @@ module.exports = grammar({ '$', '(', repeat($._tokens), ')', optional(/[^+*?]+/), choice('+', '*', '?') ), - non_special_punctuation: $ => /[/_\-=->,;:::!=?.@*&#%^+<>|~]+/, + non_special_punctuation: $ => choice( + // https://doc.rust-lang.org/reference/tokens.html#punctuation + "+", "-", "*", "/", "%", "^", "!", "&", "|", "&&", "||", "<<", + ">>", "+=", "-=", "*=", "/=", "%=", "^=", "&=", "|=", "<<=", + ">>=", "=", "==", "!=", ">", "<", ">=", "<=", "@", "_", ".", + "..", "...", "..=", ",", ";", ":", "::", "->", "=>", "#", "?", + ), + // Matches non-delimiter tokens common to both macro invocations and + // definitions. This is everything except $ and metavariables (which begin + // with $). _non_special_token: $ => choice( - $._literal, $.identifier, $.metavariable, $.mutable_specifier, $.self, $.super, $.crate, + $._literal, $.identifier, $.mutable_specifier, $.self, $.super, $.crate, alias(choice(...primitive_types), $.primitive_type), $.non_special_punctuation, '\'', @@ -207,7 +266,7 @@ module.exports = grammar({ attribute_item: $ => seq( '#', '[', - $.meta_item, + $._attr, ']' ), @@ -215,14 +274,39 @@ module.exports = grammar({ '#', '!', '[', - $.meta_item, + $._attr, ']' ), + _attr: $ => choice( + alias($.built_in_attr, $.meta_item), + alias($.custom_attr, $.attr_item), + ), + + custom_attr: $ => seq( + $._path, + optional(choice( + seq('=', field('value', $._expression)), + field('arguments', alias($.delim_token_tree, $.token_tree)) + )) + ), + + built_in_attr: $ => seq( + $._built_in_attr_path, + optional(choice( + seq('=', field('value', $._expression)), + field('arguments', $.meta_arguments) + )) + ), + + _built_in_attr_path: $ => choice( + ...built_in_attributes.map(name => alias(name, $.identifier)) + ), + meta_item: $ => seq( $._path, optional(choice( - seq('=', field('value', $._literal)), + seq('=', field('value', $._expression)), field('arguments', $.meta_arguments) )) ), @@ -466,7 +550,7 @@ module.exports = grammar({ )), field('type', $._type), optional($.where_clause), - field('body', $.declaration_list) + choice(field('body', $.declaration_list), ';') ), trait_item: $ => seq( @@ -483,6 +567,7 @@ module.exports = grammar({ associated_type: $ => seq( 'type', field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), field('bounds', optional($.trait_bounds)), ';' ), @@ -788,6 +873,7 @@ module.exports = grammar({ type_binding: $ => seq( field('name', $._type_identifier), + field('type_arguments', optional($.type_arguments)), '=', field('type', $._type) ), @@ -831,7 +917,7 @@ module.exports = grammar({ // Section - Expressions - _expression: $ => choice( + _expression_except_range: $ => choice( $.unary_expression, $.reference_expression, $.try_expression, @@ -839,9 +925,9 @@ module.exports = grammar({ $.assignment_expression, $.compound_assignment_expr, $.type_cast_expression, - $.range_expression, $.call_expression, $.return_expression, + $.yield_expression, $._literal, prec.left($.identifier), alias(choice(...primitive_types), $.identifier), @@ -855,14 +941,19 @@ module.exports = grammar({ $.tuple_expression, prec(1, $.macro_invocation), $.unit_expression, - $._expression_ending_with_block, $.break_expression, $.continue_expression, $.index_expression, $.metavariable, $.closure_expression, $.parenthesized_expression, - $.struct_expression + $.struct_expression, + $._expression_ending_with_block, + ), + + _expression: $ => choice( + $._expression_except_range, + $.range_expression, ), _expression_ending_with_block: $ => choice( @@ -886,7 +977,24 @@ module.exports = grammar({ $._reserved_identifier, )), '!', - $.token_tree + alias($.delim_token_tree, $.token_tree) + ), + + delim_token_tree: $ => choice( + seq('(', repeat($._delim_tokens), ')'), + seq('[', repeat($._delim_tokens), ']'), + seq('{', repeat($._delim_tokens), '}') + ), + + _delim_tokens: $ => choice( + $._non_delim_token, + alias($.delim_token_tree, $.token_tree), + ), + + // Should match any token other than a delimiter. + _non_delim_token: $ => choice( + $._non_special_token, + '$' ), scoped_identifier: $ => seq( @@ -920,10 +1028,7 @@ module.exports = grammar({ ), range_expression: $ => prec.left(PREC.range, choice( - prec.left( - PREC.range + 1, - seq($._expression, choice('..', '...', '..='), $._expression) - ), + seq($._expression, choice('..', '...', '..='), $._expression), seq($._expression, '..'), seq('..', $._expression), '..' @@ -988,8 +1093,13 @@ module.exports = grammar({ prec(-1, 'return'), ), + yield_expression: $ => choice( + prec.left(seq('yield', $._expression)), + prec(-1, 'yield'), + ), + call_expression: $ => prec(PREC.call, seq( - field('function', $._expression), + field('function', $._expression_except_range), field('arguments', $.arguments) )), @@ -1452,7 +1562,7 @@ module.exports = grammar({ self: $ => 'self', super: $ => 'super', crate: $ => 'crate', - + metavariable: $ => /\$[a-zA-Z_]\w*/ } }) diff --git a/vendor/tree-sitter-rust/package.json b/vendor/tree-sitter-rust/package.json index b0e873468..78bafeb88 100644 --- a/vendor/tree-sitter-rust/package.json +++ b/vendor/tree-sitter-rust/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-rust", - "version": "0.19.1", + "version": "0.20.1", "description": "Rust grammar for tree-sitter", "main": "bindings/node", "keywords": [ @@ -17,7 +17,7 @@ "nan": "^2.14.0" }, "devDependencies": { - "tree-sitter-cli": "^0.19.1" + "tree-sitter-cli": "^0.20.0" }, "scripts": { "generate": "tree-sitter generate", diff --git a/vendor/tree-sitter-rust/queries/tags.scm b/vendor/tree-sitter-rust/queries/tags.scm new file mode 100644 index 000000000..e22f2b2e1 --- /dev/null +++ b/vendor/tree-sitter-rust/queries/tags.scm @@ -0,0 +1,60 @@ +; ADT definitions + +(struct_item + name: (type_identifier) @name) @definition.class + +(enum_item + name: (type_identifier) @name) @definition.class + +(union_item + name: (type_identifier) @name) @definition.class + +; type aliases + +(type_item + name: (type_identifier) @name) @definition.class + +; method definitions + +(declaration_list + (function_item + name: (identifier) @name)) @definition.method + +; function definitions + +(function_item + name: (identifier) @name) @definition.function + +; trait definitions +(trait_item + name: (type_identifier) @name) @definition.interface + +; module definitions +(mod_item + name: (identifier) @name) @definition.module + +; macro definitions + +(macro_definition + name: (identifier) @name) @definition.macro + +; references + +(call_expression + function: (identifier) @name) @reference.call + +(call_expression + function: (field_expression + field: (field_identifier) @name)) @reference.call + +(macro_invocation + macro: (identifier) @name) @reference.call + +; implementations + +(impl_item + trait: (type_identifier) @name) @reference.implementation + +(impl_item + type: (type_identifier) @name + !trait) @reference.implementation diff --git a/vendor/tree-sitter-rust/src/grammar.json b/vendor/tree-sitter-rust/src/grammar.json index 519d41d8d..902073685 100644 --- a/vendor/tree-sitter-rust/src/grammar.json +++ b/vendor/tree-sitter-rust/src/grammar.json @@ -14,7 +14,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression_statement" + "name": "expression_statement" }, { "type": "SYMBOL", @@ -26,7 +26,7 @@ "type": "STRING", "value": ";" }, - "_expression_statement": { + "expression_statement": { "type": "CHOICE", "members": [ { @@ -308,6 +308,10 @@ "type": "SYMBOL", "name": "token_binding_pattern" }, + { + "type": "SYMBOL", + "name": "metavariable" + }, { "type": "SYMBOL", "name": "_non_special_token" @@ -529,6 +533,10 @@ "type": "SYMBOL", "name": "token_repetition" }, + { + "type": "SYMBOL", + "name": "metavariable" + }, { "type": "SYMBOL", "name": "_non_special_token" @@ -654,8 +662,185 @@ ] }, "non_special_punctuation": { - "type": "PATTERN", - "value": "[/_\\-=->,;:::!=?.@*&#%^+<>|~]+" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "..=" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "?" + } + ] }, "_non_special_token": { "type": "CHOICE", @@ -668,10 +853,6 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "metavariable" - }, { "type": "SYMBOL", "name": "mutable_specifier" @@ -897,7 +1078,7 @@ }, { "type": "SYMBOL", - "name": "meta_item" + "name": "_attr" }, { "type": "STRING", @@ -922,7 +1103,7 @@ }, { "type": "SYMBOL", - "name": "meta_item" + "name": "_attr" }, { "type": "STRING", @@ -930,6 +1111,538 @@ } ] }, + "_attr": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "built_in_attr" + }, + "named": true, + "value": "meta_item" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "custom_attr" + }, + "named": true, + "value": "attr_item" + } + ] + }, + "custom_attr": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "built_in_attr": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_built_in_attr_path" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "meta_arguments" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_built_in_attr_path": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "cfg" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "cfg_attr" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "test" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "ignore" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "should_panic" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "derive" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "automatically_derived" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "macro_export" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "macro_use" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "proc_macro" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "proc_macro_derive" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "proc_macro_attribute" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "allow" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "warn" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "deny" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "forbid" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "deprecated" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "must_use" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "link" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "link_name" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_link" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "repr" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "crate_type" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_main" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "export_name" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "link_section" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_mangle" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "used" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "crate_name" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "inline" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "cold" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_builtins" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "target_feature" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "track_caller" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "doc" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_std" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_implicit_prelude" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "path" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "recursion_limit" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "type_length_limit" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "panic_handler" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "global_allocator" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "windows_subsystem" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "feature" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "non_exhaustive" + }, + "named": true, + "value": "identifier" + } + ] + }, "meta_item": { "type": "SEQ", "members": [ @@ -955,7 +1668,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_literal" + "name": "_expression" } } ] @@ -2606,12 +3319,21 @@ ] }, { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "declaration_list" - } + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + }, + { + "type": "STRING", + "value": ";" + } + ] } ] }, @@ -2723,6 +3445,22 @@ "name": "_type_identifier" } }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, { "type": "FIELD", "name": "bounds", @@ -4424,6 +5162,22 @@ "name": "_type_identifier" } }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + }, { "type": "STRING", "value": "=" @@ -4585,7 +5339,7 @@ "type": "STRING", "value": "mut" }, - "_expression": { + "_expression_except_range": { "type": "CHOICE", "members": [ { @@ -4618,15 +5372,15 @@ }, { "type": "SYMBOL", - "name": "range_expression" + "name": "call_expression" }, { "type": "SYMBOL", - "name": "call_expression" + "name": "return_expression" }, { "type": "SYMBOL", - "name": "return_expression" + "name": "yield_expression" }, { "type": "SYMBOL", @@ -4766,10 +5520,6 @@ "type": "SYMBOL", "name": "unit_expression" }, - { - "type": "SYMBOL", - "name": "_expression_ending_with_block" - }, { "type": "SYMBOL", "name": "break_expression" @@ -4797,6 +5547,23 @@ { "type": "SYMBOL", "name": "struct_expression" + }, + { + "type": "SYMBOL", + "name": "_expression_ending_with_block" + } + ] + }, + "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_except_range" + }, + { + "type": "SYMBOL", + "name": "range_expression" } ] }, @@ -4877,9 +5644,110 @@ "type": "STRING", "value": "!" }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + ] + }, + "delim_token_tree": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + }, + "_delim_tokens": { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", - "name": "token_tree" + "name": "_non_delim_token" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + ] + }, + "_non_delim_token": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_non_special_token" + }, + { + "type": "STRING", + "value": "$" } ] }, @@ -5047,38 +5915,34 @@ "type": "CHOICE", "members": [ { - "type": "PREC_LEFT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "STRING", - "value": "..." - }, - { - "type": "STRING", - "value": "..=" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "..=" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] }, { "type": "SEQ", @@ -5705,6 +6569,36 @@ } ] }, + "yield_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "yield" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + { + "type": "PREC", + "value": -1, + "content": { + "type": "STRING", + "value": "yield" + } + } + ] + }, "call_expression": { "type": "PREC", "value": 14, @@ -5716,7 +6610,7 @@ "name": "function", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "_expression_except_range" } }, { diff --git a/vendor/tree-sitter-rust/src/node-types.json b/vendor/tree-sitter-rust/src/node-types.json index 9fcde71e4..71a55a485 100644 --- a/vendor/tree-sitter-rust/src/node-types.json +++ b/vendor/tree-sitter-rust/src/node-types.json @@ -248,6 +248,10 @@ { "type": "while_let_expression", "named": true + }, + { + "type": "yield_expression", + "named": true } ] }, @@ -607,6 +611,16 @@ "named": true } ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] } } }, @@ -625,6 +639,62 @@ ] } }, + { + "type": "attr_item", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "token_tree", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "crate", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + }, { "type": "attribute_item", "named": true, @@ -633,6 +703,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "attr_item", + "named": true + }, { "type": "meta_item", "named": true @@ -789,6 +863,10 @@ { "type": "_expression", "named": true + }, + { + "type": "expression_statement", + "named": true } ] } @@ -874,7 +952,159 @@ "required": true, "types": [ { - "type": "_expression", + "type": "_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "async_block", + "named": true + }, + { + "type": "await_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "break_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "closure_expression", + "named": true + }, + { + "type": "compound_assignment_expr", + "named": true + }, + { + "type": "const_block", + "named": true + }, + { + "type": "continue_expression", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "for_expression", + "named": true + }, + { + "type": "generic_function", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "if_let_expression", + "named": true + }, + { + "type": "index_expression", + "named": true + }, + { + "type": "loop_expression", + "named": true + }, + { + "type": "macro_invocation", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "reference_expression", + "named": true + }, + { + "type": "return_expression", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "type_cast_expression", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "unsafe_block", + "named": true + }, + { + "type": "while_expression", + "named": true + }, + { + "type": "while_let_expression", + "named": true + }, + { + "type": "yield_expression", "named": true } ] @@ -1351,6 +1581,21 @@ ] } }, + { + "type": "expression_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, { "type": "extern_crate_declaration", "named": true, @@ -2113,7 +2358,7 @@ "fields": { "body": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "declaration_list", @@ -2194,6 +2439,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "attr_item", + "named": true + }, { "type": "meta_item", "named": true @@ -2530,7 +2779,7 @@ "required": false, "types": [ { - "type": "_literal", + "type": "_expression", "named": true } ] @@ -2641,6 +2890,11 @@ ] } }, + { + "type": "non_special_punctuation", + "named": true, + "fields": {} + }, { "type": "optional_type_parameter", "named": true, @@ -3257,7 +3511,7 @@ "named": true }, { - "type": "_expression", + "type": "expression_statement", "named": true } ] @@ -3939,6 +4193,16 @@ "named": true } ] + }, + "type_arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] } } }, @@ -4528,6 +4792,21 @@ ] } }, + { + "type": "yield_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, { "type": "!", "named": false @@ -4988,6 +5267,10 @@ "type": "while", "named": false }, + { + "type": "yield", + "named": false + }, { "type": "{", "named": false diff --git a/vendor/tree-sitter-rust/src/parser.c b/vendor/tree-sitter-rust/src/parser.c index 56db64eaa..9ca86090d 100644 --- a/vendor/tree-sitter-rust/src/parser.c +++ b/vendor/tree-sitter-rust/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2480 -#define LARGE_STATE_COUNT 594 -#define SYMBOL_COUNT 313 +#define STATE_COUNT 3083 +#define LARGE_STATE_COUNT 760 +#define SYMBOL_COUNT 368 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 138 +#define TOKEN_COUNT 182 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 232 +#define PRODUCTION_ID_COUNT 243 enum { sym_identifier = 1, @@ -46,292 +46,347 @@ enum { anon_sym_tt = 27, anon_sym_ty = 28, anon_sym_vis = 29, - sym_non_special_punctuation = 30, - anon_sym_u8 = 31, - anon_sym_i8 = 32, - anon_sym_u16 = 33, - anon_sym_i16 = 34, - anon_sym_u32 = 35, - anon_sym_i32 = 36, - anon_sym_u64 = 37, - anon_sym_i64 = 38, - anon_sym_u128 = 39, - anon_sym_i128 = 40, - anon_sym_isize = 41, - anon_sym_usize = 42, - anon_sym_f32 = 43, - anon_sym_f64 = 44, - anon_sym_bool = 45, - anon_sym_str = 46, - anon_sym_char = 47, - anon_sym_SQUOTE = 48, - anon_sym_as = 49, - anon_sym_async = 50, - anon_sym_await = 51, - anon_sym_break = 52, - anon_sym_const = 53, - anon_sym_continue = 54, - anon_sym_default = 55, - anon_sym_enum = 56, - anon_sym_fn = 57, - anon_sym_for = 58, - anon_sym_if = 59, - anon_sym_impl = 60, - anon_sym_let = 61, - anon_sym_loop = 62, - anon_sym_match = 63, - anon_sym_mod = 64, - anon_sym_pub = 65, - anon_sym_return = 66, - anon_sym_static = 67, - anon_sym_struct = 68, - anon_sym_trait = 69, - anon_sym_type = 70, - anon_sym_union = 71, - anon_sym_unsafe = 72, - anon_sym_use = 73, - anon_sym_where = 74, - anon_sym_while = 75, - anon_sym_POUND = 76, - anon_sym_BANG = 77, - anon_sym_EQ = 78, - anon_sym_COMMA = 79, - anon_sym_extern = 80, - anon_sym_ref = 81, - anon_sym_DASH_GT = 82, - anon_sym_LT = 83, - anon_sym_GT = 84, - anon_sym_COLON_COLON = 85, - anon_sym__ = 86, - anon_sym_AMP = 87, - anon_sym_DOT_DOT_DOT = 88, - anon_sym_in = 89, - anon_sym_LT2 = 90, - anon_sym_dyn = 91, - sym_mutable_specifier = 92, - anon_sym_DOT_DOT = 93, - anon_sym_DOT_DOT_EQ = 94, - anon_sym_DASH = 95, - anon_sym_AMP_AMP = 96, - anon_sym_PIPE_PIPE = 97, - anon_sym_PIPE = 98, - anon_sym_CARET = 99, - anon_sym_EQ_EQ = 100, - anon_sym_BANG_EQ = 101, - anon_sym_LT_EQ = 102, - anon_sym_GT_EQ = 103, - anon_sym_LT_LT = 104, - anon_sym_GT_GT = 105, - anon_sym_SLASH = 106, - anon_sym_PERCENT = 107, - anon_sym_PLUS_EQ = 108, - anon_sym_DASH_EQ = 109, - anon_sym_STAR_EQ = 110, - anon_sym_SLASH_EQ = 111, - anon_sym_PERCENT_EQ = 112, - anon_sym_AMP_EQ = 113, - anon_sym_PIPE_EQ = 114, - anon_sym_CARET_EQ = 115, - anon_sym_LT_LT_EQ = 116, - anon_sym_GT_GT_EQ = 117, - anon_sym_else = 118, - anon_sym_move = 119, - anon_sym_DOT = 120, - anon_sym_AT = 121, - sym_integer_literal = 122, - aux_sym_string_literal_token1 = 123, - anon_sym_DQUOTE = 124, - sym_char_literal = 125, - sym_escape_sequence = 126, - anon_sym_true = 127, - anon_sym_false = 128, - sym_line_comment = 129, - sym_self = 130, - sym_super = 131, - sym_crate = 132, - sym_metavariable = 133, - sym__string_content = 134, - sym_raw_string_literal = 135, - sym_float_literal = 136, - sym_block_comment = 137, - sym_source_file = 138, - sym__statement = 139, - sym_empty_statement = 140, - sym__expression_statement = 141, - sym_macro_definition = 142, - sym_macro_rule = 143, - sym__token_pattern = 144, - sym_token_tree_pattern = 145, - sym_token_binding_pattern = 146, - sym_token_repetition_pattern = 147, - sym_fragment_specifier = 148, - sym_token_tree = 149, - sym_token_repetition = 150, - sym_attribute_item = 151, - sym_inner_attribute_item = 152, - sym_meta_item = 153, - sym_meta_arguments = 154, - sym_mod_item = 155, - sym_foreign_mod_item = 156, - sym_declaration_list = 157, - sym_struct_item = 158, - sym_union_item = 159, - sym_enum_item = 160, - sym_enum_variant_list = 161, - sym_enum_variant = 162, - sym_field_declaration_list = 163, - sym_field_declaration = 164, - sym_ordered_field_declaration_list = 165, - sym_extern_crate_declaration = 166, - sym_const_item = 167, - sym_static_item = 168, - sym_type_item = 169, - sym_function_item = 170, - sym_function_signature_item = 171, - sym_function_modifiers = 172, - sym_where_clause = 173, - sym_where_predicate = 174, - sym_impl_item = 175, - sym_trait_item = 176, - sym_associated_type = 177, - sym_trait_bounds = 178, - sym_higher_ranked_trait_bound = 179, - sym_removed_trait_bound = 180, - sym_type_parameters = 181, - sym_const_parameter = 182, - sym_constrained_type_parameter = 183, - sym_optional_type_parameter = 184, - sym_let_declaration = 185, - sym_use_declaration = 186, - sym__use_clause = 187, - sym_scoped_use_list = 188, - sym_use_list = 189, - sym_use_as_clause = 190, - sym_use_wildcard = 191, - sym_parameters = 192, - sym_self_parameter = 193, - sym_variadic_parameter = 194, - sym_parameter = 195, - sym_extern_modifier = 196, - sym_visibility_modifier = 197, - sym__type = 198, - sym_bracketed_type = 199, - sym_qualified_type = 200, - sym_lifetime = 201, - sym_array_type = 202, - sym_for_lifetimes = 203, - sym_function_type = 204, - sym_tuple_type = 205, - sym_unit_type = 206, - sym_generic_function = 207, - sym_generic_type = 208, - sym_generic_type_with_turbofish = 209, - sym_bounded_type = 210, - sym_type_arguments = 211, - sym_type_binding = 212, - sym_reference_type = 213, - sym_pointer_type = 214, - sym_empty_type = 215, - sym_abstract_type = 216, - sym_dynamic_type = 217, - sym__expression = 218, - sym_macro_invocation = 219, - sym_scoped_identifier = 220, - sym_scoped_type_identifier_in_expression_position = 221, - sym_scoped_type_identifier = 222, - sym_range_expression = 223, - sym_unary_expression = 224, - sym_try_expression = 225, - sym_reference_expression = 226, - sym_binary_expression = 227, - sym_assignment_expression = 228, - sym_compound_assignment_expr = 229, - sym_type_cast_expression = 230, - sym_return_expression = 231, - sym_call_expression = 232, - sym_arguments = 233, - sym_array_expression = 234, - sym_parenthesized_expression = 235, - sym_tuple_expression = 236, - sym_unit_expression = 237, - sym_struct_expression = 238, - sym_field_initializer_list = 239, - sym_shorthand_field_initializer = 240, - sym_field_initializer = 241, - sym_base_field_initializer = 242, - sym_if_expression = 243, - sym_if_let_expression = 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_while_let_expression = 252, - sym_loop_expression = 253, - sym_for_expression = 254, - sym_const_block = 255, - sym_closure_expression = 256, - sym_closure_parameters = 257, - sym_loop_label = 258, - sym_break_expression = 259, - sym_continue_expression = 260, - sym_index_expression = 261, - sym_await_expression = 262, - sym_field_expression = 263, - sym_unsafe_block = 264, - sym_async_block = 265, - sym_block = 266, - sym__pattern = 267, - sym_tuple_pattern = 268, - sym_slice_pattern = 269, - sym_tuple_struct_pattern = 270, - sym_struct_pattern = 271, - sym_field_pattern = 272, - sym_remaining_field_pattern = 273, - sym_mut_pattern = 274, - sym_range_pattern = 275, - sym_ref_pattern = 276, - sym_captured_pattern = 277, - sym_reference_pattern = 278, - sym_or_pattern = 279, - sym__literal = 280, - sym__literal_pattern = 281, - sym_negative_literal = 282, - sym_string_literal = 283, - sym_boolean_literal = 284, - aux_sym_source_file_repeat1 = 285, - aux_sym_macro_definition_repeat1 = 286, - aux_sym_token_tree_pattern_repeat1 = 287, - aux_sym_token_tree_repeat1 = 288, - aux_sym_meta_arguments_repeat1 = 289, - aux_sym_declaration_list_repeat1 = 290, - aux_sym_enum_variant_list_repeat1 = 291, - aux_sym_enum_variant_list_repeat2 = 292, - aux_sym_field_declaration_list_repeat1 = 293, - aux_sym_ordered_field_declaration_list_repeat1 = 294, - aux_sym_function_modifiers_repeat1 = 295, - aux_sym_where_clause_repeat1 = 296, - aux_sym_trait_bounds_repeat1 = 297, - aux_sym_type_parameters_repeat1 = 298, - aux_sym_use_list_repeat1 = 299, - aux_sym_parameters_repeat1 = 300, - aux_sym_for_lifetimes_repeat1 = 301, - aux_sym_tuple_type_repeat1 = 302, - aux_sym_type_arguments_repeat1 = 303, - aux_sym_arguments_repeat1 = 304, - aux_sym_array_expression_repeat1 = 305, - aux_sym_tuple_expression_repeat1 = 306, - aux_sym_field_initializer_list_repeat1 = 307, - aux_sym_match_block_repeat1 = 308, - aux_sym_closure_parameters_repeat1 = 309, - aux_sym_tuple_pattern_repeat1 = 310, - aux_sym_struct_pattern_repeat1 = 311, - aux_sym_string_literal_repeat1 = 312, - alias_sym_field_identifier = 313, - alias_sym_shorthand_field_identifier = 314, - alias_sym_type_identifier = 315, + anon_sym_DASH = 30, + anon_sym_SLASH = 31, + anon_sym_PERCENT = 32, + anon_sym_CARET = 33, + anon_sym_BANG = 34, + anon_sym_AMP = 35, + anon_sym_PIPE = 36, + anon_sym_AMP_AMP = 37, + anon_sym_PIPE_PIPE = 38, + anon_sym_LT_LT = 39, + anon_sym_GT_GT = 40, + anon_sym_PLUS_EQ = 41, + anon_sym_DASH_EQ = 42, + anon_sym_STAR_EQ = 43, + anon_sym_SLASH_EQ = 44, + anon_sym_PERCENT_EQ = 45, + anon_sym_CARET_EQ = 46, + anon_sym_AMP_EQ = 47, + anon_sym_PIPE_EQ = 48, + anon_sym_LT_LT_EQ = 49, + anon_sym_GT_GT_EQ = 50, + anon_sym_EQ = 51, + anon_sym_EQ_EQ = 52, + anon_sym_BANG_EQ = 53, + anon_sym_GT = 54, + anon_sym_LT = 55, + anon_sym_GT_EQ = 56, + anon_sym_LT_EQ = 57, + anon_sym_AT = 58, + anon_sym__ = 59, + anon_sym_DOT = 60, + anon_sym_DOT_DOT = 61, + anon_sym_DOT_DOT_DOT = 62, + anon_sym_DOT_DOT_EQ = 63, + anon_sym_COMMA = 64, + anon_sym_COLON_COLON = 65, + anon_sym_DASH_GT = 66, + anon_sym_POUND = 67, + anon_sym_u8 = 68, + anon_sym_i8 = 69, + anon_sym_u16 = 70, + anon_sym_i16 = 71, + anon_sym_u32 = 72, + anon_sym_i32 = 73, + anon_sym_u64 = 74, + anon_sym_i64 = 75, + anon_sym_u128 = 76, + anon_sym_i128 = 77, + anon_sym_isize = 78, + anon_sym_usize = 79, + anon_sym_f32 = 80, + anon_sym_f64 = 81, + anon_sym_bool = 82, + anon_sym_str = 83, + anon_sym_char = 84, + anon_sym_SQUOTE = 85, + anon_sym_as = 86, + anon_sym_async = 87, + anon_sym_await = 88, + anon_sym_break = 89, + anon_sym_const = 90, + anon_sym_continue = 91, + anon_sym_default = 92, + anon_sym_enum = 93, + anon_sym_fn = 94, + anon_sym_for = 95, + anon_sym_if = 96, + anon_sym_impl = 97, + anon_sym_let = 98, + anon_sym_loop = 99, + anon_sym_match = 100, + anon_sym_mod = 101, + anon_sym_pub = 102, + anon_sym_return = 103, + anon_sym_static = 104, + anon_sym_struct = 105, + anon_sym_trait = 106, + anon_sym_type = 107, + anon_sym_union = 108, + anon_sym_unsafe = 109, + anon_sym_use = 110, + anon_sym_where = 111, + anon_sym_while = 112, + anon_sym_cfg = 113, + anon_sym_cfg_attr = 114, + anon_sym_test = 115, + anon_sym_ignore = 116, + anon_sym_should_panic = 117, + anon_sym_derive = 118, + anon_sym_automatically_derived = 119, + anon_sym_macro_export = 120, + anon_sym_macro_use = 121, + anon_sym_proc_macro = 122, + anon_sym_proc_macro_derive = 123, + anon_sym_proc_macro_attribute = 124, + anon_sym_allow = 125, + anon_sym_warn = 126, + anon_sym_deny = 127, + anon_sym_forbid = 128, + anon_sym_deprecated = 129, + anon_sym_must_use = 130, + anon_sym_link = 131, + anon_sym_link_name = 132, + anon_sym_no_link = 133, + anon_sym_repr = 134, + anon_sym_crate_type = 135, + anon_sym_no_main = 136, + anon_sym_export_name = 137, + anon_sym_link_section = 138, + anon_sym_no_mangle = 139, + anon_sym_used = 140, + anon_sym_crate_name = 141, + anon_sym_inline = 142, + anon_sym_cold = 143, + anon_sym_no_builtins = 144, + anon_sym_target_feature = 145, + anon_sym_track_caller = 146, + anon_sym_doc = 147, + anon_sym_no_std = 148, + anon_sym_no_implicit_prelude = 149, + anon_sym_recursion_limit = 150, + anon_sym_type_length_limit = 151, + anon_sym_panic_handler = 152, + anon_sym_global_allocator = 153, + anon_sym_windows_subsystem = 154, + anon_sym_feature = 155, + anon_sym_non_exhaustive = 156, + anon_sym_extern = 157, + anon_sym_ref = 158, + anon_sym_in = 159, + anon_sym_LT2 = 160, + anon_sym_dyn = 161, + sym_mutable_specifier = 162, + anon_sym_yield = 163, + anon_sym_else = 164, + anon_sym_move = 165, + sym_integer_literal = 166, + aux_sym_string_literal_token1 = 167, + anon_sym_DQUOTE = 168, + sym_char_literal = 169, + sym_escape_sequence = 170, + anon_sym_true = 171, + anon_sym_false = 172, + sym_line_comment = 173, + sym_self = 174, + sym_super = 175, + sym_crate = 176, + sym_metavariable = 177, + sym__string_content = 178, + sym_raw_string_literal = 179, + sym_float_literal = 180, + sym_block_comment = 181, + sym_source_file = 182, + sym__statement = 183, + sym_empty_statement = 184, + sym_expression_statement = 185, + sym_macro_definition = 186, + sym_macro_rule = 187, + sym__token_pattern = 188, + sym_token_tree_pattern = 189, + sym_token_binding_pattern = 190, + sym_token_repetition_pattern = 191, + sym_fragment_specifier = 192, + sym_token_tree = 193, + sym_token_repetition = 194, + sym_non_special_punctuation = 195, + sym_attribute_item = 196, + sym_inner_attribute_item = 197, + sym__attr = 198, + sym_custom_attr = 199, + sym_built_in_attr = 200, + sym__built_in_attr_path = 201, + sym_meta_item = 202, + sym_meta_arguments = 203, + sym_mod_item = 204, + sym_foreign_mod_item = 205, + sym_declaration_list = 206, + sym_struct_item = 207, + sym_union_item = 208, + sym_enum_item = 209, + sym_enum_variant_list = 210, + sym_enum_variant = 211, + sym_field_declaration_list = 212, + sym_field_declaration = 213, + sym_ordered_field_declaration_list = 214, + sym_extern_crate_declaration = 215, + sym_const_item = 216, + sym_static_item = 217, + sym_type_item = 218, + sym_function_item = 219, + sym_function_signature_item = 220, + sym_function_modifiers = 221, + sym_where_clause = 222, + sym_where_predicate = 223, + sym_impl_item = 224, + sym_trait_item = 225, + sym_associated_type = 226, + sym_trait_bounds = 227, + sym_higher_ranked_trait_bound = 228, + sym_removed_trait_bound = 229, + sym_type_parameters = 230, + sym_const_parameter = 231, + sym_constrained_type_parameter = 232, + sym_optional_type_parameter = 233, + sym_let_declaration = 234, + sym_use_declaration = 235, + sym__use_clause = 236, + sym_scoped_use_list = 237, + sym_use_list = 238, + sym_use_as_clause = 239, + sym_use_wildcard = 240, + sym_parameters = 241, + sym_self_parameter = 242, + sym_variadic_parameter = 243, + sym_parameter = 244, + sym_extern_modifier = 245, + sym_visibility_modifier = 246, + sym__type = 247, + sym_bracketed_type = 248, + sym_qualified_type = 249, + sym_lifetime = 250, + sym_array_type = 251, + sym_for_lifetimes = 252, + sym_function_type = 253, + sym_tuple_type = 254, + sym_unit_type = 255, + sym_generic_function = 256, + sym_generic_type = 257, + sym_generic_type_with_turbofish = 258, + sym_bounded_type = 259, + sym_type_arguments = 260, + sym_type_binding = 261, + sym_reference_type = 262, + sym_pointer_type = 263, + sym_empty_type = 264, + sym_abstract_type = 265, + sym_dynamic_type = 266, + sym__expression_except_range = 267, + sym__expression = 268, + sym_macro_invocation = 269, + sym_delim_token_tree = 270, + sym__delim_tokens = 271, + sym__non_delim_token = 272, + sym_scoped_identifier = 273, + sym_scoped_type_identifier_in_expression_position = 274, + sym_scoped_type_identifier = 275, + sym_range_expression = 276, + sym_unary_expression = 277, + sym_try_expression = 278, + sym_reference_expression = 279, + sym_binary_expression = 280, + sym_assignment_expression = 281, + sym_compound_assignment_expr = 282, + sym_type_cast_expression = 283, + sym_return_expression = 284, + sym_yield_expression = 285, + sym_call_expression = 286, + sym_arguments = 287, + sym_array_expression = 288, + sym_parenthesized_expression = 289, + sym_tuple_expression = 290, + sym_unit_expression = 291, + sym_struct_expression = 292, + sym_field_initializer_list = 293, + sym_shorthand_field_initializer = 294, + sym_field_initializer = 295, + sym_base_field_initializer = 296, + sym_if_expression = 297, + sym_if_let_expression = 298, + sym_else_clause = 299, + sym_match_expression = 300, + sym_match_block = 301, + sym_match_arm = 302, + sym_last_match_arm = 303, + sym_match_pattern = 304, + sym_while_expression = 305, + sym_while_let_expression = 306, + sym_loop_expression = 307, + sym_for_expression = 308, + sym_const_block = 309, + sym_closure_expression = 310, + sym_closure_parameters = 311, + sym_loop_label = 312, + sym_break_expression = 313, + sym_continue_expression = 314, + sym_index_expression = 315, + sym_await_expression = 316, + sym_field_expression = 317, + sym_unsafe_block = 318, + sym_async_block = 319, + sym_block = 320, + sym__pattern = 321, + sym_tuple_pattern = 322, + sym_slice_pattern = 323, + sym_tuple_struct_pattern = 324, + sym_struct_pattern = 325, + sym_field_pattern = 326, + sym_remaining_field_pattern = 327, + sym_mut_pattern = 328, + sym_range_pattern = 329, + sym_ref_pattern = 330, + sym_captured_pattern = 331, + sym_reference_pattern = 332, + sym_or_pattern = 333, + sym__literal = 334, + sym__literal_pattern = 335, + sym_negative_literal = 336, + sym_string_literal = 337, + sym_boolean_literal = 338, + aux_sym_source_file_repeat1 = 339, + aux_sym_macro_definition_repeat1 = 340, + aux_sym_token_tree_pattern_repeat1 = 341, + aux_sym_token_tree_repeat1 = 342, + aux_sym_meta_arguments_repeat1 = 343, + aux_sym_declaration_list_repeat1 = 344, + aux_sym_enum_variant_list_repeat1 = 345, + aux_sym_enum_variant_list_repeat2 = 346, + aux_sym_field_declaration_list_repeat1 = 347, + aux_sym_ordered_field_declaration_list_repeat1 = 348, + aux_sym_function_modifiers_repeat1 = 349, + aux_sym_where_clause_repeat1 = 350, + aux_sym_trait_bounds_repeat1 = 351, + aux_sym_type_parameters_repeat1 = 352, + aux_sym_use_list_repeat1 = 353, + aux_sym_parameters_repeat1 = 354, + aux_sym_for_lifetimes_repeat1 = 355, + aux_sym_tuple_type_repeat1 = 356, + aux_sym_type_arguments_repeat1 = 357, + aux_sym_delim_token_tree_repeat1 = 358, + aux_sym_arguments_repeat1 = 359, + aux_sym_array_expression_repeat1 = 360, + aux_sym_tuple_expression_repeat1 = 361, + aux_sym_field_initializer_list_repeat1 = 362, + aux_sym_match_block_repeat1 = 363, + aux_sym_closure_parameters_repeat1 = 364, + aux_sym_tuple_pattern_repeat1 = 365, + aux_sym_struct_pattern_repeat1 = 366, + aux_sym_string_literal_repeat1 = 367, + alias_sym_field_identifier = 368, + alias_sym_shorthand_field_identifier = 369, + alias_sym_type_identifier = 370, }; static const char * const ts_symbol_names[] = { @@ -365,7 +420,44 @@ static const char * const ts_symbol_names[] = { [anon_sym_tt] = "tt", [anon_sym_ty] = "ty", [anon_sym_vis] = "vis", - [sym_non_special_punctuation] = "non_special_punctuation", + [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_CARET] = "^", + [anon_sym_BANG] = "!", + [anon_sym_AMP] = "&", + [anon_sym_PIPE] = "|", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_EQ] = "=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_GT] = ">", + [anon_sym_LT] = "<", + [anon_sym_GT_EQ] = ">=", + [anon_sym_LT_EQ] = "<=", + [anon_sym_AT] = "@", + [anon_sym__] = "_", + [anon_sym_DOT] = ".", + [anon_sym_DOT_DOT] = "..", + [anon_sym_DOT_DOT_DOT] = "...", + [anon_sym_DOT_DOT_EQ] = "..=", + [anon_sym_COMMA] = ",", + [anon_sym_COLON_COLON] = "::", + [anon_sym_DASH_GT] = "->", + [anon_sym_POUND] = "#", [anon_sym_u8] = "primitive_type", [anon_sym_i8] = "primitive_type", [anon_sym_u16] = "primitive_type", @@ -411,52 +503,59 @@ static const char * const ts_symbol_names[] = { [anon_sym_use] = "use", [anon_sym_where] = "where", [anon_sym_while] = "while", - [anon_sym_POUND] = "#", - [anon_sym_BANG] = "!", - [anon_sym_EQ] = "=", - [anon_sym_COMMA] = ",", + [anon_sym_cfg] = "identifier", + [anon_sym_cfg_attr] = "identifier", + [anon_sym_test] = "identifier", + [anon_sym_ignore] = "identifier", + [anon_sym_should_panic] = "identifier", + [anon_sym_derive] = "identifier", + [anon_sym_automatically_derived] = "identifier", + [anon_sym_macro_export] = "identifier", + [anon_sym_macro_use] = "identifier", + [anon_sym_proc_macro] = "identifier", + [anon_sym_proc_macro_derive] = "identifier", + [anon_sym_proc_macro_attribute] = "identifier", + [anon_sym_allow] = "identifier", + [anon_sym_warn] = "identifier", + [anon_sym_deny] = "identifier", + [anon_sym_forbid] = "identifier", + [anon_sym_deprecated] = "identifier", + [anon_sym_must_use] = "identifier", + [anon_sym_link] = "identifier", + [anon_sym_link_name] = "identifier", + [anon_sym_no_link] = "identifier", + [anon_sym_repr] = "identifier", + [anon_sym_crate_type] = "identifier", + [anon_sym_no_main] = "identifier", + [anon_sym_export_name] = "identifier", + [anon_sym_link_section] = "identifier", + [anon_sym_no_mangle] = "identifier", + [anon_sym_used] = "identifier", + [anon_sym_crate_name] = "identifier", + [anon_sym_inline] = "identifier", + [anon_sym_cold] = "identifier", + [anon_sym_no_builtins] = "identifier", + [anon_sym_target_feature] = "identifier", + [anon_sym_track_caller] = "identifier", + [anon_sym_doc] = "identifier", + [anon_sym_no_std] = "identifier", + [anon_sym_no_implicit_prelude] = "identifier", + [anon_sym_recursion_limit] = "identifier", + [anon_sym_type_length_limit] = "identifier", + [anon_sym_panic_handler] = "identifier", + [anon_sym_global_allocator] = "identifier", + [anon_sym_windows_subsystem] = "identifier", + [anon_sym_feature] = "identifier", + [anon_sym_non_exhaustive] = "identifier", [anon_sym_extern] = "extern", [anon_sym_ref] = "ref", - [anon_sym_DASH_GT] = "->", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_COLON_COLON] = "::", - [anon_sym__] = "_", - [anon_sym_AMP] = "&", - [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_in] = "in", [anon_sym_LT2] = "<", [anon_sym_dyn] = "dyn", [sym_mutable_specifier] = "mutable_specifier", - [anon_sym_DOT_DOT] = "..", - [anon_sym_DOT_DOT_EQ] = "..=", - [anon_sym_DASH] = "-", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_PIPE] = "|", - [anon_sym_CARET] = "^", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_LT_EQ] = "<=", - [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] = "-=", - [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_yield] = "yield", [anon_sym_else] = "else", [anon_sym_move] = "move", - [anon_sym_DOT] = ".", - [anon_sym_AT] = "@", [sym_integer_literal] = "integer_literal", [aux_sym_string_literal_token1] = "\"", [anon_sym_DQUOTE] = "\"", @@ -476,7 +575,7 @@ static const char * const ts_symbol_names[] = { [sym_source_file] = "source_file", [sym__statement] = "_statement", [sym_empty_statement] = "empty_statement", - [sym__expression_statement] = "_expression_statement", + [sym_expression_statement] = "expression_statement", [sym_macro_definition] = "macro_definition", [sym_macro_rule] = "macro_rule", [sym__token_pattern] = "_token_pattern", @@ -486,8 +585,13 @@ static const char * const ts_symbol_names[] = { [sym_fragment_specifier] = "fragment_specifier", [sym_token_tree] = "token_tree", [sym_token_repetition] = "token_repetition", + [sym_non_special_punctuation] = "non_special_punctuation", [sym_attribute_item] = "attribute_item", [sym_inner_attribute_item] = "inner_attribute_item", + [sym__attr] = "_attr", + [sym_custom_attr] = "attr_item", + [sym_built_in_attr] = "meta_item", + [sym__built_in_attr_path] = "_built_in_attr_path", [sym_meta_item] = "meta_item", [sym_meta_arguments] = "meta_arguments", [sym_mod_item] = "mod_item", @@ -553,8 +657,12 @@ static const char * const ts_symbol_names[] = { [sym_empty_type] = "empty_type", [sym_abstract_type] = "abstract_type", [sym_dynamic_type] = "dynamic_type", + [sym__expression_except_range] = "_expression_except_range", [sym__expression] = "_expression", [sym_macro_invocation] = "macro_invocation", + [sym_delim_token_tree] = "token_tree", + [sym__delim_tokens] = "_delim_tokens", + [sym__non_delim_token] = "_non_delim_token", [sym_scoped_identifier] = "scoped_identifier", [sym_scoped_type_identifier_in_expression_position] = "scoped_type_identifier", [sym_scoped_type_identifier] = "scoped_type_identifier", @@ -567,6 +675,7 @@ static const char * const ts_symbol_names[] = { [sym_compound_assignment_expr] = "compound_assignment_expr", [sym_type_cast_expression] = "type_cast_expression", [sym_return_expression] = "return_expression", + [sym_yield_expression] = "yield_expression", [sym_call_expression] = "call_expression", [sym_arguments] = "arguments", [sym_array_expression] = "array_expression", @@ -639,6 +748,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_for_lifetimes_repeat1] = "for_lifetimes_repeat1", [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", + [aux_sym_delim_token_tree_repeat1] = "delim_token_tree_repeat1", [aux_sym_arguments_repeat1] = "arguments_repeat1", [aux_sym_array_expression_repeat1] = "array_expression_repeat1", [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", @@ -684,7 +794,44 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_tt] = anon_sym_tt, [anon_sym_ty] = anon_sym_ty, [anon_sym_vis] = anon_sym_vis, - [sym_non_special_punctuation] = sym_non_special_punctuation, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_AT] = anon_sym_AT, + [anon_sym__] = anon_sym__, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, + [anon_sym_DOT_DOT_EQ] = anon_sym_DOT_DOT_EQ, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_POUND] = anon_sym_POUND, [anon_sym_u8] = anon_sym_u8, [anon_sym_i8] = anon_sym_u8, [anon_sym_u16] = anon_sym_u8, @@ -730,52 +877,59 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_use] = anon_sym_use, [anon_sym_where] = anon_sym_where, [anon_sym_while] = anon_sym_while, - [anon_sym_POUND] = anon_sym_POUND, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_cfg] = sym_identifier, + [anon_sym_cfg_attr] = sym_identifier, + [anon_sym_test] = sym_identifier, + [anon_sym_ignore] = sym_identifier, + [anon_sym_should_panic] = sym_identifier, + [anon_sym_derive] = sym_identifier, + [anon_sym_automatically_derived] = sym_identifier, + [anon_sym_macro_export] = sym_identifier, + [anon_sym_macro_use] = sym_identifier, + [anon_sym_proc_macro] = sym_identifier, + [anon_sym_proc_macro_derive] = sym_identifier, + [anon_sym_proc_macro_attribute] = sym_identifier, + [anon_sym_allow] = sym_identifier, + [anon_sym_warn] = sym_identifier, + [anon_sym_deny] = sym_identifier, + [anon_sym_forbid] = sym_identifier, + [anon_sym_deprecated] = sym_identifier, + [anon_sym_must_use] = sym_identifier, + [anon_sym_link] = sym_identifier, + [anon_sym_link_name] = sym_identifier, + [anon_sym_no_link] = sym_identifier, + [anon_sym_repr] = sym_identifier, + [anon_sym_crate_type] = sym_identifier, + [anon_sym_no_main] = sym_identifier, + [anon_sym_export_name] = sym_identifier, + [anon_sym_link_section] = sym_identifier, + [anon_sym_no_mangle] = sym_identifier, + [anon_sym_used] = sym_identifier, + [anon_sym_crate_name] = sym_identifier, + [anon_sym_inline] = sym_identifier, + [anon_sym_cold] = sym_identifier, + [anon_sym_no_builtins] = sym_identifier, + [anon_sym_target_feature] = sym_identifier, + [anon_sym_track_caller] = sym_identifier, + [anon_sym_doc] = sym_identifier, + [anon_sym_no_std] = sym_identifier, + [anon_sym_no_implicit_prelude] = sym_identifier, + [anon_sym_recursion_limit] = sym_identifier, + [anon_sym_type_length_limit] = sym_identifier, + [anon_sym_panic_handler] = sym_identifier, + [anon_sym_global_allocator] = sym_identifier, + [anon_sym_windows_subsystem] = sym_identifier, + [anon_sym_feature] = sym_identifier, + [anon_sym_non_exhaustive] = sym_identifier, [anon_sym_extern] = anon_sym_extern, [anon_sym_ref] = anon_sym_ref, - [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, - [anon_sym__] = anon_sym__, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_in] = anon_sym_in, [anon_sym_LT2] = anon_sym_LT, [anon_sym_dyn] = anon_sym_dyn, [sym_mutable_specifier] = sym_mutable_specifier, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_DOT_DOT_EQ] = anon_sym_DOT_DOT_EQ, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [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, - [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, - [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, - [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, - [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, - [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, - [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, - [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, - [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_yield] = anon_sym_yield, [anon_sym_else] = anon_sym_else, [anon_sym_move] = anon_sym_move, - [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_AT] = anon_sym_AT, [sym_integer_literal] = sym_integer_literal, [aux_sym_string_literal_token1] = anon_sym_DQUOTE, [anon_sym_DQUOTE] = anon_sym_DQUOTE, @@ -795,7 +949,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_source_file] = sym_source_file, [sym__statement] = sym__statement, [sym_empty_statement] = sym_empty_statement, - [sym__expression_statement] = sym__expression_statement, + [sym_expression_statement] = sym_expression_statement, [sym_macro_definition] = sym_macro_definition, [sym_macro_rule] = sym_macro_rule, [sym__token_pattern] = sym__token_pattern, @@ -805,8 +959,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_fragment_specifier] = sym_fragment_specifier, [sym_token_tree] = sym_token_tree, [sym_token_repetition] = sym_token_repetition, + [sym_non_special_punctuation] = sym_non_special_punctuation, [sym_attribute_item] = sym_attribute_item, [sym_inner_attribute_item] = sym_inner_attribute_item, + [sym__attr] = sym__attr, + [sym_custom_attr] = sym_custom_attr, + [sym_built_in_attr] = sym_meta_item, + [sym__built_in_attr_path] = sym__built_in_attr_path, [sym_meta_item] = sym_meta_item, [sym_meta_arguments] = sym_meta_arguments, [sym_mod_item] = sym_mod_item, @@ -872,8 +1031,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_empty_type] = sym_empty_type, [sym_abstract_type] = sym_abstract_type, [sym_dynamic_type] = sym_dynamic_type, + [sym__expression_except_range] = sym__expression_except_range, [sym__expression] = sym__expression, [sym_macro_invocation] = sym_macro_invocation, + [sym_delim_token_tree] = sym_token_tree, + [sym__delim_tokens] = sym__delim_tokens, + [sym__non_delim_token] = sym__non_delim_token, [sym_scoped_identifier] = sym_scoped_identifier, [sym_scoped_type_identifier_in_expression_position] = sym_scoped_type_identifier, [sym_scoped_type_identifier] = sym_scoped_type_identifier, @@ -886,6 +1049,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_compound_assignment_expr] = sym_compound_assignment_expr, [sym_type_cast_expression] = sym_type_cast_expression, [sym_return_expression] = sym_return_expression, + [sym_yield_expression] = sym_yield_expression, [sym_call_expression] = sym_call_expression, [sym_arguments] = sym_arguments, [sym_array_expression] = sym_array_expression, @@ -958,6 +1122,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_for_lifetimes_repeat1] = aux_sym_for_lifetimes_repeat1, [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, + [aux_sym_delim_token_tree_repeat1] = aux_sym_delim_token_tree_repeat1, [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, [aux_sym_array_expression_repeat1] = aux_sym_array_expression_repeat1, [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, @@ -1093,9 +1258,157 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_non_special_punctuation] = { + [anon_sym_DASH] = { .visible = true, - .named = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym__] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND] = { + .visible = true, + .named = false, }, [anon_sym_u8] = { .visible = true, @@ -1277,187 +1590,215 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_POUND] = { + [anon_sym_cfg] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_BANG] = { + [anon_sym_cfg_attr] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_EQ] = { + [anon_sym_test] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_COMMA] = { + [anon_sym_ignore] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_extern] = { + [anon_sym_should_panic] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_ref] = { + [anon_sym_derive] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_DASH_GT] = { + [anon_sym_automatically_derived] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_LT] = { + [anon_sym_macro_export] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_GT] = { + [anon_sym_macro_use] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_COLON_COLON] = { + [anon_sym_proc_macro] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym__] = { + [anon_sym_proc_macro_derive] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_AMP] = { + [anon_sym_proc_macro_attribute] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_DOT_DOT_DOT] = { + [anon_sym_allow] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_in] = { + [anon_sym_warn] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_LT2] = { + [anon_sym_deny] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_dyn] = { + [anon_sym_forbid] = { .visible = true, - .named = false, + .named = true, }, - [sym_mutable_specifier] = { + [anon_sym_deprecated] = { .visible = true, .named = true, }, - [anon_sym_DOT_DOT] = { + [anon_sym_must_use] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_DOT_DOT_EQ] = { + [anon_sym_link] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_DASH] = { + [anon_sym_link_name] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_AMP_AMP] = { + [anon_sym_no_link] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_PIPE_PIPE] = { + [anon_sym_repr] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_PIPE] = { + [anon_sym_crate_type] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_CARET] = { + [anon_sym_no_main] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_EQ_EQ] = { + [anon_sym_export_name] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_BANG_EQ] = { + [anon_sym_link_section] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_LT_EQ] = { + [anon_sym_no_mangle] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_GT_EQ] = { + [anon_sym_used] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_LT_LT] = { + [anon_sym_crate_name] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_GT_GT] = { + [anon_sym_inline] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_SLASH] = { + [anon_sym_cold] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_PERCENT] = { + [anon_sym_no_builtins] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_PLUS_EQ] = { + [anon_sym_target_feature] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_DASH_EQ] = { + [anon_sym_track_caller] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_STAR_EQ] = { + [anon_sym_doc] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_SLASH_EQ] = { + [anon_sym_no_std] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_PERCENT_EQ] = { + [anon_sym_no_implicit_prelude] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_AMP_EQ] = { + [anon_sym_recursion_limit] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_PIPE_EQ] = { + [anon_sym_type_length_limit] = { + .visible = true, + .named = true, + }, + [anon_sym_panic_handler] = { + .visible = true, + .named = true, + }, + [anon_sym_global_allocator] = { + .visible = true, + .named = true, + }, + [anon_sym_windows_subsystem] = { + .visible = true, + .named = true, + }, + [anon_sym_feature] = { + .visible = true, + .named = true, + }, + [anon_sym_non_exhaustive] = { + .visible = true, + .named = true, + }, + [anon_sym_extern] = { .visible = true, .named = false, }, - [anon_sym_CARET_EQ] = { + [anon_sym_ref] = { .visible = true, .named = false, }, - [anon_sym_LT_LT_EQ] = { + [anon_sym_in] = { .visible = true, .named = false, }, - [anon_sym_GT_GT_EQ] = { + [anon_sym_LT2] = { .visible = true, .named = false, }, - [anon_sym_else] = { + [anon_sym_dyn] = { .visible = true, .named = false, }, - [anon_sym_move] = { + [sym_mutable_specifier] = { + .visible = true, + .named = true, + }, + [anon_sym_yield] = { .visible = true, .named = false, }, - [anon_sym_DOT] = { + [anon_sym_else] = { .visible = true, .named = false, }, - [anon_sym_AT] = { + [anon_sym_move] = { .visible = true, .named = false, }, @@ -1537,8 +1878,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__expression_statement] = { - .visible = false, + [sym_expression_statement] = { + .visible = true, .named = true, }, [sym_macro_definition] = { @@ -1577,6 +1918,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_non_special_punctuation] = { + .visible = true, + .named = true, + }, [sym_attribute_item] = { .visible = true, .named = true, @@ -1585,6 +1930,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__attr] = { + .visible = false, + .named = true, + }, + [sym_custom_attr] = { + .visible = true, + .named = true, + }, + [sym_built_in_attr] = { + .visible = true, + .named = true, + }, + [sym__built_in_attr_path] = { + .visible = false, + .named = true, + }, [sym_meta_item] = { .visible = true, .named = true, @@ -1846,6 +2207,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__expression_except_range] = { + .visible = false, + .named = true, + }, [sym__expression] = { .visible = false, .named = true, @@ -1855,6 +2220,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_delim_token_tree] = { + .visible = true, + .named = true, + }, + [sym__delim_tokens] = { + .visible = false, + .named = true, + }, + [sym__non_delim_token] = { + .visible = false, + .named = true, + }, [sym_scoped_identifier] = { .visible = true, .named = true, @@ -1903,6 +2280,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_yield_expression] = { + .visible = true, + .named = true, + }, [sym_call_expression] = { .visible = true, .named = true, @@ -2194,6 +2575,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_delim_token_tree_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_arguments_repeat1] = { .visible = false, .named = false, @@ -2316,232 +2701,243 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [8] = {.index = 3, .length = 2}, [9] = {.index = 5, .length = 2}, [10] = {.index = 7, .length = 2}, - [11] = {.index = 9, .length = 2}, - [12] = {.index = 9, .length = 2}, - [13] = {.index = 11, .length = 1}, - [14] = {.index = 12, .length = 2}, - [15] = {.index = 14, .length = 2}, - [16] = {.index = 14, .length = 2}, - [17] = {.index = 16, .length = 2}, - [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 1}, - [20] = {.index = 19, .length = 1}, - [21] = {.index = 20, .length = 1}, - [22] = {.index = 21, .length = 2}, - [23] = {.index = 23, .length = 2}, - [24] = {.index = 21, .length = 2}, - [25] = {.index = 25, .length = 1}, - [26] = {.index = 26, .length = 2}, - [27] = {.index = 12, .length = 2}, - [28] = {.index = 28, .length = 1}, + [11] = {.index = 9, .length = 1}, + [12] = {.index = 10, .length = 2}, + [13] = {.index = 10, .length = 2}, + [14] = {.index = 12, .length = 1}, + [15] = {.index = 13, .length = 1}, + [16] = {.index = 14, .length = 1}, + [17] = {.index = 14, .length = 1}, + [18] = {.index = 15, .length = 2}, + [19] = {.index = 15, .length = 2}, + [20] = {.index = 17, .length = 2}, + [21] = {.index = 17, .length = 2}, + [22] = {.index = 19, .length = 1}, + [23] = {.index = 20, .length = 2}, + [24] = {.index = 22, .length = 2}, + [25] = {.index = 24, .length = 2}, + [26] = {.index = 26, .length = 1}, + [27] = {.index = 27, .length = 2}, + [28] = {.index = 20, .length = 2}, [29] = {.index = 29, .length = 1}, - [30] = {.index = 30, .length = 2}, - [31] = {.index = 32, .length = 1}, + [30] = {.index = 30, .length = 1}, + [31] = {.index = 31, .length = 2}, [32] = {.index = 33, .length = 2}, - [33] = {.index = 11, .length = 1}, - [34] = {.index = 9, .length = 2}, - [35] = {.index = 9, .length = 2}, + [33] = {.index = 19, .length = 1}, + [34] = {.index = 17, .length = 2}, + [35] = {.index = 17, .length = 2}, [36] = {.index = 35, .length = 2}, [37] = {.index = 37, .length = 2}, [38] = {.index = 39, .length = 1}, - [39] = {.index = 9, .length = 2}, - [40] = {.index = 9, .length = 2}, + [39] = {.index = 17, .length = 2}, + [40] = {.index = 17, .length = 2}, [41] = {.index = 40, .length = 3}, [42] = {.index = 43, .length = 2}, [43] = {.index = 45, .length = 2}, - [44] = {.index = 47, .length = 2}, + [44] = {.index = 45, .length = 2}, [45] = {.index = 47, .length = 2}, [46] = {.index = 37, .length = 2}, [47] = {.index = 1, .length = 1}, - [48] = {.index = 49, .length = 1}, - [49] = {.index = 50, .length = 2}, - [50] = {.index = 52, .length = 3}, - [51] = {.index = 55, .length = 2}, - [52] = {.index = 57, .length = 3}, - [54] = {.index = 60, .length = 1}, - [55] = {.index = 60, .length = 1}, - [56] = {.index = 49, .length = 1}, - [58] = {.index = 61, .length = 3}, - [59] = {.index = 64, .length = 1}, - [60] = {.index = 65, .length = 1}, - [62] = {.index = 66, .length = 2}, - [63] = {.index = 66, .length = 2}, - [64] = {.index = 68, .length = 1}, - [65] = {.index = 69, .length = 3}, - [66] = {.index = 72, .length = 2}, - [67] = {.index = 74, .length = 2}, - [68] = {.index = 74, .length = 2}, - [69] = {.index = 76, .length = 1}, - [70] = {.index = 77, .length = 2}, - [71] = {.index = 79, .length = 3}, - [72] = {.index = 82, .length = 2}, - [73] = {.index = 84, .length = 2}, - [74] = {.index = 86, .length = 2}, - [75] = {.index = 88, .length = 2}, - [76] = {.index = 90, .length = 2}, - [77] = {.index = 88, .length = 2}, - [78] = {.index = 90, .length = 2}, - [79] = {.index = 92, .length = 1}, - [80] = {.index = 92, .length = 1}, - [81] = {.index = 93, .length = 1}, - [82] = {.index = 94, .length = 2}, - [83] = {.index = 96, .length = 2}, - [84] = {.index = 96, .length = 2}, - [85] = {.index = 86, .length = 2}, - [86] = {.index = 93, .length = 1}, - [87] = {.index = 98, .length = 1}, - [88] = {.index = 99, .length = 3}, - [89] = {.index = 102, .length = 1}, - [90] = {.index = 103, .length = 1}, - [91] = {.index = 104, .length = 2}, - [92] = {.index = 106, .length = 3}, - [93] = {.index = 109, .length = 3}, - [94] = {.index = 112, .length = 4}, - [95] = {.index = 116, .length = 3}, - [96] = {.index = 1, .length = 1}, - [97] = {.index = 119, .length = 3}, - [98] = {.index = 122, .length = 2}, - [99] = {.index = 124, .length = 2}, - [100] = {.index = 124, .length = 2}, - [101] = {.index = 126, .length = 1}, - [102] = {.index = 127, .length = 3}, - [103] = {.index = 130, .length = 3}, - [104] = {.index = 133, .length = 3}, - [105] = {.index = 136, .length = 1}, - [106] = {.index = 127, .length = 3}, - [107] = {.index = 130, .length = 3}, - [108] = {.index = 137, .length = 2}, - [109] = {.index = 139, .length = 2}, - [111] = {.index = 141, .length = 3}, - [112] = {.index = 144, .length = 4}, - [113] = {.index = 104, .length = 2}, - [114] = {.index = 148, .length = 3}, - [115] = {.index = 151, .length = 2}, - [116] = {.index = 153, .length = 2}, - [117] = {.index = 155, .length = 3}, - [118] = {.index = 158, .length = 3}, - [119] = {.index = 32, .length = 1}, - [120] = {.index = 137, .length = 2}, - [121] = {.index = 161, .length = 3}, - [122] = {.index = 164, .length = 2}, - [123] = {.index = 166, .length = 2}, - [124] = {.index = 168, .length = 3}, - [125] = {.index = 171, .length = 2}, - [126] = {.index = 173, .length = 2}, - [127] = {.index = 175, .length = 1}, - [128] = {.index = 176, .length = 2}, - [129] = {.index = 178, .length = 1}, - [130] = {.index = 164, .length = 2}, - [131] = {.index = 179, .length = 2}, - [132] = {.index = 181, .length = 4}, - [133] = {.index = 185, .length = 3}, - [134] = {.index = 188, .length = 4}, - [135] = {.index = 93, .length = 1}, - [136] = {.index = 192, .length = 2}, - [137] = {.index = 194, .length = 2}, - [138] = {.index = 196, .length = 3}, - [139] = {.index = 199, .length = 2}, - [140] = {.index = 201, .length = 3}, - [141] = {.index = 204, .length = 2}, - [142] = {.index = 206, .length = 4}, - [143] = {.index = 206, .length = 4}, - [144] = {.index = 210, .length = 3}, - [145] = {.index = 210, .length = 3}, - [146] = {.index = 201, .length = 3}, - [147] = {.index = 213, .length = 2}, - [148] = {.index = 215, .length = 2}, - [149] = {.index = 217, .length = 2}, - [150] = {.index = 219, .length = 1}, - [151] = {.index = 220, .length = 2}, - [152] = {.index = 222, .length = 2}, - [153] = {.index = 224, .length = 2}, - [154] = {.index = 194, .length = 2}, - [155] = {.index = 226, .length = 4}, - [156] = {.index = 230, .length = 3}, - [157] = {.index = 233, .length = 3}, - [158] = {.index = 236, .length = 3}, - [159] = {.index = 233, .length = 3}, - [160] = {.index = 239, .length = 3}, - [161] = {.index = 242, .length = 3}, - [162] = {.index = 245, .length = 4}, - [163] = {.index = 249, .length = 3}, - [164] = {.index = 252, .length = 2}, - [165] = {.index = 254, .length = 2}, - [166] = {.index = 256, .length = 3}, - [167] = {.index = 259, .length = 4}, - [168] = {.index = 263, .length = 3}, - [169] = {.index = 220, .length = 2}, - [170] = {.index = 266, .length = 2}, - [171] = {.index = 268, .length = 3}, - [172] = {.index = 271, .length = 3}, - [173] = {.index = 274, .length = 2}, - [174] = {.index = 276, .length = 3}, - [175] = {.index = 194, .length = 2}, - [176] = {.index = 279, .length = 3}, - [177] = {.index = 282, .length = 3}, - [178] = {.index = 254, .length = 2}, - [179] = {.index = 285, .length = 4}, - [180] = {.index = 289, .length = 5}, - [181] = {.index = 294, .length = 4}, - [182] = {.index = 298, .length = 2}, - [183] = {.index = 300, .length = 4}, - [184] = {.index = 304, .length = 4}, - [185] = {.index = 304, .length = 4}, - [186] = {.index = 308, .length = 2}, - [187] = {.index = 310, .length = 3}, - [188] = {.index = 313, .length = 2}, - [189] = {.index = 315, .length = 2}, - [190] = {.index = 104, .length = 2}, - [191] = {.index = 317, .length = 3}, - [192] = {.index = 320, .length = 4}, - [193] = {.index = 320, .length = 4}, - [194] = {.index = 317, .length = 3}, - [195] = {.index = 324, .length = 4}, - [196] = {.index = 328, .length = 4}, - [197] = {.index = 332, .length = 3}, - [198] = {.index = 335, .length = 4}, - [199] = {.index = 339, .length = 3}, - [200] = {.index = 342, .length = 3}, - [201] = {.index = 345, .length = 3}, - [202] = {.index = 348, .length = 4}, - [203] = {.index = 352, .length = 2}, - [204] = {.index = 354, .length = 3}, - [205] = {.index = 357, .length = 4}, - [206] = {.index = 361, .length = 3}, - [207] = {.index = 364, .length = 3}, - [208] = {.index = 367, .length = 3}, - [209] = {.index = 370, .length = 5}, - [210] = {.index = 375, .length = 2}, - [211] = {.index = 377, .length = 3}, - [212] = {.index = 380, .length = 3}, - [213] = {.index = 383, .length = 2}, - [214] = {.index = 385, .length = 4}, - [215] = {.index = 385, .length = 4}, - [216] = {.index = 389, .length = 4}, - [217] = {.index = 393, .length = 5}, - [218] = {.index = 398, .length = 4}, - [219] = {.index = 402, .length = 2}, - [220] = {.index = 404, .length = 4}, - [221] = {.index = 408, .length = 4}, - [222] = {.index = 412, .length = 3}, - [223] = {.index = 415, .length = 4}, - [224] = {.index = 419, .length = 3}, - [225] = {.index = 422, .length = 3}, - [226] = {.index = 425, .length = 5}, - [227] = {.index = 430, .length = 4}, - [228] = {.index = 434, .length = 5}, - [229] = {.index = 439, .length = 4}, - [230] = {.index = 443, .length = 3}, - [231] = {.index = 446, .length = 5}, + [49] = {.index = 49, .length = 2}, + [50] = {.index = 51, .length = 1}, + [51] = {.index = 51, .length = 1}, + [52] = {.index = 52, .length = 1}, + [54] = {.index = 49, .length = 2}, + [55] = {.index = 53, .length = 1}, + [56] = {.index = 54, .length = 1}, + [57] = {.index = 55, .length = 1}, + [58] = {.index = 56, .length = 2}, + [59] = {.index = 58, .length = 2}, + [60] = {.index = 58, .length = 2}, + [61] = {.index = 60, .length = 1}, + [62] = {.index = 60, .length = 1}, + [63] = {.index = 52, .length = 1}, + [64] = {.index = 61, .length = 2}, + [65] = {.index = 63, .length = 3}, + [66] = {.index = 66, .length = 2}, + [67] = {.index = 68, .length = 3}, + [68] = {.index = 71, .length = 3}, + [70] = {.index = 74, .length = 2}, + [71] = {.index = 74, .length = 2}, + [72] = {.index = 76, .length = 2}, + [73] = {.index = 78, .length = 3}, + [74] = {.index = 81, .length = 2}, + [75] = {.index = 83, .length = 1}, + [76] = {.index = 84, .length = 2}, + [77] = {.index = 86, .length = 3}, + [78] = {.index = 89, .length = 2}, + [79] = {.index = 91, .length = 2}, + [80] = {.index = 93, .length = 2}, + [81] = {.index = 95, .length = 2}, + [82] = {.index = 97, .length = 2}, + [83] = {.index = 95, .length = 2}, + [84] = {.index = 97, .length = 2}, + [85] = {.index = 99, .length = 1}, + [86] = {.index = 93, .length = 2}, + [87] = {.index = 99, .length = 1}, + [88] = {.index = 100, .length = 1}, + [89] = {.index = 101, .length = 3}, + [90] = {.index = 104, .length = 1}, + [91] = {.index = 105, .length = 1}, + [92] = {.index = 106, .length = 2}, + [93] = {.index = 106, .length = 2}, + [94] = {.index = 1, .length = 1}, + [95] = {.index = 108, .length = 1}, + [96] = {.index = 109, .length = 2}, + [97] = {.index = 111, .length = 3}, + [98] = {.index = 114, .length = 1}, + [99] = {.index = 111, .length = 3}, + [100] = {.index = 9, .length = 1}, + [101] = {.index = 115, .length = 2}, + [102] = {.index = 117, .length = 3}, + [103] = {.index = 120, .length = 3}, + [104] = {.index = 123, .length = 4}, + [105] = {.index = 127, .length = 3}, + [106] = {.index = 130, .length = 3}, + [107] = {.index = 133, .length = 2}, + [108] = {.index = 133, .length = 2}, + [109] = {.index = 135, .length = 2}, + [110] = {.index = 137, .length = 3}, + [111] = {.index = 140, .length = 3}, + [112] = {.index = 135, .length = 2}, + [113] = {.index = 137, .length = 3}, + [114] = {.index = 143, .length = 2}, + [116] = {.index = 145, .length = 3}, + [117] = {.index = 148, .length = 4}, + [118] = {.index = 115, .length = 2}, + [119] = {.index = 152, .length = 3}, + [120] = {.index = 155, .length = 2}, + [121] = {.index = 157, .length = 3}, + [122] = {.index = 160, .length = 2}, + [123] = {.index = 162, .length = 2}, + [124] = {.index = 164, .length = 3}, + [125] = {.index = 167, .length = 3}, + [126] = {.index = 170, .length = 3}, + [127] = {.index = 173, .length = 2}, + [128] = {.index = 175, .length = 2}, + [129] = {.index = 177, .length = 3}, + [130] = {.index = 180, .length = 2}, + [131] = {.index = 182, .length = 2}, + [132] = {.index = 184, .length = 1}, + [133] = {.index = 185, .length = 2}, + [134] = {.index = 187, .length = 1}, + [135] = {.index = 99, .length = 1}, + [136] = {.index = 188, .length = 2}, + [137] = {.index = 190, .length = 2}, + [138] = {.index = 192, .length = 2}, + [139] = {.index = 194, .length = 2}, + [140] = {.index = 196, .length = 3}, + [141] = {.index = 196, .length = 3}, + [142] = {.index = 173, .length = 2}, + [143] = {.index = 199, .length = 4}, + [144] = {.index = 203, .length = 3}, + [145] = {.index = 206, .length = 4}, + [146] = {.index = 210, .length = 3}, + [147] = {.index = 213, .length = 3}, + [148] = {.index = 216, .length = 3}, + [149] = {.index = 219, .length = 4}, + [150] = {.index = 216, .length = 3}, + [151] = {.index = 219, .length = 4}, + [152] = {.index = 213, .length = 3}, + [153] = {.index = 223, .length = 2}, + [154] = {.index = 225, .length = 2}, + [155] = {.index = 227, .length = 2}, + [156] = {.index = 229, .length = 1}, + [157] = {.index = 230, .length = 2}, + [158] = {.index = 232, .length = 2}, + [159] = {.index = 234, .length = 2}, + [160] = {.index = 190, .length = 2}, + [161] = {.index = 236, .length = 4}, + [162] = {.index = 240, .length = 3}, + [163] = {.index = 243, .length = 2}, + [164] = {.index = 245, .length = 3}, + [165] = {.index = 248, .length = 3}, + [166] = {.index = 243, .length = 2}, + [167] = {.index = 245, .length = 3}, + [168] = {.index = 251, .length = 3}, + [169] = {.index = 254, .length = 3}, + [170] = {.index = 257, .length = 4}, + [171] = {.index = 261, .length = 3}, + [172] = {.index = 264, .length = 2}, + [173] = {.index = 266, .length = 2}, + [174] = {.index = 268, .length = 3}, + [175] = {.index = 271, .length = 4}, + [176] = {.index = 275, .length = 3}, + [177] = {.index = 230, .length = 2}, + [178] = {.index = 278, .length = 2}, + [179] = {.index = 280, .length = 3}, + [180] = {.index = 283, .length = 3}, + [181] = {.index = 286, .length = 2}, + [182] = {.index = 288, .length = 3}, + [183] = {.index = 190, .length = 2}, + [184] = {.index = 291, .length = 2}, + [185] = {.index = 293, .length = 3}, + [186] = {.index = 296, .length = 2}, + [187] = {.index = 298, .length = 3}, + [188] = {.index = 301, .length = 3}, + [189] = {.index = 266, .length = 2}, + [190] = {.index = 304, .length = 4}, + [191] = {.index = 308, .length = 5}, + [192] = {.index = 313, .length = 4}, + [193] = {.index = 317, .length = 4}, + [194] = {.index = 321, .length = 4}, + [195] = {.index = 321, .length = 4}, + [196] = {.index = 325, .length = 3}, + [197] = {.index = 328, .length = 2}, + [198] = {.index = 330, .length = 2}, + [199] = {.index = 115, .length = 2}, + [200] = {.index = 332, .length = 3}, + [201] = {.index = 335, .length = 3}, + [202] = {.index = 338, .length = 4}, + [203] = {.index = 335, .length = 3}, + [204] = {.index = 338, .length = 4}, + [205] = {.index = 332, .length = 3}, + [206] = {.index = 342, .length = 4}, + [207] = {.index = 346, .length = 4}, + [208] = {.index = 350, .length = 3}, + [209] = {.index = 353, .length = 4}, + [210] = {.index = 357, .length = 3}, + [211] = {.index = 360, .length = 3}, + [212] = {.index = 363, .length = 3}, + [213] = {.index = 366, .length = 4}, + [214] = {.index = 370, .length = 2}, + [215] = {.index = 372, .length = 3}, + [216] = {.index = 375, .length = 4}, + [217] = {.index = 379, .length = 3}, + [218] = {.index = 382, .length = 3}, + [219] = {.index = 385, .length = 2}, + [220] = {.index = 387, .length = 3}, + [221] = {.index = 390, .length = 5}, + [222] = {.index = 395, .length = 3}, + [223] = {.index = 398, .length = 3}, + [224] = {.index = 401, .length = 2}, + [225] = {.index = 403, .length = 4}, + [226] = {.index = 403, .length = 4}, + [227] = {.index = 407, .length = 4}, + [228] = {.index = 411, .length = 5}, + [229] = {.index = 416, .length = 4}, + [230] = {.index = 420, .length = 2}, + [231] = {.index = 422, .length = 4}, + [232] = {.index = 426, .length = 4}, + [233] = {.index = 430, .length = 3}, + [234] = {.index = 433, .length = 4}, + [235] = {.index = 437, .length = 3}, + [236] = {.index = 440, .length = 3}, + [237] = {.index = 443, .length = 5}, + [238] = {.index = 448, .length = 4}, + [239] = {.index = 452, .length = 5}, + [240] = {.index = 457, .length = 4}, + [241] = {.index = 461, .length = 3}, + [242] = {.index = 464, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_body, 1}, + {field_value, 1}, [1] = {field_name, 1}, [2] = - {field_value, 1}, + {field_body, 1}, [3] = {field_body, 1}, {field_name, 0}, @@ -2552,45 +2948,45 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 1}, {field_parameters, 0}, [9] = + {field_value, 2}, + [10] = + {field_type, 0}, + {field_type_arguments, 1}, + [12] = + {field_type, 1}, + [13] = + {field_parameters, 1}, + [14] = + {field_trait, 1}, + [15] = + {field_parameters, 1}, + {field_trait, 0}, + [17] = {field_name, 2}, {field_path, 0}, - [11] = + [19] = {field_macro, 0}, - [12] = + [20] = {field_body, 2}, {field_name, 1}, - [14] = - {field_type, 0}, - {field_type_arguments, 1}, - [16] = + [22] = {field_condition, 1}, {field_consequence, 2}, - [18] = - {field_parameters, 1}, - [19] = - {field_trait, 1}, - [20] = - {field_type, 1}, - [21] = - {field_parameters, 1}, - {field_trait, 0}, - [23] = + [24] = {field_body, 2}, {field_type, 1}, - [25] = - {field_pattern, 1}, [26] = + {field_pattern, 1}, + [27] = {field_body, 2}, {field_value, 1}, - [28] = - {field_list, 1}, [29] = - {field_argument, 1}, + {field_list, 1}, [30] = + {field_argument, 1}, + [31] = {field_body, 2}, {field_condition, 1}, - [32] = - {field_value, 2}, [33] = {field_body, 2}, {field_parameters, 1}, @@ -2607,559 +3003,584 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_operator, 1}, {field_right, 2}, [43] = - {field_type, 2}, - {field_value, 0}, - [45] = {field_left, 0}, {field_right, 2}, - [47] = + [45] = {field_field, 2}, {field_value, 0}, + [47] = + {field_type, 2}, + {field_value, 0}, [49] = + {field_pattern, 0}, + {field_type, 2}, + [51] = + {field_type, 0}, + [52] = {field_name, 0}, - [50] = + [53] = + {field_element, 1}, + [54] = + {field_type, 2}, + [55] = + {field_parameters, 2}, + [56] = + {field_alias, 2}, + {field_type, 0}, + [58] = + {field_parameters, 2}, + {field_trait, 1}, + [60] = + {field_arguments, 1}, + [61] = {field_body, 3}, {field_name, 1}, - [52] = + [63] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [55] = + [66] = {field_name, 1}, {field_parameters, 2}, - [57] = + [68] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [60] = - {field_type, 0}, - [61] = + [71] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [64] = - {field_element, 1}, - [65] = - {field_type, 2}, - [66] = + [74] = {field_bounds, 1}, {field_left, 0}, - [68] = - {field_parameters, 2}, - [69] = + [76] = + {field_type, 2}, + {field_type_parameters, 1}, + [78] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [72] = + [81] = {field_body, 3}, {field_type, 1}, - [74] = - {field_parameters, 2}, - {field_trait, 1}, - [76] = + [83] = {field_pattern, 2}, - [77] = + [84] = {field_name, 1}, {field_type_parameters, 2}, - [79] = + [86] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [82] = + [89] = {field_bounds, 2}, {field_name, 1}, - [84] = + [91] = {field_body, 3}, {field_type, 2}, - [86] = + [93] = {field_body, 3}, {field_name, 2}, - [88] = - {field_alias, 2}, - {field_path, 0}, - [90] = + [95] = {field_list, 2}, {field_path, 0}, - [92] = - {field_arguments, 1}, - [93] = - {field_name, 2}, - [94] = + [97] = {field_alias, 2}, - {field_type, 0}, - [96] = - {field_pattern, 0}, - {field_type, 2}, - [98] = - {field_argument, 2}, + {field_path, 0}, [99] = + {field_name, 2}, + [100] = + {field_argument, 2}, + [101] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [102] = + [104] = {field_body, 3}, - [103] = + [105] = {field_length, 3}, - [104] = + [106] = + {field_pattern, 1}, + {field_type, 3}, + [108] = + {field_type, 3}, + [109] = + {field_parameters, 1}, + {field_return_type, 3}, + [111] = + {field_parameters, 1}, + {field_return_type, 3}, + {field_trait, 0}, + [114] = + {field_parameters, 3}, + [115] = {field_name, 1}, {field_type, 3}, - [106] = + [117] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [109] = + [120] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [112] = + [123] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [116] = + [127] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [119] = + [130] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [122] = - {field_parameters, 1}, - {field_return_type, 3}, - [124] = + [133] = {field_default_type, 2}, {field_name, 0}, - [126] = + [135] = + {field_trait, 1}, {field_type, 3}, - [127] = + [137] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [130] = - {field_parameters, 1}, - {field_return_type, 3}, - {field_trait, 0}, - [133] = + [140] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [136] = - {field_parameters, 3}, - [137] = - {field_pattern, 1}, - {field_type, 3}, - [139] = + [143] = {field_pattern, 1}, {field_value, 3}, - [141] = + [145] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [144] = + [148] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [148] = + [152] = + {field_bounds, 3}, + {field_name, 1}, + {field_type_parameters, 2}, + [155] = + {field_type, 3}, + {field_type_parameters, 2}, + [157] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [151] = + [160] = {field_body, 4}, {field_type, 2}, - [153] = + [162] = {field_body, 4}, {field_name, 2}, - [155] = + [164] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [158] = + [167] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [161] = + [170] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [164] = + [173] = {field_name, 0}, {field_value, 2}, - [166] = + [175] = {field_name, 2}, {field_parameters, 3}, - [168] = + [177] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [171] = + [180] = {field_name, 2}, {field_type_parameters, 3}, - [173] = + [182] = {field_body, 4}, {field_name, 3}, - [175] = + [184] = {field_name, 3}, - [176] = + [185] = {field_body, 4}, {field_condition, 3}, - [178] = + [187] = {field_length, 4}, - [179] = + [188] = + {field_name, 0}, + {field_pattern, 2}, + [190] = + {field_name, 0}, {field_type, 2}, - {field_type_parameters, 1}, - [181] = + [192] = + {field_element, 1}, + {field_length, 3}, + [194] = + {field_parameters, 2}, + {field_return_type, 4}, + [196] = + {field_parameters, 2}, + {field_return_type, 4}, + {field_trait, 1}, + [199] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [185] = + [203] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [188] = + [206] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [192] = - {field_name, 0}, - {field_pattern, 2}, - [194] = - {field_name, 0}, - {field_type, 2}, - [196] = + [210] = {field_consequence, 5}, {field_pattern, 2}, {field_value, 4}, - [199] = - {field_element, 1}, - {field_length, 3}, - [201] = + [213] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [204] = - {field_parameters, 2}, - {field_return_type, 4}, - [206] = + [216] = + {field_trait, 2}, + {field_type, 4}, + {field_type_parameters, 1}, + [219] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [210] = - {field_parameters, 2}, - {field_return_type, 4}, - {field_trait, 1}, - [213] = + [223] = {field_pattern, 2}, {field_type, 4}, - [215] = + [225] = {field_pattern, 2}, {field_value, 4}, - [217] = + [227] = {field_pattern, 0}, {field_value, 2}, - [219] = + [229] = {field_condition, 2}, - [220] = + [230] = {field_name, 2}, {field_type, 4}, - [222] = + [232] = {field_type, 1}, {field_type, 2, .inherited = true}, - [224] = + [234] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [226] = + [236] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [230] = + [240] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [233] = + [243] = + {field_trait, 2}, + {field_type, 4}, + [245] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [236] = + [248] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [239] = + [251] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [242] = + [254] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [245] = + [257] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [249] = + [261] = {field_body, 5}, {field_pattern, 2}, {field_value, 4}, - [252] = + [264] = {field_alias, 4}, {field_name, 2}, - [254] = + [266] = {field_name, 1}, {field_value, 3}, - [256] = + [268] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [259] = + [271] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [263] = + [275] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [266] = + [278] = {field_body, 5}, {field_name, 3}, - [268] = + [280] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [271] = + [283] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [274] = + [286] = {field_name, 3}, {field_parameters, 4}, - [276] = + [288] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [279] = + [291] = + {field_name, 1}, + {field_pattern, 3}, + [293] = + {field_name, 0}, + {field_type, 3}, + {field_type_arguments, 1}, + [296] = + {field_parameters, 3}, + {field_return_type, 5}, + [298] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [282] = + [301] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [285] = + [304] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [289] = + [308] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [294] = + [313] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [298] = - {field_name, 1}, - {field_pattern, 3}, - [300] = + [317] = {field_alternative, 6}, {field_consequence, 5}, {field_pattern, 2}, {field_value, 4}, - [304] = + [321] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [308] = - {field_parameters, 3}, - {field_return_type, 5}, - [310] = + [325] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [313] = + [328] = {field_name, 3}, {field_type, 5}, - [315] = + [330] = {field_type, 2}, {field_type, 3, .inherited = true}, - [317] = + [332] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [320] = + [335] = + {field_trait, 3}, + {field_type, 5}, + {field_type_parameters, 2}, + [338] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [324] = + [342] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [328] = + [346] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [332] = + [350] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [335] = + [353] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [339] = + [357] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [342] = + [360] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [345] = + [363] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [348] = + [366] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [352] = + [370] = {field_alias, 5}, {field_name, 3}, - [354] = + [372] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [357] = + [375] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [361] = + [379] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [364] = + [382] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [367] = + [385] = + {field_name, 2}, + {field_pattern, 4}, + [387] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [370] = + [390] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [375] = - {field_name, 2}, - {field_pattern, 4}, - [377] = + [395] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [380] = + [398] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [383] = + [401] = {field_type, 3}, {field_type, 4, .inherited = true}, - [385] = + [403] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [389] = + [407] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [393] = + [411] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [398] = + [416] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [402] = + [420] = {field_name, 4}, {field_type, 6}, - [404] = + [422] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [408] = + [426] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [412] = + [430] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [415] = + [433] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [419] = + [437] = {field_body, 7}, {field_pattern, 4}, {field_value, 6}, - [422] = + [440] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [425] = + [443] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [430] = + [448] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [434] = + [452] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [439] = + [457] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [443] = + [461] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [446] = + [464] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3181,27 +3602,27 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [7] = { [0] = alias_sym_type_identifier, }, - [11] = { - [0] = sym_identifier, - }, [12] = { - [0] = sym_identifier, - [2] = alias_sym_type_identifier, - }, - [13] = { - [0] = sym_identifier, + [0] = alias_sym_type_identifier, }, - [14] = { + [16] = { [1] = alias_sym_type_identifier, }, - [15] = { + [18] = { [0] = alias_sym_type_identifier, }, - [19] = { - [1] = alias_sym_type_identifier, + [20] = { + [0] = sym_identifier, + }, + [21] = { + [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [22] = { - [0] = alias_sym_type_identifier, + [0] = sym_identifier, + }, + [23] = { + [1] = alias_sym_type_identifier, }, [35] = { [2] = alias_sym_type_identifier, @@ -3216,116 +3637,122 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [45] = { + [44] = { [2] = alias_sym_field_identifier, }, [47] = { [1] = sym_identifier, }, - [49] = { - [1] = alias_sym_type_identifier, - }, - [50] = { - [1] = alias_sym_type_identifier, - }, - [53] = { + [48] = { [0] = sym_identifier, [2] = sym_identifier, }, - [55] = { + [49] = { + [0] = sym_identifier, + }, + [51] = { [0] = alias_sym_type_identifier, }, - [56] = { + [52] = { [0] = alias_sym_shorthand_field_identifier, }, - [57] = { + [53] = { [2] = sym_identifier, }, + [59] = { + [1] = alias_sym_type_identifier, + }, [61] = { + [0] = sym_identifier, + }, + [64] = { [1] = alias_sym_type_identifier, }, - [62] = { - [0] = alias_sym_type_identifier, + [65] = { + [1] = alias_sym_type_identifier, }, - [67] = { + [69] = { [1] = alias_sym_type_identifier, }, [70] = { + [0] = alias_sym_type_identifier, + }, + [76] = { [1] = alias_sym_type_identifier, }, - [71] = { + [77] = { [1] = alias_sym_type_identifier, }, - [72] = { + [78] = { [1] = alias_sym_type_identifier, }, - [74] = { + [80] = { [2] = alias_sym_type_identifier, }, - [75] = { - [0] = sym_identifier, - }, - [76] = { - [0] = sym_identifier, - }, - [79] = { + [81] = { [0] = sym_identifier, }, - [83] = { + [82] = { [0] = sym_identifier, }, - [86] = { + [87] = { [2] = alias_sym_type_identifier, }, [92] = { - [1] = alias_sym_type_identifier, + [1] = sym_identifier, }, - [96] = { + [94] = { [1] = alias_sym_shorthand_field_identifier, }, - [99] = { + [97] = { [0] = alias_sym_type_identifier, }, + [100] = { + [0] = sym_identifier, + }, [102] = { [1] = alias_sym_type_identifier, }, - [103] = { + [107] = { [0] = alias_sym_type_identifier, }, + [109] = { + [1] = alias_sym_type_identifier, + }, [110] = { + [1] = alias_sym_type_identifier, + }, + [115] = { [3] = sym_identifier, }, - [111] = { + [116] = { [1] = alias_sym_type_identifier, }, - [112] = { + [117] = { [1] = alias_sym_type_identifier, }, - [113] = { + [118] = { [1] = alias_sym_type_identifier, }, - [116] = { - [2] = alias_sym_type_identifier, + [119] = { + [1] = alias_sym_type_identifier, }, - [117] = { + [123] = { [2] = alias_sym_type_identifier, }, - [118] = { + [124] = { [2] = alias_sym_type_identifier, }, - [119] = { - [0] = sym_identifier, - }, - [120] = { - [1] = sym_identifier, + [125] = { + [2] = alias_sym_type_identifier, }, - [122] = { + [127] = { [0] = alias_sym_field_identifier, }, - [125] = { + [130] = { [2] = alias_sym_type_identifier, }, - [126] = { + [131] = { [3] = alias_sym_type_identifier, }, [135] = { @@ -3340,85 +3767,97 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [140] = { [1] = alias_sym_type_identifier, }, - [142] = { + [147] = { + [1] = alias_sym_type_identifier, + }, + [148] = { [2] = alias_sym_type_identifier, }, - [144] = { - [1] = alias_sym_type_identifier, + [149] = { + [2] = alias_sym_type_identifier, }, - [154] = { + [160] = { [0] = alias_sym_field_identifier, }, - [155] = { + [161] = { [1] = alias_sym_type_identifier, }, - [156] = { + [162] = { [1] = alias_sym_type_identifier, }, - [157] = { + [163] = { [2] = alias_sym_type_identifier, }, - [160] = { + [164] = { [2] = alias_sym_type_identifier, }, - [161] = { + [168] = { [2] = alias_sym_type_identifier, }, - [162] = { + [169] = { [2] = alias_sym_type_identifier, }, - [165] = { + [170] = { + [2] = alias_sym_type_identifier, + }, + [173] = { [1] = alias_sym_field_identifier, }, - [169] = { + [177] = { [2] = alias_sym_type_identifier, }, - [170] = { + [178] = { [3] = alias_sym_type_identifier, }, - [171] = { + [179] = { [3] = alias_sym_type_identifier, }, - [172] = { + [180] = { [3] = alias_sym_type_identifier, }, - [182] = { + [184] = { [1] = alias_sym_field_identifier, }, - [184] = { + [185] = { + [0] = alias_sym_type_identifier, + }, + [194] = { [2] = alias_sym_type_identifier, }, - [190] = { + [199] = { [1] = alias_sym_field_identifier, }, - [191] = { + [200] = { [2] = alias_sym_type_identifier, }, - [192] = { + [201] = { [3] = alias_sym_type_identifier, }, - [195] = { + [202] = { + [3] = alias_sym_type_identifier, + }, + [206] = { [2] = alias_sym_type_identifier, }, - [199] = { + [210] = { [2] = alias_sym_type_identifier, }, - [200] = { + [211] = { [3] = alias_sym_type_identifier, }, - [201] = { + [212] = { [3] = alias_sym_type_identifier, }, - [202] = { + [213] = { [3] = alias_sym_type_identifier, }, - [210] = { + [219] = { [2] = alias_sym_field_identifier, }, - [214] = { + [225] = { [3] = alias_sym_type_identifier, }, - [220] = { + [231] = { [3] = alias_sym_type_identifier, }, }; @@ -3431,1066 +3870,1128 @@ static const uint16_t ts_non_terminal_alias_map[] = { }; static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43020 - ? (c < 4096 - ? (c < 2693 - ? (c < 1969 - ? (c < 910 - ? (c < 736 - ? (c < 186 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 931 + ? (c < 748 + ? (c < 192 ? (c < 170 ? (c < 'a' ? (c >= 'A' && c <= '_') : c <= 'z') - : (c <= 170 || c == 181)) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1646 - ? (c < 1369 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c >= 1329 && c <= 1366))) - : (c <= 1369 || (c < 1519 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))))) - : (c <= 1647 || (c < 1786 - ? (c < 1765 - ? (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749) - : (c <= 1766 || (c >= 1774 && c <= 1775))) - : (c <= 1788 || (c < 1810 - ? (c < 1808 - ? c == 1791 - : c <= 1808) - : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) - : (c <= 1969 || (c < 2474 + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1649 + ? (c < 1376 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || c == 1369)) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 ? (c < 2208 - ? (c < 2074 - ? (c < 2042 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037) - : (c <= 2042 || (c >= 2048 && c <= 2069))) - : (c <= 2074 || (c < 2112 - ? (c < 2088 - ? c == 2084 - : c <= 2088) - : (c <= 2136 || (c >= 2144 && c <= 2154))))) - : (c <= 2228 || (c < 2392 - ? (c < 2365 - ? (c < 2308 - ? (c >= 2230 && c <= 2247) - : c <= 2361) - : (c <= 2365 || c == 2384)) - : (c <= 2401 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : c <= 2444) - : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2575 - ? (c < 2524 - ? (c < 2493 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2556 - ? (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))))) - : (c <= 2576 || (c < 2616 - ? (c < 2610 - ? (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) - : (c <= 2701 || (c < 3214 - ? (c < 2947 - ? (c < 2821 - ? (c < 2741 - ? (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c >= 2738 && c <= 2739))) - : (c <= 2745 || (c < 2784 - ? (c < 2768 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 ? c == 2749 - : c <= 2768) - : (c <= 2785 || c == 2809)))) - : (c <= 2828 || (c < 2869 - ? (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c >= 2866 && c <= 2867))) - : (c <= 2873 || (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || c == 2929)))))) - : (c <= 2947 || (c < 3024 - ? (c < 2972 - ? (c < 2962 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c >= 2990 && c <= 3001))))) - : (c <= 3024 || (c < 3133 - ? (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))) - : (c <= 3133 || (c < 3200 - ? (c < 3168 - ? (c >= 3160 && c <= 3162) - : c <= 3169) - : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) - : (c <= 3216 || (c < 3520 - ? (c < 3346 - ? (c < 3294 - ? (c < 3253 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251) - : (c <= 3257 || c == 3261)) - : (c <= 3294 || (c < 3332 - ? (c < 3313 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 ? (c >= 3296 && c <= 3297) - : c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))))) - : (c <= 3386 || (c < 3450 - ? (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))) - : (c <= 3455 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)))))) - : (c <= 3526 || (c < 3762 - ? (c < 3716 - ? (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))))) - : (c <= 3762 || (c < 3840 - ? (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))) - : (c <= 3840 || (c < 3913 - ? (c >= 3904 && c <= 3911) - : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) - : (c <= 4138 || (c < 8025 - ? (c < 5952 - ? (c < 4752 - ? (c < 4295 - ? (c < 4197 - ? (c < 4186 - ? (c < 4176 - ? c == 4159 - : c <= 4181) - : (c <= 4189 || c == 4193)) - : (c <= 4198 || (c < 4238 - ? (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225) - : (c <= 4238 || (c >= 4256 && c <= 4293))))) - : (c <= 4295 || (c < 4688 - ? (c < 4348 + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4704 + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))))))) - : (c <= 4784 || (c < 5024 - ? (c < 4808 - ? (c < 4800 + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 ? (c < 4792 ? (c >= 4786 && c <= 4789) : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))) - : (c <= 4822 || (c < 4888 + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 ? (c < 4882 ? (c >= 4824 && c <= 4880) : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))))) - : (c <= 5109 || (c < 5792 - ? (c < 5743 + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 ? (c < 5121 ? (c >= 5112 && c <= 5117) : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5902 + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 ? (c < 5888 ? (c >= 5870 && c <= 5880) - : c <= 5900) - : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) - : (c <= 5969 || (c < 7043 - ? (c < 6400 - ? (c < 6108 - ? (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312) - : (c <= 6314 || (c >= 6320 && c <= 6389))))) - : (c <= 6430 || (c < 6656 - ? (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c >= 6576 && c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6987))))))) - : (c <= 7072 || (c < 7406 - ? (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))) - : (c <= 7411 || (c < 7960 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c >= 7680 && c <= 7957))) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) - : (c <= 8025 || (c < 11631 - ? (c < 8469 - ? (c < 8150 - ? (c < 8118 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c >= 8064 && c <= 8116))) - : (c <= 8124 || (c < 8134 - ? (c < 8130 - ? c == 8126 - : c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))))) - : (c <= 8155 || (c < 8319 - ? (c < 8182 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180) - : (c <= 8188 || c == 8305)) - : (c <= 8319 || (c < 8455 - ? (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450) - : (c <= 8455 || (c >= 8458 && c <= 8467))))))) - : (c <= 8469 || (c < 11264 - ? (c < 8490 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || c == 8488)) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))) - : (c <= 11310 || (c < 11520 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) - : (c <= 11631 || (c < 12704 - ? (c < 12293 - ? (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))) - : (c <= 12295 || (c < 12445 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))))))) - : (c <= 12735 || (c < 42623 - ? (c < 42192 - ? (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c >= 40960 && c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42946 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))) - : (c <= 42954 || (c < 43011 - ? (c >= 42997 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) - : (c <= 43042 || (c < 70453 - ? (c < 66176 - ? (c < 64112 - ? (c < 43697 - ? (c < 43471 - ? (c < 43261 - ? (c < 43250 - ? (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187) - : (c <= 43255 || c == 43259)) - : (c <= 43262 || (c < 43360 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43471 || (c < 43584 - ? (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43642 - ? (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))))))) - : (c <= 43697 || (c < 43793 - ? (c < 43739 - ? (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) - : (c <= 64217 || (c < 65147 - ? (c < 64326 - ? (c < 64298 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))) - : (c <= 65147 || (c < 65498 - ? (c < 65382 - ? (c < 65313 + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))) - : (c <= 65437 || (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))))) - : (c <= 65500 || (c < 65599 - ? (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 ? (c < 65549 ? (c >= 65536 && c <= 65547) : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) - : (c <= 66204 || (c < 68416 - ? (c < 67639 - ? (c < 66736 - ? (c < 66432 - ? (c < 66349 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))) - : (c <= 66461 || (c < 66513 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))))) - : (c <= 66771 || (c < 67392 - ? (c < 66864 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67592 - ? (c < 67584 - ? (c >= 67424 && c <= 67431) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))))))) - : (c <= 67640 || (c < 68030 - ? (c < 67808 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))))) - : (c <= 68031 || (c < 68192 - ? (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) - : (c <= 68437 || (c < 69968 - ? (c < 69415 - ? (c < 68800 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))))) - : (c <= 69415 || (c < 69763 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69424 && c <= 69445) - : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)))))) - : (c <= 70002 || (c < 70282 - ? (c < 70108 - ? (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)))) - : (c <= 70285 || (c < 70415 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) - : (c <= 70457 || (c < 113808 - ? (c < 72818 - ? (c < 71945 - ? (c < 71040 - ? (c < 70727 - ? (c < 70493 + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 ? (c < 70480 ? c == 70461 : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))) - : (c <= 70730 || (c < 70852 + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 ? (c < 70784 ? (c >= 70751 && c <= 70753) : c <= 70831) - : (c <= 70853 || c == 70855)))) - : (c <= 71086 || (c < 71352 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))) - : (c <= 71352 || (c < 71840 + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 ? (c < 71680 - ? (c >= 71424 && c <= 71450) + ? (c >= 71488 && c <= 71494) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))))))) - : (c <= 71945 || (c < 72192 - ? (c < 72001 - ? (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)) - : (c <= 72001 || (c < 72161 + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)))) - : (c <= 72192 || (c < 72349 - ? (c < 72272 + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 ? (c < 72704 - ? (c >= 72384 && c <= 72440) + ? (c >= 72368 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)))))))) - : (c <= 72847 || (c < 92992 - ? (c < 73648 - ? (c < 73056 - ? (c < 72971 + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73008 || c == 73030)) - : (c <= 73061 || (c < 73112 + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 ? (c < 73066 ? (c >= 73063 && c <= 73064) : c <= 73097) - : (c <= 73112 || (c >= 73440 && c <= 73458))))) - : (c <= 73648 || (c < 82944 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c >= 77824 && c <= 78894))) - : (c <= 83526 || (c < 92880 + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92909 || (c >= 92928 && c <= 92975))))))) - : (c <= 92995 || (c < 100352 - ? (c < 94032 - ? (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))) - : (c <= 94032 || (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))))) - : (c <= 101589 || (c < 110960 - ? (c < 110928 - ? (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878) - : (c <= 110930 || (c >= 110948 && c <= 110951))) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) - : (c <= 113817 || (c < 126469 - ? (c < 120488 - ? (c < 120005 - ? (c < 119973 - ? (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119995 - ? (c < 119982 + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110882) + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c >= 119997 && c <= 120003))))) - : (c <= 120069 || (c < 120123 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c >= 120094 && c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c >= 120146 && c <= 120485))))))) - : (c <= 120512 || (c < 120772 - ? (c < 120630 - ? (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c >= 120746 && c <= 120770))))) - : (c <= 120779 || (c < 124928 - ? (c < 123214 - ? (c < 123191 - ? (c >= 123136 && c <= 123180) - : c <= 123197) - : (c <= 123214 || (c >= 123584 && c <= 123627))) - : (c <= 125124 || (c < 125259 - ? (c >= 125184 && c <= 125251) - : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) - : (c <= 126495 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c >= 126505 && c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173789) - : (c <= 177972 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 194560 - ? (c >= 183984 && c <= 191456) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43020 - ? (c < 3976 - ? (c < 2674 - ? (c < 1869 - ? (c < 908 - ? (c < 710 - ? (c < 181 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 910 + ? (c < 736 + ? (c < 186 ? (c < 'a' ? (c < '_' ? (c >= 'A' && c <= 'Z') : c <= '_') - : (c <= 'z' || c == 170)) - : (c <= 181 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c >= 248 && c <= 705))))) - : (c <= 721 || (c < 886 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c >= 880 && c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 902 || (c >= 904 && c <= 906))))))) - : (c <= 908 || (c < 1568 - ? (c < 1329 - ? (c < 1015 - ? (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013) - : (c <= 1153 || (c >= 1162 && c <= 1327))) - : (c <= 1366 || (c < 1488 - ? (c < 1376 - ? c == 1369 - : c <= 1416) - : (c <= 1514 || (c >= 1519 && c <= 1522))))) - : (c <= 1610 || (c < 1774 - ? (c < 1749 - ? (c < 1649 - ? (c >= 1646 && c <= 1647) - : c <= 1747) - : (c <= 1749 || (c >= 1765 && c <= 1766))) - : (c <= 1775 || (c < 1808 - ? (c < 1791 - ? (c >= 1786 && c <= 1788) - : c <= 1791) - : (c <= 1808 || (c >= 1810 && c <= 1839))))))))) - : (c <= 1957 || (c < 2451 - ? (c < 2144 - ? (c < 2048 - ? (c < 2036 - ? (c < 1994 - ? c == 1969 - : c <= 2026) - : (c <= 2037 || c == 2042)) - : (c <= 2069 || (c < 2088 - ? (c < 2084 + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 ? c == 2074 - : c <= 2084) - : (c <= 2088 || (c >= 2112 && c <= 2136))))) - : (c <= 2154 || (c < 2384 - ? (c < 2308 - ? (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247) - : (c <= 2361 || c == 2365)) - : (c <= 2384 || (c < 2437 - ? (c < 2417 - ? (c >= 2392 && c <= 2401) - : c <= 2432) - : (c <= 2444 || (c >= 2447 && c <= 2448))))))) - : (c <= 2472 || (c < 2565 - ? (c < 2510 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || c == 2493)) - : (c <= 2510 || (c < 2544 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529) - : (c <= 2545 || c == 2556)))) - : (c <= 2570 || (c < 2613 - ? (c < 2602 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600) - : (c <= 2608 || (c >= 2610 && c <= 2611))) - : (c <= 2614 || (c < 2649 - ? (c >= 2616 && c <= 2617) - : (c <= 2652 || c == 2654)))))))))) - : (c <= 2676 || (c < 3205 - ? (c < 2929 - ? (c < 2809 - ? (c < 2738 - ? (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2768 - ? (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749) - : (c <= 2768 || (c >= 2784 && c <= 2785))))) - : (c <= 2809 || (c < 2866 - ? (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))))))) - : (c <= 2929 || (c < 2990 - ? (c < 2969 - ? (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c >= 2984 && c <= 2986))))) - : (c <= 3001 || (c < 3114 - ? (c < 3086 - ? (c < 3077 - ? c == 3024 - : c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3168 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3169 || c == 3200)))))))) - : (c <= 3212 || (c < 3517 - ? (c < 3342 - ? (c < 3261 - ? (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))) - : (c <= 3261 || (c < 3313 - ? (c < 3296 - ? c == 3294 - : c <= 3297) - : (c <= 3314 || (c >= 3332 && c <= 3340))))) - : (c <= 3344 || (c < 3423 - ? (c < 3406 - ? (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389) - : (c <= 3406 || (c >= 3412 && c <= 3414))) - : (c <= 3425 || (c < 3482 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))))))) - : (c <= 3517 || (c < 3751 - ? (c < 3713 - ? (c < 3634 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632) - : (c <= 3634 || (c >= 3648 && c <= 3654))) - : (c <= 3714 || (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || c == 3749)))) - : (c <= 3760 || (c < 3804 - ? (c < 3776 - ? (c < 3773 - ? c == 3762 - : c <= 3773) - : (c <= 3780 || c == 3782)) - : (c <= 3807 || (c < 3904 - ? c == 3840 - : (c <= 3911 || (c >= 3913 && c <= 3948))))))))))))) - : (c <= 3980 || (c < 8016 - ? (c < 5920 - ? (c < 4746 - ? (c < 4256 - ? (c < 4193 - ? (c < 4176 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 ? (c < 4159 ? (c >= 4096 && c <= 4138) : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))) - : (c <= 4193 || (c < 4213 + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 ? (c < 4206 ? (c >= 4197 && c <= 4198) : c <= 4208) - : (c <= 4225 || c == 4238)))) - : (c <= 4293 || (c < 4682 - ? (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c >= 4348 && c <= 4680))) - : (c <= 4685 || (c < 4698 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696) - : (c <= 4701 || (c >= 4704 && c <= 4744))))))) - : (c <= 4749 || (c < 4992 - ? (c < 4802 - ? (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || c == 4800)) - : (c <= 4805 || (c < 4882 - ? (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))))) - : (c <= 5007 || (c < 5761 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c >= 5743 && c <= 5759))) - : (c <= 5786 || (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5900 || (c >= 5902 && c <= 5905))))))))) - : (c <= 5937 || (c < 6981 - ? (c < 6320 - ? (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || c == 6314)))) - : (c <= 6389 || (c < 6576 - ? (c < 6512 - ? (c < 6480 + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c >= 6528 && c <= 6571))) - : (c <= 6601 || (c < 6823 - ? (c < 6688 - ? (c >= 6656 && c <= 6678) - : c <= 6740) - : (c <= 6823 || (c >= 6917 && c <= 6963))))))) - : (c <= 6987 || (c < 7401 - ? (c < 7245 - ? (c < 7098 - ? (c < 7086 - ? (c >= 7043 && c <= 7072) - : c <= 7087) - : (c <= 7141 || (c >= 7168 && c <= 7203))) - : (c <= 7247 || (c < 7312 - ? (c < 7296 - ? (c >= 7258 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c >= 7357 && c <= 7359))))) - : (c <= 7404 || (c < 7680 - ? (c < 7418 - ? (c < 7413 - ? (c >= 7406 && c <= 7411) - : c <= 7414) - : (c <= 7418 || (c >= 7424 && c <= 7615))) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))))))))))) - : (c <= 8023 || (c < 11631 - ? (c < 8458 - ? (c < 8144 - ? (c < 8064 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c >= 8031 && c <= 8061))) - : (c <= 8116 || (c < 8130 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126) - : (c <= 8132 || (c >= 8134 && c <= 8140))))) - : (c <= 8147 || (c < 8305 - ? (c < 8178 - ? (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) : (c <= 8305 || (c < 8450 ? (c < 8336 ? c == 8319 : c <= 8348) - : (c <= 8450 || c == 8455)))))) - : (c <= 8467 || (c < 8544 - ? (c < 8488 + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -4500,1223 +5001,1535 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || c == 8526)))) - : (c <= 8584 || (c < 11506 - ? (c < 11360 - ? (c < 11312 - ? (c >= 11264 && c <= 11310) - : c <= 11358) - : (c <= 11492 || (c >= 11499 && c <= 11502))) - : (c <= 11507 || (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) - : (c <= 11631 || (c < 12704 - ? (c < 12293 - ? (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))) - : (c <= 12295 || (c < 12445 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))))))) - : (c <= 12735 || (c < 42623 - ? (c < 42192 - ? (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c >= 40960 && c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42946 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))) - : (c <= 42954 || (c < 43011 - ? (c >= 42997 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) - : (c <= 43042 || (c < 70453 - ? (c < 66176 - ? (c < 64112 - ? (c < 43697 - ? (c < 43471 - ? (c < 43261 - ? (c < 43250 - ? (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187) - : (c <= 43255 || c == 43259)) - : (c <= 43262 || (c < 43360 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43471 || (c < 43584 - ? (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43642 - ? (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))))))) - : (c <= 43697 || (c < 43793 - ? (c < 43739 - ? (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) - : (c <= 64217 || (c < 65147 - ? (c < 64326 - ? (c < 64298 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))) - : (c <= 65147 || (c < 65498 - ? (c < 65382 - ? (c < 65313 + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))) - : (c <= 65437 || (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))))) - : (c <= 65500 || (c < 65599 - ? (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 ? (c < 65549 ? (c >= 65536 && c <= 65547) : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) - : (c <= 66204 || (c < 68416 - ? (c < 67639 - ? (c < 66736 - ? (c < 66432 - ? (c < 66349 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))) - : (c <= 66461 || (c < 66513 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))))) - : (c <= 66771 || (c < 67392 - ? (c < 66864 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67592 - ? (c < 67584 - ? (c >= 67424 && c <= 67431) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))))))) - : (c <= 67640 || (c < 68030 - ? (c < 67808 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))))) - : (c <= 68031 || (c < 68192 - ? (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) - : (c <= 68437 || (c < 69968 - ? (c < 69415 - ? (c < 68800 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))))) - : (c <= 69415 || (c < 69763 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69424 && c <= 69445) - : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)))))) - : (c <= 70002 || (c < 70282 - ? (c < 70108 - ? (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)))) - : (c <= 70285 || (c < 70415 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) - : (c <= 70457 || (c < 113808 - ? (c < 72818 - ? (c < 71945 - ? (c < 71040 - ? (c < 70727 - ? (c < 70493 + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 ? (c < 70480 ? c == 70461 : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))) - : (c <= 70730 || (c < 70852 + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 ? (c < 70784 ? (c >= 70751 && c <= 70753) : c <= 70831) - : (c <= 70853 || c == 70855)))) - : (c <= 71086 || (c < 71352 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))) - : (c <= 71352 || (c < 71840 + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 ? (c < 71680 - ? (c >= 71424 && c <= 71450) + ? (c >= 71488 && c <= 71494) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))))))) - : (c <= 71945 || (c < 72192 - ? (c < 72001 - ? (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)) - : (c <= 72001 || (c < 72161 + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)))) - : (c <= 72192 || (c < 72349 - ? (c < 72272 + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 ? (c < 72704 - ? (c >= 72384 && c <= 72440) + ? (c >= 72368 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)))))))) - : (c <= 72847 || (c < 92992 - ? (c < 73648 - ? (c < 73056 - ? (c < 72971 + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73008 || c == 73030)) - : (c <= 73061 || (c < 73112 + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 ? (c < 73066 ? (c >= 73063 && c <= 73064) : c <= 73097) - : (c <= 73112 || (c >= 73440 && c <= 73458))))) - : (c <= 73648 || (c < 82944 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c >= 77824 && c <= 78894))) - : (c <= 83526 || (c < 92880 + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92909 || (c >= 92928 && c <= 92975))))))) - : (c <= 92995 || (c < 100352 - ? (c < 94032 - ? (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))) - : (c <= 94032 || (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))))) - : (c <= 101589 || (c < 110960 - ? (c < 110928 - ? (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878) - : (c <= 110930 || (c >= 110948 && c <= 110951))) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) - : (c <= 113817 || (c < 126469 - ? (c < 120488 - ? (c < 120005 - ? (c < 119973 - ? (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119995 - ? (c < 119982 + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110882) + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c >= 119997 && c <= 120003))))) - : (c <= 120069 || (c < 120123 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c >= 120094 && c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c >= 120146 && c <= 120485))))))) - : (c <= 120512 || (c < 120772 - ? (c < 120630 - ? (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c >= 120746 && c <= 120770))))) - : (c <= 120779 || (c < 124928 - ? (c < 123214 - ? (c < 123191 - ? (c >= 123136 && c <= 123180) - : c <= 123197) - : (c <= 123214 || (c >= 123584 && c <= 123627))) - : (c <= 125124 || (c < 125259 - ? (c >= 125184 && c <= 125251) - : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) - : (c <= 126495 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c >= 126505 && c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173789) - : (c <= 177972 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 194560 - ? (c >= 183984 && c <= 191456) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43020 - ? (c < 4096 - ? (c < 2693 - ? (c < 1969 - ? (c < 910 - ? (c < 736 - ? (c < 186 - ? (c < 170 - ? (c < 'a' - ? (c >= 'A' && c <= 'Z') - : c <= 'z') - : (c <= 170 || c == 181)) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 + return (c < 43616 + ? (c < 3782 + ? (c < 2748 + ? (c < 2045 + ? (c < 1015 + ? (c < 710 + ? (c < 181 + ? (c < '_' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= '_' || (c < 170 + ? (c >= 'a' && c <= 'z') + : c <= 170))) + : (c <= 181 || (c < 192 + ? (c < 186 + ? c == 183 + : c <= 186) + : (c <= 214 || (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705))))) + : (c <= 721 || (c < 891 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c < 886 + ? (c >= 768 && c <= 884) + : c <= 887))) + : (c <= 893 || (c < 908 ? (c < 902 ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1646 - ? (c < 1369 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c >= 1329 && c <= 1366))) - : (c <= 1369 || (c < 1519 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))))) - : (c <= 1647 || (c < 1786 - ? (c < 1765 - ? (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749) - : (c <= 1766 || (c >= 1774 && c <= 1775))) - : (c <= 1788 || (c < 1810 + : c <= 906) + : (c <= 908 || (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013))))))) + : (c <= 1153 || (c < 1519 + ? (c < 1425 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1155 && c <= 1159) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1469 || (c < 1476 + ? (c < 1473 + ? c == 1471 + : c <= 1474) + : (c <= 1477 || (c < 1488 + ? c == 1479 + : c <= 1514))))) + : (c <= 1522 || (c < 1770 + ? (c < 1646 + ? (c < 1568 + ? (c >= 1552 && c <= 1562) + : c <= 1641) + : (c <= 1747 || (c < 1759 + ? (c >= 1749 && c <= 1756) + : c <= 1768))) + : (c <= 1788 || (c < 1869 ? (c < 1808 ? c == 1791 - : c <= 1808) - : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) - : (c <= 1969 || (c < 2474 - ? (c < 2208 - ? (c < 2074 - ? (c < 2042 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037) - : (c <= 2042 || (c >= 2048 && c <= 2069))) - : (c <= 2074 || (c < 2112 - ? (c < 2088 - ? c == 2084 - : c <= 2088) - : (c <= 2136 || (c >= 2144 && c <= 2154))))) - : (c <= 2228 || (c < 2392 - ? (c < 2365 - ? (c < 2308 - ? (c >= 2230 && c <= 2247) - : c <= 2361) - : (c <= 2365 || c == 2384)) - : (c <= 2401 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : c <= 2444) - : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2575 - ? (c < 2524 - ? (c < 2493 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2556 - ? (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))))) - : (c <= 2576 || (c < 2616 - ? (c < 2610 - ? (c < 2602 + : c <= 1866) + : (c <= 1969 || (c < 2042 + ? (c >= 1984 && c <= 2037) + : c <= 2042))))))))) + : (c <= 2045 || (c < 2558 + ? (c < 2451 + ? (c < 2200 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2185 + ? (c >= 2160 && c <= 2183) + : c <= 2190))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c < 2556 + ? (c >= 2534 && c <= 2545) + : c <= 2556))))))) + : (c <= 2558 || (c < 2635 + ? (c < 2610 + ? (c < 2575 + ? (c < 2565 + ? (c >= 2561 && c <= 2563) + : c <= 2570) + : (c <= 2576 || (c < 2602 ? (c >= 2579 && c <= 2600) - : c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) - : (c <= 2701 || (c < 3214 - ? (c < 2947 - ? (c < 2821 - ? (c < 2741 - ? (c < 2730 + : c <= 2608))) + : (c <= 2611 || (c < 2620 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2620 || (c < 2631 + ? (c >= 2622 && c <= 2626) + : c <= 2632))))) + : (c <= 2637 || (c < 2693 + ? (c < 2654 + ? (c < 2649 + ? c == 2641 + : c <= 2652) + : (c <= 2654 || (c < 2689 + ? (c >= 2662 && c <= 2677) + : c <= 2691))) + : (c <= 2701 || (c < 2730 ? (c < 2707 ? (c >= 2703 && c <= 2705) : c <= 2728) - : (c <= 2736 || (c >= 2738 && c <= 2739))) - : (c <= 2745 || (c < 2784 - ? (c < 2768 - ? c == 2749 - : c <= 2768) - : (c <= 2785 || c == 2809)))) - : (c <= 2828 || (c < 2869 - ? (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c >= 2866 && c <= 2867))) - : (c <= 2873 || (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || c == 2929)))))) - : (c <= 2947 || (c < 3024 - ? (c < 2972 - ? (c < 2962 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 + : (c <= 2736 || (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745))))))))))) + : (c <= 2757 || (c < 3168 + ? (c < 2958 + ? (c < 2866 + ? (c < 2809 + ? (c < 2768 + ? (c < 2763 + ? (c >= 2759 && c <= 2761) + : c <= 2765) + : (c <= 2768 || (c < 2790 + ? (c >= 2784 && c <= 2787) + : c <= 2799))) + : (c <= 2815 || (c < 2831 + ? (c < 2821 + ? (c >= 2817 && c <= 2819) + : c <= 2828) + : (c <= 2832 || (c < 2858 + ? (c >= 2835 && c <= 2856) + : c <= 2864))))) + : (c <= 2867 || (c < 2908 + ? (c < 2887 + ? (c < 2876 + ? (c >= 2869 && c <= 2873) + : c <= 2884) + : (c <= 2888 || (c < 2901 + ? (c >= 2891 && c <= 2893) + : c <= 2903))) + : (c <= 2909 || (c < 2929 + ? (c < 2918 + ? (c >= 2911 && c <= 2915) + : c <= 2927) + : (c <= 2929 || (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954))))))) + : (c <= 2960 || (c < 3031 + ? (c < 2984 + ? (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c >= 2990 && c <= 3001))))) - : (c <= 3024 || (c < 3133 - ? (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))) - : (c <= 3133 || (c < 3200 - ? (c < 3168 + : c <= 2980))) + : (c <= 2986 || (c < 3014 + ? (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010) + : (c <= 3016 || (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024))))) + : (c <= 3031 || (c < 3132 + ? (c < 3086 + ? (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129))) + : (c <= 3140 || (c < 3157 + ? (c < 3146 + ? (c >= 3142 && c <= 3144) + : c <= 3149) + : (c <= 3158 || (c < 3165 ? (c >= 3160 && c <= 3162) - : c <= 3169) - : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) - : (c <= 3216 || (c < 3520 - ? (c < 3346 - ? (c < 3294 - ? (c < 3253 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251) - : (c <= 3257 || c == 3261)) - : (c <= 3294 || (c < 3332 - ? (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))))) - : (c <= 3386 || (c < 3450 - ? (c < 3412 - ? (c < 3406 - ? c == 3389 + : c <= 3165))))))))) + : (c <= 3171 || (c < 3450 + ? (c < 3293 + ? (c < 3242 + ? (c < 3205 + ? (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203) + : (c <= 3212 || (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240))) + : (c <= 3251 || (c < 3270 + ? (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268) + : (c <= 3272 || (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286))))) + : (c <= 3294 || (c < 3346 + ? (c < 3313 + ? (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311) + : (c <= 3314 || (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344))) + : (c <= 3396 || (c < 3412 + ? (c < 3402 + ? (c >= 3398 && c <= 3400) : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))) - : (c <= 3455 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)))))) - : (c <= 3526 || (c < 3762 - ? (c < 3716 - ? (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))))) - : (c <= 3762 || (c < 3840 - ? (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))) - : (c <= 3840 || (c < 3913 - ? (c >= 3904 && c <= 3911) - : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) - : (c <= 4138 || (c < 8025 - ? (c < 5952 - ? (c < 4752 - ? (c < 4295 - ? (c < 4197 - ? (c < 4186 - ? (c < 4176 - ? c == 4159 - : c <= 4181) - : (c <= 4189 || c == 4193)) - : (c <= 4198 || (c < 4238 - ? (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225) - : (c <= 4238 || (c >= 4256 && c <= 4293))))) - : (c <= 4295 || (c < 4688 - ? (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4704 + : (c <= 3415 || (c < 3430 + ? (c >= 3423 && c <= 3427) + : c <= 3439))))))) + : (c <= 3455 || (c < 3570 + ? (c < 3520 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3457 && c <= 3459) + : c <= 3478) + : (c <= 3505 || (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517))) + : (c <= 3526 || (c < 3542 + ? (c < 3535 + ? c == 3530 + : c <= 3540) + : (c <= 3542 || (c < 3558 + ? (c >= 3544 && c <= 3551) + : c <= 3567))))) + : (c <= 3571 || (c < 3718 + ? (c < 3664 + ? (c < 3648 + ? (c >= 3585 && c <= 3642) + : c <= 3662) + : (c <= 3673 || (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716))) + : (c <= 3722 || (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) + : (c <= 3782 || (c < 8025 + ? (c < 5888 + ? (c < 4688 + ? (c < 3953 + ? (c < 3872 + ? (c < 3804 + ? (c < 3792 + ? (c >= 3784 && c <= 3789) + : c <= 3801) + : (c <= 3807 || (c < 3864 + ? c == 3840 + : c <= 3865))) + : (c <= 3881 || (c < 3897 + ? (c < 3895 + ? c == 3893 + : c <= 3895) + : (c <= 3897 || (c < 3913 + ? (c >= 3902 && c <= 3911) + : c <= 3948))))) + : (c <= 3972 || (c < 4256 + ? (c < 4038 + ? (c < 3993 + ? (c >= 3974 && c <= 3991) + : c <= 4028) + : (c <= 4038 || (c < 4176 + ? (c >= 4096 && c <= 4169) + : c <= 4253))) + : (c <= 4293 || (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685))))))) + : (c <= 4694 || (c < 4882 + ? (c < 4786 + ? (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))))))) - : (c <= 4784 || (c < 5024 - ? (c < 4808 - ? (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))) - : (c <= 4822 || (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))))) - : (c <= 5109 || (c < 5792 - ? (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5902 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5900) - : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) - : (c <= 5969 || (c < 7043 - ? (c < 6400 - ? (c < 6108 - ? (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312) - : (c <= 6314 || (c >= 6320 && c <= 6389))))) - : (c <= 6430 || (c < 6656 - ? (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c >= 6576 && c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6987))))))) - : (c <= 7072 || (c < 7406 - ? (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))) - : (c <= 7411 || (c < 7960 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c >= 7680 && c <= 7957))) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) - : (c <= 8025 || (c < 11631 - ? (c < 8469 - ? (c < 8150 - ? (c < 8118 + : (c <= 4744 || (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784))) + : (c <= 4789 || (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880))))) + : (c <= 4885 || (c < 5112 + ? (c < 4969 + ? (c < 4957 + ? (c >= 4888 && c <= 4954) + : c <= 4959) + : (c <= 4977 || (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109))) + : (c <= 5117 || (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))))))))) + : (c <= 5909 || (c < 6688 + ? (c < 6176 + ? (c < 6016 + ? (c < 5984 + ? (c < 5952 + ? (c >= 5919 && c <= 5940) + : c <= 5971) + : (c <= 5996 || (c < 6002 + ? (c >= 5998 && c <= 6000) + : c <= 6003))) + : (c <= 6099 || (c < 6112 + ? (c < 6108 + ? c == 6103 + : c <= 6109) + : (c <= 6121 || (c < 6159 + ? (c >= 6155 && c <= 6157) + : c <= 6169))))) + : (c <= 6264 || (c < 6470 + ? (c < 6400 + ? (c < 6320 + ? (c >= 6272 && c <= 6314) + : c <= 6389) + : (c <= 6430 || (c < 6448 + ? (c >= 6432 && c <= 6443) + : c <= 6459))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571) + : (c <= 6601 || (c < 6656 + ? (c >= 6608 && c <= 6618) + : c <= 6683))))))) + : (c <= 6750 || (c < 7232 + ? (c < 6847 + ? (c < 6800 + ? (c < 6783 + ? (c >= 6752 && c <= 6780) + : c <= 6793) + : (c <= 6809 || (c < 6832 + ? c == 6823 + : c <= 6845))) + : (c <= 6862 || (c < 7019 + ? (c < 6992 + ? (c >= 6912 && c <= 6988) + : c <= 7001) + : (c <= 7027 || (c < 7168 + ? (c >= 7040 && c <= 7155) + : c <= 7223))))) + : (c <= 7241 || (c < 7380 + ? (c < 7312 + ? (c < 7296 + ? (c >= 7245 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378))) + : (c <= 7418 || (c < 7968 + ? (c < 7960 + ? (c >= 7424 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023))))))))))) + : (c <= 8025 || (c < 11720 + ? (c < 8458 + ? (c < 8178 + ? (c < 8126 ? (c < 8031 ? (c < 8029 ? c == 8027 : c <= 8029) - : (c <= 8061 || (c >= 8064 && c <= 8116))) - : (c <= 8124 || (c < 8134 - ? (c < 8130 - ? c == 8126 - : c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))))) - : (c <= 8155 || (c < 8319 - ? (c < 8182 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180) - : (c <= 8188 || c == 8305)) - : (c <= 8319 || (c < 8455 - ? (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450) - : (c <= 8455 || (c >= 8458 && c <= 8467))))))) - : (c <= 8469 || (c < 11264 + : (c <= 8061 || (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124))) + : (c <= 8126 || (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172))))) + : (c <= 8180 || (c < 8336 + ? (c < 8276 + ? (c < 8255 + ? (c >= 8182 && c <= 8188) + : c <= 8256) + : (c <= 8276 || (c < 8319 + ? c == 8305 + : c <= 8319))) + : (c <= 8348 || (c < 8421 + ? (c < 8417 + ? (c >= 8400 && c <= 8412) + : c <= 8417) + : (c <= 8432 || (c < 8455 + ? c == 8450 + : c <= 8455))))))) + : (c <= 8467 || (c < 11499 ? (c < 8490 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || c == 8488)) + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || (c < 8488 + ? c == 8486 + : c <= 8488))) : (c <= 8505 || (c < 8526 ? (c < 8517 ? (c >= 8508 && c <= 8511) : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))) - : (c <= 11310 || (c < 11520 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) - : (c <= 11631 || (c < 12704 - ? (c < 12293 - ? (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))) - : (c <= 12295 || (c < 12445 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))))))) - : (c <= 12735 || (c < 42623 - ? (c < 42192 - ? (c < 19968 - ? (c < 13312 + : (c <= 8526 || (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492))))) + : (c <= 11507 || (c < 11647 + ? (c < 11565 + ? (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559) + : (c <= 11565 || (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631))) + : (c <= 11670 || (c < 11696 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694) + : (c <= 11702 || (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718))))))))) + : (c <= 11726 || (c < 42623 + ? (c < 12540 + ? (c < 12337 + ? (c < 11744 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 11775 || (c < 12321 + ? (c >= 12293 && c <= 12295) + : c <= 12335))) + : (c <= 12341 || (c < 12441 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12442 || (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538))))) + : (c <= 12543 || (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c >= 40960 && c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42946 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))) - : (c <= 42954 || (c < 43011 - ? (c >= 42997 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) - : (c <= 43042 || (c < 70453 - ? (c < 66176 - ? (c < 64112 - ? (c < 43697 - ? (c < 43471 - ? (c < 43261 - ? (c < 43250 - ? (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187) - : (c <= 43255 || c == 43259)) - : (c <= 43262 || (c < 43360 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43471 || (c < 43584 - ? (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43642 - ? (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))))))) - : (c <= 43697 || (c < 43793 - ? (c < 43739 - ? (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) - : (c <= 64217 || (c < 65147 - ? (c < 64326 - ? (c < 64298 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))) - : (c <= 65147 || (c < 65498 - ? (c < 65382 - ? (c < 65313 + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42539 || (c < 42612 + ? (c >= 42560 && c <= 42607) + : c <= 42621))))))) + : (c <= 42737 || (c < 43232 + ? (c < 42965 + ? (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963))) + : (c <= 42969 || (c < 43072 + ? (c < 43052 + ? (c >= 42994 && c <= 43047) + : c <= 43052) + : (c <= 43123 || (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225))))) + : (c <= 43255 || (c < 43471 + ? (c < 43312 + ? (c < 43261 + ? c == 43259 + : c <= 43309) + : (c <= 43347 || (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456))) + : (c <= 43481 || (c < 43584 + ? (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574) + : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) + : (c <= 43638 || (c < 71453 + ? (c < 67639 + ? (c < 65345 + ? (c < 64312 + ? (c < 43888 + ? (c < 43785 + ? (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881))))) + : (c <= 44010 || (c < 63744 + ? (c < 44032 + ? (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025) + : (c <= 55203 || (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310))))))) + : (c <= 64316 || (c < 65075 + ? (c < 64612 + ? (c < 64323 + ? (c < 64320 + ? c == 64318 + : c <= 64321) + : (c <= 64324 || (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605))) + : (c <= 64829 || (c < 65008 + ? (c < 64914 + ? (c >= 64848 && c <= 64911) + : c <= 64967) + : (c <= 65017 || (c < 65056 + ? (c >= 65024 && c <= 65039) + : c <= 65071))))) + : (c <= 65076 || (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65101 && c <= 65103) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65296 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))) - : (c <= 65437 || (c < 65482 + : (c <= 65305 || (c < 65343 + ? (c >= 65313 && c <= 65338) + : c <= 65343))))))))) + : (c <= 65370 || (c < 66513 + ? (c < 65664 + ? (c < 65536 + ? (c < 65482 ? (c < 65474 - ? (c >= 65440 && c <= 65470) + ? (c >= 65382 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))))) - : (c <= 65500 || (c < 65599 - ? (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) - : (c <= 66204 || (c < 68416 - ? (c < 67639 - ? (c < 66736 - ? (c < 66432 - ? (c < 66349 - ? (c < 66304 + : (c <= 65487 || (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629))))) + : (c <= 65786 || (c < 66304 + ? (c < 66176 + ? (c < 66045 + ? (c >= 65856 && c <= 65908) + : c <= 66045) + : (c <= 66204 || (c < 66272 ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))) - : (c <= 66461 || (c < 66513 - ? (c < 66504 + : c <= 66272))) + : (c <= 66335 || (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66426) + : (c <= 66461 || (c < 66504 ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))))) - : (c <= 66771 || (c < 67392 - ? (c < 66864 - ? (c < 66816 + : c <= 66511))))))) + : (c <= 66517 || (c < 66979 + ? (c < 66864 + ? (c < 66736 + ? (c < 66720 + ? (c >= 66560 && c <= 66717) + : c <= 66729) + : (c <= 66771 || (c < 66816 ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67592 - ? (c < 67584 - ? (c >= 67424 && c <= 67431) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))))))) - : (c <= 67640 || (c < 68030 - ? (c < 67808 + : c <= 66855))) + : (c <= 66915 || (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977))))) + : (c <= 66993 || (c < 67456 + ? (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431))) + : (c <= 67461 || (c < 67584 + ? (c < 67506 + ? (c >= 67463 && c <= 67504) + : c <= 67514) + : (c <= 67589 || (c < 67594 + ? c == 67592 + : c <= 67637))))))))))) + : (c <= 67640 || (c < 69956 + ? (c < 68448 + ? (c < 68101 + ? (c < 67828 ? (c < 67680 ? (c < 67647 ? c == 67644 : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))))) - : (c <= 68031 || (c < 68192 - ? (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))) + : (c <= 67702 || (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68099))))) + : (c <= 68102 || (c < 68192 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68108 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68159 + ? (c >= 68152 && c <= 68154) + : c <= 68159))) : (c <= 68220 || (c < 68297 ? (c < 68288 ? (c >= 68224 && c <= 68252) : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) - : (c <= 68437 || (c < 69968 - ? (c < 69415 - ? (c < 68800 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))))) - : (c <= 69415 || (c < 69763 + : (c <= 68326 || (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437))))))) + : (c <= 68466 || (c < 69424 + ? (c < 68912 + ? (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68903))) + : (c <= 68921 || (c < 69296 + ? (c < 69291 + ? (c >= 69248 && c <= 69289) + : c <= 69292) + : (c <= 69297 || (c < 69415 + ? (c >= 69376 && c <= 69404) + : c <= 69415))))) + : (c <= 69456 || (c < 69759 ? (c < 69600 ? (c < 69552 - ? (c >= 69424 && c <= 69445) + ? (c >= 69488 && c <= 69509) : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)))))) - : (c <= 70002 || (c < 70282 + : (c <= 69622 || (c < 69734 + ? (c >= 69632 && c <= 69702) + : c <= 69749))) + : (c <= 69818 || (c < 69872 + ? (c < 69840 + ? c == 69826 + : c <= 69864) + : (c <= 69881 || (c < 69942 + ? (c >= 69888 && c <= 69940) + : c <= 69951))))))))) + : (c <= 69959 || (c < 70459 + ? (c < 70282 ? (c < 70108 - ? (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70272 + ? (c < 70016 + ? (c < 70006 + ? (c >= 69968 && c <= 70003) + : c <= 70006) + : (c <= 70084 || (c < 70094 + ? (c >= 70089 && c <= 70092) + : c <= 70106))) + : (c <= 70108 || (c < 70206 ? (c < 70163 ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)))) - : (c <= 70285 || (c < 70415 + : c <= 70199) + : (c <= 70206 || (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280))))) + : (c <= 70285 || (c < 70405 ? (c < 70320 ? (c < 70303 ? (c >= 70287 && c <= 70301) : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) - : (c <= 70457 || (c < 113808 - ? (c < 72818 - ? (c < 71945 - ? (c < 71040 - ? (c < 70727 - ? (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))) - : (c <= 70730 || (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || c == 70855)))) - : (c <= 71086 || (c < 71352 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))) - : (c <= 71352 || (c < 71840 - ? (c < 71680 - ? (c >= 71424 && c <= 71450) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))))))) - : (c <= 71945 || (c < 72192 - ? (c < 72001 - ? (c < 71960 + : (c <= 70378 || (c < 70400 + ? (c >= 70384 && c <= 70393) + : c <= 70403))) + : (c <= 70412 || (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457))))))) + : (c <= 70468 || (c < 70855 + ? (c < 70502 + ? (c < 70480 + ? (c < 70475 + ? (c >= 70471 && c <= 70472) + : c <= 70477) + : (c <= 70480 || (c < 70493 + ? c == 70487 + : c <= 70499))) + : (c <= 70508 || (c < 70736 + ? (c < 70656 + ? (c >= 70512 && c <= 70516) + : c <= 70730) + : (c <= 70745 || (c < 70784 + ? (c >= 70750 && c <= 70753) + : c <= 70853))))) + : (c <= 70855 || (c < 71236 + ? (c < 71096 + ? (c < 71040 + ? (c >= 70864 && c <= 70873) + : c <= 71093) + : (c <= 71104 || (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232))) + : (c <= 71236 || (c < 71360 + ? (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352) + : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) + : (c <= 71467 || (c < 119973 + ? (c < 77824 + ? (c < 72760 + ? (c < 72016 + ? (c < 71945 + ? (c < 71680 + ? (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494) + : (c <= 71738 || (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942))) + : (c <= 71945 || (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)) - : (c <= 72001 || (c < 72161 + : (c <= 71989 || (c < 71995 + ? (c >= 71991 && c <= 71992) + : c <= 72003))))) + : (c <= 72025 || (c < 72263 + ? (c < 72154 ? (c < 72106 ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)))) - : (c <= 72192 || (c < 72349 - ? (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72714 - ? (c < 72704 - ? (c >= 72384 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)))))))) - : (c <= 72847 || (c < 92992 - ? (c < 73648 - ? (c < 73056 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)) - : (c <= 73061 || (c < 73112 + : c <= 72151) + : (c <= 72161 || (c < 72192 + ? (c >= 72163 && c <= 72164) + : c <= 72254))) + : (c <= 72263 || (c < 72368 + ? (c < 72349 + ? (c >= 72272 && c <= 72345) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72758))))))) + : (c <= 72768 || (c < 73056 + ? (c < 72968 + ? (c < 72850 + ? (c < 72818 + ? (c >= 72784 && c <= 72793) + : c <= 72847) + : (c <= 72871 || (c < 72960 + ? (c >= 72873 && c <= 72886) + : c <= 72966))) + : (c <= 72969 || (c < 73020 + ? (c < 73018 + ? (c >= 72971 && c <= 73014) + : c <= 73018) + : (c <= 73021 || (c < 73040 + ? (c >= 73023 && c <= 73031) + : c <= 73049))))) + : (c <= 73061 || (c < 73440 + ? (c < 73104 ? (c < 73066 ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c >= 73440 && c <= 73458))))) - : (c <= 73648 || (c < 82944 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c >= 77824 && c <= 78894))) - : (c <= 83526 || (c < 92880 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92909 || (c >= 92928 && c <= 92975))))))) - : (c <= 92995 || (c < 100352 - ? (c < 94032 - ? (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))) - : (c <= 94032 || (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))))) - : (c <= 101589 || (c < 110960 - ? (c < 110928 - ? (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878) - : (c <= 110930 || (c >= 110948 && c <= 110951))) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) - : (c <= 113817 || (c < 126469 - ? (c < 120488 - ? (c < 120005 - ? (c < 119973 - ? (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119995 + : c <= 73102) + : (c <= 73105 || (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129))) + : (c <= 73462 || (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))))))))) + : (c <= 78894 || (c < 110576 + ? (c < 93027 + ? (c < 92864 + ? (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c < 92784 + ? (c >= 92768 && c <= 92777) + : c <= 92862))) + : (c <= 92873 || (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))))) + : (c <= 93047 || (c < 94176 + ? (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c < 94095 + ? (c >= 94031 && c <= 94087) + : c <= 94111))) + : (c <= 94177 || (c < 94208 + ? (c < 94192 + ? (c >= 94179 && c <= 94180) + : c <= 94193) + : (c <= 100343 || (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640))))))) + : (c <= 110579 || (c < 118528 + ? (c < 110960 + ? (c < 110592 + ? (c < 110589 + ? (c >= 110581 && c <= 110587) + : c <= 110590) + : (c <= 110882 || (c < 110948 + ? (c >= 110928 && c <= 110930) + : c <= 110951))) + : (c <= 111355 || (c < 113792 + ? (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788) + : (c <= 113800 || (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822))))) + : (c <= 118573 || (c < 119210 + ? (c < 119149 + ? (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145) + : (c <= 119154 || (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179))) + : (c <= 119213 || (c < 119894 + ? (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892) + : (c <= 119964 || (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970))))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 ? (c < 119982 ? (c >= 119977 && c <= 119980) : c <= 119993) - : (c <= 119995 || (c >= 119997 && c <= 120003))))) - : (c <= 120069 || (c < 120123 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c >= 120094 && c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c >= 120146 && c <= 120485))))))) - : (c <= 120512 || (c < 120772 - ? (c < 120630 - ? (c < 120572 - ? (c < 120540 + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 + ? (c >= 120138 && c <= 120144) + : c <= 120485) + : (c <= 120512 || (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c >= 120746 && c <= 120770))))) - : (c <= 120779 || (c < 124928 - ? (c < 123214 - ? (c < 123191 - ? (c >= 123136 && c <= 123180) - : c <= 123197) - : (c <= 123214 || (c >= 123584 && c <= 123627))) - : (c <= 125124 || (c < 125259 - ? (c >= 125184 && c <= 125251) - : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) - : (c <= 126495 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126503 + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922) + : (c <= 123180 || (c < 123200 + ? (c >= 123184 && c <= 123197) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 ? (c < 126500 ? (c >= 126497 && c <= 126498) : c <= 126500) - : (c <= 126503 || (c >= 126505 && c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 + ? (c < 131072 + ? (c < 130032 ? (c >= 126635 && c <= 126651) - : c <= 173789) - : (c <= 177972 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 194560 - ? (c >= 183984 && c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177976) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43072 - ? (c < 3724 - ? (c < 2738 - ? (c < 2045 + return (c < 43642 + ? (c < 3784 + ? (c < 2759 + ? (c < 2048 ? (c < 1155 - ? (c < 748 - ? (c < 186 - ? (c < 170 - ? (c < 'a' - ? (c >= '0' && c <= 'Z') - : c <= 'z') - : (c <= 170 || (c < 183 - ? c == 181 - : c <= 183))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740))))) - : (c <= 748 || (c < 902 - ? (c < 886 - ? (c < 768 - ? c == 750 - : c <= 884) - : (c <= 887 || (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895))) - : (c <= 906 || (c < 931 - ? (c < 910 - ? c == 908 - : c <= 929) - : (c <= 1013 || (c >= 1015 && c <= 1153))))))) + ? (c < 736 + ? (c < 183 + ? (c < 'a' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) : (c <= 1159 || (c < 1552 ? (c < 1471 ? (c < 1369 @@ -5745,338 +6558,344 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c < 1869 ? (c >= 1808 && c <= 1866) : c <= 1969) - : (c <= 2037 || c == 2042)))))))) - : (c <= 2045 || (c < 2556 - ? (c < 2451 - ? (c < 2259 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c >= 2534 && c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 - ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 - ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) - : (c <= 2739 || (c < 3146 - ? (c < 2929 - ? (c < 2835 - ? (c < 2784 - ? (c < 2759 - ? (c < 2748 + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 ? (c >= 2741 && c <= 2745) - : c <= 2757) - : (c <= 2761 || (c < 2768 + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3174 + ? (c < 2962 + ? (c < 2869 + ? (c < 2817 + ? (c < 2784 + ? (c < 2768 ? (c >= 2763 && c <= 2765) - : c <= 2768))) - : (c <= 2787 || (c < 2817 - ? (c < 2809 + : c <= 2768) + : (c <= 2787 || (c < 2809 ? (c >= 2790 && c <= 2799) - : c <= 2815) - : (c <= 2819 || (c < 2831 + : c <= 2815))) + : (c <= 2819 || (c < 2835 + ? (c < 2831 ? (c >= 2821 && c <= 2828) - : c <= 2832))))) - : (c <= 2856 || (c < 2891 - ? (c < 2869 - ? (c < 2866 + : c <= 2832) + : (c <= 2856 || (c < 2866 ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || (c < 2887 + : c <= 2867))))) + : (c <= 2873 || (c < 2911 + ? (c < 2891 + ? (c < 2887 ? (c >= 2876 && c <= 2884) - : c <= 2888))) - : (c <= 2893 || (c < 2911 - ? (c < 2908 + : c <= 2888) + : (c <= 2893 || (c < 2908 ? (c >= 2901 && c <= 2903) - : c <= 2909) - : (c <= 2915 || (c >= 2918 && c <= 2927))))))) - : (c <= 2929 || (c < 3014 - ? (c < 2972 - ? (c < 2958 - ? (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954) - : (c <= 2960 || (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010))))) - : (c <= 3016 || (c < 3086 - ? (c < 3031 - ? (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024) - : (c <= 3031 || (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084))) - : (c <= 3088 || (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) - : (c <= 3149 || (c < 3402 - ? (c < 3270 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268))))) - : (c <= 3272 || (c < 3313 - ? (c < 3294 - ? (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286) - : (c <= 3294 || (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344) - : (c <= 3396 || (c >= 3398 && c <= 3400))))))) - : (c <= 3406 || (c < 3535 - ? (c < 3461 - ? (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))) - : (c <= 3478 || (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))))) - : (c <= 3540 || (c < 3648 - ? (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))) - : (c <= 3662 || (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) - : (c <= 3747 || (c < 7312 - ? (c < 5112 - ? (c < 4295 - ? (c < 3895 - ? (c < 3792 - ? (c < 3776 + : c <= 2909))) + : (c <= 2915 || (c < 2946 + ? (c < 2929 + ? (c >= 2918 && c <= 2927) + : c <= 2929) + : (c <= 2947 || (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960))))))) + : (c <= 2965 || (c < 3046 + ? (c < 2990 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c < 2984 + ? (c >= 2979 && c <= 2980) + : c <= 2986))) + : (c <= 3001 || (c < 3018 + ? (c < 3014 + ? (c >= 3006 && c <= 3010) + : c <= 3016) + : (c <= 3021 || (c < 3031 + ? c == 3024 + : c <= 3031))))) + : (c <= 3055 || (c < 3142 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3072 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c < 3132 + ? (c >= 3114 && c <= 3129) + : c <= 3140))) + : (c <= 3144 || (c < 3160 + ? (c < 3157 + ? (c >= 3146 && c <= 3149) + : c <= 3158) + : (c <= 3162 || (c < 3168 + ? c == 3165 + : c <= 3171))))))))) + : (c <= 3183 || (c < 3457 + ? (c < 3296 + ? (c < 3253 + ? (c < 3214 + ? (c < 3205 + ? (c >= 3200 && c <= 3203) + : c <= 3212) + : (c <= 3216 || (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251))) + : (c <= 3257 || (c < 3274 + ? (c < 3270 + ? (c >= 3260 && c <= 3268) + : c <= 3272) + : (c <= 3277 || (c < 3293 + ? (c >= 3285 && c <= 3286) + : c <= 3294))))) + : (c <= 3299 || (c < 3398 + ? (c < 3328 + ? (c < 3313 + ? (c >= 3302 && c <= 3311) + : c <= 3314) + : (c <= 3340 || (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3396))) + : (c <= 3400 || (c < 3423 + ? (c < 3412 + ? (c >= 3402 && c <= 3406) + : c <= 3415) + : (c <= 3427 || (c < 3450 + ? (c >= 3430 && c <= 3439) + : c <= 3455))))))) + : (c <= 3459 || (c < 3585 + ? (c < 3530 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))) + : (c <= 3530 || (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))))) + : (c <= 3642 || (c < 3724 + ? (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || (c < 3718 + ? c == 3716 + : c <= 3722))) + : (c <= 3747 || (c < 3776 ? (c < 3751 ? c == 3749 : c <= 3773) - : (c <= 3780 || (c < 3784 - ? c == 3782 - : c <= 3789))) - : (c <= 3801 || (c < 3864 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3865 || (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893))))) - : (c <= 3895 || (c < 3993 - ? (c < 3913 - ? (c < 3902 - ? c == 3897 - : c <= 3911) - : (c <= 3948 || (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991))) - : (c <= 4028 || (c < 4176 - ? (c < 4096 - ? c == 4038 - : c <= 4169) - : (c <= 4253 || (c >= 4256 && c <= 4293))))))) - : (c <= 4295 || (c < 4792 - ? (c < 4696 - ? (c < 4348 + : (c <= 3780 || c == 3782)))))))))))) + : (c <= 3789 || (c < 8027 + ? (c < 5919 + ? (c < 4696 + ? (c < 3974 + ? (c < 3893 + ? (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))) + : (c <= 3893 || (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))))) + : (c <= 3991 || (c < 4295 + ? (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293))) + : (c <= 4295 || (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) : (c <= 4680 || (c < 4688 ? (c >= 4682 && c <= 4685) - : c <= 4694))) - : (c <= 4696 || (c < 4746 + : c <= 4694))))))) + : (c <= 4696 || (c < 4888 + ? (c < 4792 + ? (c < 4746 ? (c < 4704 ? (c >= 4698 && c <= 4701) : c <= 4744) : (c <= 4749 || (c < 4786 ? (c >= 4752 && c <= 4784) - : c <= 4789))))) - : (c <= 4798 || (c < 4888 - ? (c < 4808 + : c <= 4789))) + : (c <= 4798 || (c < 4808 ? (c < 4802 ? c == 4800 : c <= 4805) : (c <= 4822 || (c < 4882 ? (c >= 4824 && c <= 4880) - : c <= 4885))) - : (c <= 4954 || (c < 4992 + : c <= 4885))))) + : (c <= 4954 || (c < 5121 + ? (c < 4992 ? (c < 4969 ? (c >= 4957 && c <= 4959) : c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) - : (c <= 5117 || (c < 6432 - ? (c < 6002 - ? (c < 5888 - ? (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))) - : (c <= 5900 || (c < 5952 - ? (c < 5920 - ? (c >= 5902 && c <= 5908) - : c <= 5940) - : (c <= 5971 || (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000))))) - : (c <= 6003 || (c < 6160 - ? (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103) - : (c <= 6109 || (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157))) - : (c <= 6169 || (c < 6320 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6314) - : (c <= 6389 || (c >= 6400 && c <= 6430))))))) - : (c <= 6443 || (c < 6823 - ? (c < 6608 - ? (c < 6512 - ? (c < 6470 + : (c <= 5007 || (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117))) + : (c <= 5740 || (c < 5792 + ? (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786) + : (c <= 5866 || (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909))))))))) + : (c <= 5940 || (c < 6752 + ? (c < 6272 + ? (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996) + : (c <= 6000 || (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099))) + : (c <= 6103 || (c < 6155 + ? (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121) + : (c <= 6157 || (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264))))) + : (c <= 6314 || (c < 6512 + ? (c < 6432 + ? (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430) + : (c <= 6443 || (c < 6470 ? (c >= 6448 && c <= 6459) - : c <= 6509) - : (c <= 6516 || (c < 6576 + : c <= 6509))) + : (c <= 6516 || (c < 6608 + ? (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 + : c <= 6601) + : (c <= 6618 || (c < 6688 ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 + : c <= 6750))))))) + : (c <= 6780 || (c < 7245 + ? (c < 6912 + ? (c < 6823 + ? (c < 6800 ? (c >= 6783 && c <= 6793) - : c <= 6809))))) - : (c <= 6823 || (c < 7040 - ? (c < 6912 - ? (c < 6847 + : c <= 6809) + : (c <= 6823 || (c < 6847 ? (c >= 6832 && c <= 6845) - : c <= 6848) - : (c <= 6987 || (c < 7019 + : c <= 6862))) + : (c <= 6988 || (c < 7040 + ? (c < 7019 ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 + : c <= 7027) + : (c <= 7155 || (c < 7232 ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) - : (c <= 7354 || (c < 11312 - ? (c < 8182 - ? (c < 8029 - ? (c < 7960 - ? (c < 7380 - ? (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378) - : (c <= 7418 || (c < 7675 - ? (c >= 7424 && c <= 7673) - : c <= 7957))) - : (c <= 7965 || (c < 8016 - ? (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : c <= 8027))))) - : (c <= 8029 || (c < 8134 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || (c < 8130 - ? c == 8126 - : c <= 8132))) - : (c <= 8140 || (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c >= 8178 && c <= 8180))))))) - : (c <= 8188 || (c < 8469 - ? (c < 8400 + : c <= 7241))))) + : (c <= 7293 || (c < 7424 + ? (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418))) + : (c <= 7957 || (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))))))))))) + : (c <= 8027 || (c < 11728 + ? (c < 8469 + ? (c < 8182 + ? (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180))))) + : (c <= 8188 || (c < 8400 ? (c < 8305 ? (c < 8276 ? (c >= 8255 && c <= 8256) @@ -6090,8 +6909,9 @@ static inline bool sym_identifier_character_set_4(int32_t c) { : c <= 8432) : (c <= 8450 || (c < 8458 ? c == 8455 - : c <= 8467))))) - : (c <= 8469 || (c < 8508 + : c <= 8467))))))) + : (c <= 8469 || (c < 11520 + ? (c < 8508 ? (c < 8486 ? (c < 8484 ? (c >= 8472 && c <= 8477) @@ -6103,516 +6923,561 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c < 8526 ? (c >= 8517 && c <= 8521) : c <= 8526) - : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) - : (c <= 11358 || (c < 12441 - ? (c < 11704 - ? (c < 11568 - ? (c < 11520 - ? (c < 11499 - ? (c >= 11360 && c <= 11492) - : c <= 11507) - : (c <= 11557 || (c < 11565 + : (c <= 8584 || (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11507))))) + : (c <= 11557 || (c < 11680 + ? (c < 11568 + ? (c < 11565 ? c == 11559 - : c <= 11565))) - : (c <= 11623 || (c < 11680 - ? (c < 11647 + : c <= 11565) + : (c <= 11623 || (c < 11647 ? c == 11631 - : c <= 11670) - : (c <= 11686 || (c < 11696 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 ? (c >= 11688 && c <= 11694) - : c <= 11702))))) - : (c <= 11710 || (c < 12293 - ? (c < 11728 - ? (c < 11720 + : c <= 11702) + : (c <= 11710 || (c < 11720 ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c < 11744 + : c <= 11726))))))))) + : (c <= 11734 || (c < 42775 + ? (c < 12549 + ? (c < 12344 + ? (c < 12293 + ? (c < 11744 ? (c >= 11736 && c <= 11742) - : c <= 11775))) - : (c <= 12295 || (c < 12344 - ? (c < 12337 + : c <= 11775) + : (c <= 12295 || (c < 12337 ? (c >= 12321 && c <= 12335) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))))))) - : (c <= 12442 || (c < 42240 - ? (c < 12704 - ? (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))) - : (c <= 12735 || (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c < 42192 - ? (c >= 40960 && c <= 42124) - : c <= 42237))))) - : (c <= 42508 || (c < 42786 - ? (c < 42612 - ? (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607) - : (c <= 42621 || (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783))) - : (c <= 42888 || (c < 42997 - ? (c < 42946 - ? (c >= 42891 && c <= 42943) + : c <= 12341))) + : (c <= 12348 || (c < 12445 + ? (c < 12441 + ? (c >= 12353 && c <= 12438) + : c <= 12442) + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))))) + : (c <= 12591 || (c < 42192 + ? (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))) + : (c <= 42237 || (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))))))) + : (c <= 42783 || (c < 43259 + ? (c < 42994 + ? (c < 42960 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) : c <= 42954) - : (c <= 43047 || c == 43052)))))))))))))) - : (c <= 43123 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43584 - ? (c < 43312 - ? (c < 43232 - ? (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225) - : (c <= 43255 || (c < 43261 - ? c == 43259 - : c <= 43309))) - : (c <= 43347 || (c < 43471 - ? (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456) - : (c <= 43481 || (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574))))) - : (c <= 43597 || (c < 43762 - ? (c < 43642 - ? (c < 43616 - ? (c >= 43600 && c <= 43609) - : c <= 43638) - : (c <= 43714 || (c < 43744 + : (c <= 42961 || (c < 42965 + ? c == 42963 + : c <= 42969))) + : (c <= 43047 || (c < 43136 + ? (c < 43072 + ? c == 43052 + : c <= 43123) + : (c <= 43205 || (c < 43232 + ? (c >= 43216 && c <= 43225) + : c <= 43255))))) + : (c <= 43259 || (c < 43488 + ? (c < 43360 + ? (c < 43312 + ? (c >= 43261 && c <= 43309) + : c <= 43347) + : (c <= 43388 || (c < 43471 + ? (c >= 43392 && c <= 43456) + : c <= 43481))) + : (c <= 43518 || (c < 43600 + ? (c < 43584 + ? (c >= 43520 && c <= 43574) + : c <= 43597) + : (c <= 43609 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43714 || (c < 71472 + ? (c < 67644 + ? (c < 65382 + ? (c < 64318 + ? (c < 44012 + ? (c < 43793 + ? (c < 43762 + ? (c < 43744 ? (c >= 43739 && c <= 43741) - : c <= 43759))) - : (c <= 43766 || (c < 43793 - ? (c < 43785 + : c <= 43759) + : (c <= 43766 || (c < 43785 ? (c >= 43777 && c <= 43782) - : c <= 43790) - : (c <= 43798 || (c >= 43808 && c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 + : c <= 43790))) + : (c <= 43798 || (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))))) + : (c <= 44013 || (c < 64112 + ? (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))) + : (c <= 64217 || (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))))))) + : (c <= 64318 || (c < 65101 + ? (c < 64848 + ? (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))) + : (c <= 64911 || (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))))) + : (c <= 65103 || (c < 65149 + ? (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))) + : (c <= 65149 || (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))))))))) + : (c <= 65470 || (c < 66560 + ? (c < 65856 + ? (c < 65549 + ? (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))) + : (c <= 65574 || (c < 65599 ? (c < 65596 ? (c >= 65576 && c <= 65594) : c <= 65597) : (c <= 65613 || (c < 65664 ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 + : c <= 65786))))) + : (c <= 65908 || (c < 66349 + ? (c < 66208 ? (c < 66176 ? c == 66045 : c <= 66204) : (c <= 66256 || (c < 66304 ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 + : c <= 66335))) + : (c <= 66378 || (c < 66464 ? (c < 66432 ? (c >= 66384 && c <= 66426) : c <= 66461) : (c <= 66499 || (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 + : c <= 66517))))))) + : (c <= 66717 || (c < 66995 + ? (c < 66928 + ? (c < 66776 ? (c < 66736 ? (c >= 66720 && c <= 66729) : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))) + : (c <= 66938 || (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))))) + : (c <= 67001 || (c < 67463 + ? (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))) + : (c <= 67504 || (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))))))))))) + : (c <= 67644 || (c < 69968 + ? (c < 68480 + ? (c < 68108 + ? (c < 67840 + ? (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))) + : (c <= 67861 || (c < 68030 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : c <= 68023) + : (c <= 68031 || (c < 68101 + ? (c >= 68096 && c <= 68099) + : c <= 68102))))) + : (c <= 68115 || (c < 68224 + ? (c < 68152 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : c <= 68149) + : (c <= 68154 || (c < 68192 ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 + : c <= 68220))) + : (c <= 68252 || (c < 68352 + ? (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 + : c <= 68326) + : (c <= 68405 || (c < 68448 ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 + : c <= 68466))))))) + : (c <= 68497 || (c < 69488 + ? (c < 69248 + ? (c < 68800 + ? (c < 68736 ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 + : c <= 68786) + : (c <= 68850 || (c < 68912 ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 + : c <= 68921))) + : (c <= 69289 || (c < 69376 + ? (c < 69296 ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 + : c <= 69297) + : (c <= 69404 || (c < 69424 ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 + : c <= 69456))))) + : (c <= 69509 || (c < 69826 + ? (c < 69632 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69702 || (c < 69759 + ? (c >= 69734 && c <= 69749) + : c <= 69818))) + : (c <= 69826 || (c < 69888 + ? (c < 69872 + ? (c >= 69840 && c <= 69864) + : c <= 69881) + : (c <= 69940 || (c < 69956 + ? (c >= 69942 && c <= 69951) + : c <= 69959))))))))) + : (c <= 70003 || (c < 70471 + ? (c < 70287 + ? (c < 70144 + ? (c < 70089 + ? (c < 70016 + ? c == 70006 + : c <= 70084) + : (c <= 70092 || (c < 70108 + ? (c >= 70094 && c <= 70106) + : c <= 70108))) + : (c <= 70161 || (c < 70272 + ? (c < 70206 + ? (c >= 70163 && c <= 70199) + : c <= 70206) + : (c <= 70278 || (c < 70282 + ? c == 70280 + : c <= 70285))))) + : (c <= 70301 || (c < 70415 + ? (c < 70384 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70378) + : (c <= 70393 || (c < 70405 ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 + : c <= 70412))) + : (c <= 70416 || (c < 70450 + ? (c < 70442 ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 + : c <= 70448) + : (c <= 70451 || (c < 70459 ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 + : c <= 70468))))))) + : (c <= 70472 || (c < 70864 + ? (c < 70512 + ? (c < 70487 + ? (c < 70480 ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 + : c <= 70480) + : (c <= 70487 || (c < 70502 ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 + : c <= 70508))) + : (c <= 70516 || (c < 70750 + ? (c < 70736 ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 + : c <= 70745) + : (c <= 70753 || (c < 70855 ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 + : c <= 70855))))) + : (c <= 70873 || (c < 71248 + ? (c < 71128 + ? (c < 71096 + ? (c >= 71040 && c <= 71093) + : c <= 71104) + : (c <= 71133 || (c < 71236 + ? (c >= 71168 && c <= 71232) + : c <= 71236))) + : (c <= 71257 || (c < 71424 + ? (c < 71360 + ? (c >= 71296 && c <= 71352) + : c <= 71369) + : (c <= 71450 || (c >= 71453 && c <= 71467))))))))))))) + : (c <= 71481 || (c < 119973 + ? (c < 82944 + ? (c < 72784 + ? (c < 72096 + ? (c < 71948 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71738) + : (c <= 71913 || (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945))) + : (c <= 71955 || (c < 71991 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71989) + : (c <= 71992 || (c < 72016 + ? (c >= 71995 && c <= 72003) + : c <= 72025))))) + : (c <= 72103 || (c < 72272 + ? (c < 72163 + ? (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161) + : (c <= 72164 || (c < 72263 ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 + : c <= 72263))) + : (c <= 72345 || (c < 72704 + ? (c < 72368 ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 + : c <= 72440) + : (c <= 72712 || (c < 72760 ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 + : c <= 72768))))))) + : (c <= 72793 || (c < 73063 + ? (c < 72971 + ? (c < 72873 + ? (c < 72850 ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 + : c <= 72871) + : (c <= 72886 || (c < 72968 ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 + : c <= 72969))) + : (c <= 73014 || (c < 73023 + ? (c < 73020 ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 + : c <= 73021) + : (c <= 73031 || (c < 73056 ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 + : c <= 73061))))) + : (c <= 73064 || (c < 73648 + ? (c < 73107 + ? (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105) + : (c <= 73112 || (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462))) + : (c <= 73648 || (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78894))))))))) + : (c <= 83526 || (c < 110581 + ? (c < 93053 + ? (c < 92880 + ? (c < 92768 + ? (c < 92736 ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 + : c <= 92766) + : (c <= 92777 || (c < 92864 + ? (c >= 92784 && c <= 92862) + : c <= 92873))) + : (c <= 92909 || (c < 92992 + ? (c < 92928 + ? (c >= 92912 && c <= 92916) + : c <= 92982) + : (c <= 92995 || (c < 93027 + ? (c >= 93008 && c <= 93017) + : c <= 93047))))) + : (c <= 93071 || (c < 94179 + ? (c < 94031 + ? (c < 93952 + ? (c >= 93760 && c <= 93823) + : c <= 94026) + : (c <= 94087 || (c < 94176 + ? (c >= 94095 && c <= 94111) + : c <= 94177))) + : (c <= 94180 || (c < 100352 + ? (c < 94208 + ? (c >= 94192 && c <= 94193) + : c <= 100343) + : (c <= 101589 || (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579))))))) + : (c <= 110587 || (c < 118576 + ? (c < 113664 + ? (c < 110928 + ? (c < 110592 + ? (c >= 110589 && c <= 110590) + : c <= 110882) + : (c <= 110930 || (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c < 118528 + ? (c >= 113821 && c <= 113822) + : c <= 118573))))) + : (c <= 118598 || (c < 119362 + ? (c < 119163 + ? (c < 119149 ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 + : c <= 119154) + : (c <= 119170 || (c < 119210 ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 119213))) + : (c <= 119364 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 + : c <= 120092) + : (c <= 120121 || (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 + : c <= 120485) + : (c <= 120512 || (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 + : c <= 122922) + : (c <= 123180 || (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -6634,8 +7499,8 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177976) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -6645,10 +7510,10 @@ static inline bool sym_identifier_character_set_4(int32_t c) { } static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43052 - ? (c < 3718 - ? (c < 2730 - ? (c < 2042 + return (c < 43616 + ? (c < 3782 + ? (c < 2748 + ? (c < 2045 ? (c < 1015 ? (c < 710 ? (c < 181 @@ -6657,7 +7522,7 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c >= '0' && c <= '9') : c <= 'Z') : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') + ? (c >= 'b' && c <= 'z') : c <= 170))) : (c <= 181 || (c < 192 ? (c < 186 @@ -6709,338 +7574,344 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 1808 ? c == 1791 : c <= 1866) - : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) - : (c <= 2042 || (c < 2534 - ? (c < 2447 - ? (c < 2230 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2208 - ? (c >= 2144 && c <= 2154) - : c <= 2228))) - : (c <= 2247 || (c < 2406 - ? (c < 2275 - ? (c >= 2259 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c >= 2527 && c <= 2531))))))) - : (c <= 2545 || (c < 2622 - ? (c < 2579 - ? (c < 2561 - ? (c < 2558 - ? c == 2556 - : c <= 2558) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620))))) - : (c <= 2626 || (c < 2662 - ? (c < 2641 - ? (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637) - : (c <= 2641 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2677 || (c < 2703 - ? (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3142 - ? (c < 2918 - ? (c < 2831 - ? (c < 2768 - ? (c < 2748 - ? (c < 2741 + : (c <= 1969 || (c < 2042 + ? (c >= 1984 && c <= 2037) + : c <= 2042))))))))) + : (c <= 2045 || (c < 2558 + ? (c < 2451 + ? (c < 2200 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2185 + ? (c >= 2160 && c <= 2183) + : c <= 2190))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c < 2556 + ? (c >= 2534 && c <= 2545) + : c <= 2556))))))) + : (c <= 2558 || (c < 2635 + ? (c < 2610 + ? (c < 2575 + ? (c < 2565 + ? (c >= 2561 && c <= 2563) + : c <= 2570) + : (c <= 2576 || (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608))) + : (c <= 2611 || (c < 2620 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2620 || (c < 2631 + ? (c >= 2622 && c <= 2626) + : c <= 2632))))) + : (c <= 2637 || (c < 2693 + ? (c < 2654 + ? (c < 2649 + ? c == 2641 + : c <= 2652) + : (c <= 2654 || (c < 2689 + ? (c >= 2662 && c <= 2677) + : c <= 2691))) + : (c <= 2701 || (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c < 2741 ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2757 || (c < 2763 + : c <= 2745))))))))))) + : (c <= 2757 || (c < 3168 + ? (c < 2958 + ? (c < 2866 + ? (c < 2809 + ? (c < 2768 + ? (c < 2763 ? (c >= 2759 && c <= 2761) - : c <= 2765))) - : (c <= 2768 || (c < 2809 - ? (c < 2790 + : c <= 2765) + : (c <= 2768 || (c < 2790 ? (c >= 2784 && c <= 2787) - : c <= 2799) - : (c <= 2815 || (c < 2821 + : c <= 2799))) + : (c <= 2815 || (c < 2831 + ? (c < 2821 ? (c >= 2817 && c <= 2819) - : c <= 2828))))) - : (c <= 2832 || (c < 2887 - ? (c < 2866 - ? (c < 2858 + : c <= 2828) + : (c <= 2832 || (c < 2858 ? (c >= 2835 && c <= 2856) - : c <= 2864) - : (c <= 2867 || (c < 2876 + : c <= 2864))))) + : (c <= 2867 || (c < 2908 + ? (c < 2887 + ? (c < 2876 ? (c >= 2869 && c <= 2873) - : c <= 2884))) - : (c <= 2888 || (c < 2908 - ? (c < 2901 + : c <= 2884) + : (c <= 2888 || (c < 2901 ? (c >= 2891 && c <= 2893) - : c <= 2903) - : (c <= 2909 || (c >= 2911 && c <= 2915))))))) - : (c <= 2927 || (c < 3006 - ? (c < 2969 - ? (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))))) - : (c <= 3010 || (c < 3072 - ? (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) - : (c <= 3144 || (c < 3398 - ? (c < 3260 - ? (c < 3200 - ? (c < 3160 - ? (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158) - : (c <= 3162 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))) - : (c <= 3203 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))) - : (c <= 3268 || (c < 3302 - ? (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? c == 3294 - : c <= 3299))) - : (c <= 3311 || (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c >= 3346 && c <= 3396))))))) - : (c <= 3400 || (c < 3530 - ? (c < 3457 - ? (c < 3423 - ? (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415) - : (c <= 3427 || (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455))) - : (c <= 3459 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))))) - : (c <= 3530 || (c < 3585 - ? (c < 3544 - ? (c < 3542 - ? (c >= 3535 && c <= 3540) - : c <= 3542) - : (c <= 3551 || (c < 3570 - ? (c >= 3558 && c <= 3567) - : c <= 3571))) - : (c <= 3642 || (c < 3713 - ? (c < 3664 - ? (c >= 3648 && c <= 3662) - : c <= 3673) - : (c <= 3714 || c == 3716)))))))))))) - : (c <= 3722 || (c < 7296 - ? (c < 5024 - ? (c < 4256 - ? (c < 3893 - ? (c < 3784 - ? (c < 3751 + : c <= 2903))) + : (c <= 2909 || (c < 2929 + ? (c < 2918 + ? (c >= 2911 && c <= 2915) + : c <= 2927) + : (c <= 2929 || (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954))))))) + : (c <= 2960 || (c < 3031 + ? (c < 2984 + ? (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))) + : (c <= 2986 || (c < 3014 + ? (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010) + : (c <= 3016 || (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024))))) + : (c <= 3031 || (c < 3132 + ? (c < 3086 + ? (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129))) + : (c <= 3140 || (c < 3157 + ? (c < 3146 + ? (c >= 3142 && c <= 3144) + : c <= 3149) + : (c <= 3158 || (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165))))))))) + : (c <= 3171 || (c < 3450 + ? (c < 3293 + ? (c < 3242 + ? (c < 3205 + ? (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203) + : (c <= 3212 || (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240))) + : (c <= 3251 || (c < 3270 + ? (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268) + : (c <= 3272 || (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286))))) + : (c <= 3294 || (c < 3346 + ? (c < 3313 + ? (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311) + : (c <= 3314 || (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344))) + : (c <= 3396 || (c < 3412 + ? (c < 3402 + ? (c >= 3398 && c <= 3400) + : c <= 3406) + : (c <= 3415 || (c < 3430 + ? (c >= 3423 && c <= 3427) + : c <= 3439))))))) + : (c <= 3455 || (c < 3570 + ? (c < 3520 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3457 && c <= 3459) + : c <= 3478) + : (c <= 3505 || (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517))) + : (c <= 3526 || (c < 3542 + ? (c < 3535 + ? c == 3530 + : c <= 3540) + : (c <= 3542 || (c < 3558 + ? (c >= 3544 && c <= 3551) + : c <= 3567))))) + : (c <= 3571 || (c < 3718 + ? (c < 3664 + ? (c < 3648 + ? (c >= 3585 && c <= 3642) + : c <= 3662) + : (c <= 3673 || (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716))) + : (c <= 3722 || (c < 3751 ? (c < 3749 ? (c >= 3724 && c <= 3747) : c <= 3749) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))) - : (c <= 3789 || (c < 3840 - ? (c < 3804 - ? (c >= 3792 && c <= 3801) - : c <= 3807) - : (c <= 3840 || (c < 3872 - ? (c >= 3864 && c <= 3865) - : c <= 3881))))) - : (c <= 3893 || (c < 3974 - ? (c < 3902 - ? (c < 3897 - ? c == 3895 - : c <= 3897) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4096 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038) - : (c <= 4169 || (c >= 4176 && c <= 4253))))))) - : (c <= 4293 || (c < 4786 - ? (c < 4688 - ? (c < 4304 + : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) + : (c <= 3782 || (c < 8025 + ? (c < 5888 + ? (c < 4688 + ? (c < 3953 + ? (c < 3872 + ? (c < 3804 + ? (c < 3792 + ? (c >= 3784 && c <= 3789) + : c <= 3801) + : (c <= 3807 || (c < 3864 + ? c == 3840 + : c <= 3865))) + : (c <= 3881 || (c < 3897 + ? (c < 3895 + ? c == 3893 + : c <= 3895) + : (c <= 3897 || (c < 3913 + ? (c >= 3902 && c <= 3911) + : c <= 3948))))) + : (c <= 3972 || (c < 4256 + ? (c < 4038 + ? (c < 3993 + ? (c >= 3974 && c <= 3991) + : c <= 4028) + : (c <= 4038 || (c < 4176 + ? (c >= 4096 && c <= 4169) + : c <= 4253))) + : (c <= 4293 || (c < 4304 ? (c < 4301 ? c == 4295 : c <= 4301) : (c <= 4346 || (c < 4682 ? (c >= 4348 && c <= 4680) - : c <= 4685))) - : (c <= 4694 || (c < 4704 + : c <= 4685))))))) + : (c <= 4694 || (c < 4882 + ? (c < 4786 + ? (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) : (c <= 4744 || (c < 4752 ? (c >= 4746 && c <= 4749) - : c <= 4784))))) - : (c <= 4789 || (c < 4882 - ? (c < 4802 + : c <= 4784))) + : (c <= 4789 || (c < 4802 ? (c < 4800 ? (c >= 4792 && c <= 4798) : c <= 4800) : (c <= 4805 || (c < 4824 ? (c >= 4808 && c <= 4822) - : c <= 4880))) - : (c <= 4885 || (c < 4969 + : c <= 4880))))) + : (c <= 4885 || (c < 5112 + ? (c < 4969 ? (c < 4957 ? (c >= 4888 && c <= 4954) : c <= 4959) - : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) - : (c <= 5109 || (c < 6400 - ? (c < 5998 - ? (c < 5870 - ? (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866))) - : (c <= 5880 || (c < 5920 - ? (c < 5902 - ? (c >= 5888 && c <= 5900) - : c <= 5908) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))) - : (c <= 6000 || (c < 6155 - ? (c < 6103 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 - ? (c < 6176 - ? (c >= 6160 && c <= 6169) - : c <= 6264) - : (c <= 6314 || (c >= 6320 && c <= 6389))))))) - : (c <= 6430 || (c < 6800 - ? (c < 6576 - ? (c < 6470 - ? (c < 6448 + : (c <= 4977 || (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109))) + : (c <= 5117 || (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))))))))) + : (c <= 5909 || (c < 6688 + ? (c < 6176 + ? (c < 6016 + ? (c < 5984 + ? (c < 5952 + ? (c >= 5919 && c <= 5940) + : c <= 5971) + : (c <= 5996 || (c < 6002 + ? (c >= 5998 && c <= 6000) + : c <= 6003))) + : (c <= 6099 || (c < 6112 + ? (c < 6108 + ? c == 6103 + : c <= 6109) + : (c <= 6121 || (c < 6159 + ? (c >= 6155 && c <= 6157) + : c <= 6169))))) + : (c <= 6264 || (c < 6470 + ? (c < 6400 + ? (c < 6320 + ? (c >= 6272 && c <= 6314) + : c <= 6389) + : (c <= 6430 || (c < 6448 ? (c >= 6432 && c <= 6443) - : c <= 6459) - : (c <= 6509 || (c < 6528 + : c <= 6459))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 ? (c >= 6512 && c <= 6516) - : c <= 6571))) - : (c <= 6601 || (c < 6688 - ? (c < 6656 + : c <= 6571) + : (c <= 6601 || (c < 6656 ? (c >= 6608 && c <= 6618) - : c <= 6683) - : (c <= 6750 || (c < 6783 + : c <= 6683))))))) + : (c <= 6750 || (c < 7232 + ? (c < 6847 + ? (c < 6800 + ? (c < 6783 ? (c >= 6752 && c <= 6780) - : c <= 6793))))) - : (c <= 6809 || (c < 7019 - ? (c < 6847 - ? (c < 6832 + : c <= 6793) + : (c <= 6809 || (c < 6832 ? c == 6823 - : c <= 6845) - : (c <= 6848 || (c < 6992 - ? (c >= 6912 && c <= 6987) - : c <= 7001))) - : (c <= 7027 || (c < 7232 - ? (c < 7168 + : c <= 6845))) + : (c <= 6862 || (c < 7019 + ? (c < 6992 + ? (c >= 6912 && c <= 6988) + : c <= 7001) + : (c <= 7027 || (c < 7168 ? (c >= 7040 && c <= 7155) - : c <= 7223) - : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) - : (c <= 7304 || (c < 11264 - ? (c < 8178 - ? (c < 8027 - ? (c < 7675 - ? (c < 7376 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7378 || (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7673))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))) - : (c <= 8027 || (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))) - : (c <= 8180 || (c < 8458 - ? (c < 8336 + : c <= 7223))))) + : (c <= 7241 || (c < 7380 + ? (c < 7312 + ? (c < 7296 + ? (c >= 7245 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378))) + : (c <= 7418 || (c < 7968 + ? (c < 7960 + ? (c >= 7424 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023))))))))))) + : (c <= 8025 || (c < 11720 + ? (c < 8458 + ? (c < 8178 + ? (c < 8126 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124))) + : (c <= 8126 || (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172))))) + : (c <= 8180 || (c < 8336 ? (c < 8276 ? (c < 8255 ? (c >= 8182 && c <= 8188) @@ -7054,8 +7925,9 @@ static inline bool sym_identifier_character_set_5(int32_t c) { : c <= 8417) : (c <= 8432 || (c < 8455 ? c == 8450 - : c <= 8455))))) - : (c <= 8467 || (c < 8490 + : c <= 8455))))))) + : (c <= 8467 || (c < 11499 + ? (c < 8490 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -7067,1482 +7939,563 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 8517 ? (c >= 8508 && c <= 8511) : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) - : (c <= 11310 || (c < 12353 - ? (c < 11696 - ? (c < 11565 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11507 || (c < 11559 + : (c <= 8526 || (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492))))) + : (c <= 11507 || (c < 11647 + ? (c < 11565 + ? (c < 11559 ? (c >= 11520 && c <= 11557) - : c <= 11559))) - : (c <= 11565 || (c < 11647 - ? (c < 11631 + : c <= 11559) + : (c <= 11565 || (c < 11631 ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c < 11688 + : c <= 11631))) + : (c <= 11670 || (c < 11696 + ? (c < 11688 ? (c >= 11680 && c <= 11686) - : c <= 11694))))) - : (c <= 11702 || (c < 11744 - ? (c < 11720 - ? (c < 11712 + : c <= 11694) + : (c <= 11702 || (c < 11712 ? (c >= 11704 && c <= 11710) - : c <= 11718) - : (c <= 11726 || (c < 11736 + : c <= 11718))))))))) + : (c <= 11726 || (c < 42623 + ? (c < 12540 + ? (c < 12337 + ? (c < 11744 + ? (c < 11736 ? (c >= 11728 && c <= 11734) - : c <= 11742))) - : (c <= 11775 || (c < 12337 - ? (c < 12321 + : c <= 11742) + : (c <= 11775 || (c < 12321 ? (c >= 12293 && c <= 12295) - : c <= 12335) - : (c <= 12341 || (c >= 12344 && c <= 12348))))))) - : (c <= 12438 || (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c < 40960 - ? (c >= 19968 && c <= 40956) - : c <= 42124))))) - : (c <= 42237 || (c < 42775 - ? (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))) - : (c <= 42783 || (c < 42946 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42943) - : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) - : (c <= 43052 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43520 - ? (c < 43261 - ? (c < 43216 - ? (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205) - : (c <= 43225 || (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259))) - : (c <= 43309 || (c < 43392 - ? (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388) - : (c <= 43456 || (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518))))) - : (c <= 43574 || (c < 43744 - ? (c < 43616 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609) - : (c <= 43638 || (c < 43739 + : c <= 12335))) + : (c <= 12341 || (c < 12441 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12442 || (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538))))) + : (c <= 12543 || (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42539 || (c < 42612 + ? (c >= 42560 && c <= 42607) + : c <= 42621))))))) + : (c <= 42737 || (c < 43232 + ? (c < 42965 + ? (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963))) + : (c <= 42969 || (c < 43072 + ? (c < 43052 + ? (c >= 42994 && c <= 43047) + : c <= 43052) + : (c <= 43123 || (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225))))) + : (c <= 43255 || (c < 43471 + ? (c < 43312 + ? (c < 43261 + ? c == 43259 + : c <= 43309) + : (c <= 43347 || (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456))) + : (c <= 43481 || (c < 43584 + ? (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574) + : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) + : (c <= 43638 || (c < 71453 + ? (c < 67639 + ? (c < 65345 + ? (c < 64312 + ? (c < 43888 + ? (c < 43785 + ? (c < 43744 + ? (c < 43739 ? (c >= 43642 && c <= 43714) - : c <= 43741))) - : (c <= 43759 || (c < 43785 - ? (c < 43777 + : c <= 43741) + : (c <= 43759 || (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782) - : (c <= 43790 || (c < 43808 + : c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 + : c <= 43814) + : (c <= 43822 || (c < 43868 ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 + : c <= 43881))))) + : (c <= 44010 || (c < 63744 + ? (c < 44032 + ? (c < 44016 ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 + : c <= 44025) + : (c <= 55203 || (c < 55243 ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 + : c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 + : c <= 64262) + : (c <= 64279 || (c < 64298 ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 + : c <= 64310))))))) + : (c <= 64316 || (c < 65075 + ? (c < 64612 + ? (c < 64323 + ? (c < 64320 ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 + : c <= 64321) + : (c <= 64324 || (c < 64467 ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 + : c <= 64605))) + : (c <= 64829 || (c < 65008 + ? (c < 64914 + ? (c >= 64848 && c <= 64911) + : c <= 64967) + : (c <= 65017 || (c < 65056 + ? (c >= 65024 && c <= 65039) + : c <= 65071))))) + : (c <= 65076 || (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65101 && c <= 65103) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65296 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65305 || (c < 65343 + ? (c >= 65313 && c <= 65338) + : c <= 65343))))))))) + : (c <= 65370 || (c < 66513 + ? (c < 65664 + ? (c < 65536 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65382 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629))))) + : (c <= 65786 || (c < 66304 + ? (c < 66176 + ? (c < 66045 + ? (c >= 65856 && c <= 65908) + : c <= 66045) + : (c <= 66204 || (c < 66272 + ? (c >= 66208 && c <= 66256) + : c <= 66272))) + : (c <= 66335 || (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66426) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))))))) + : (c <= 66517 || (c < 66979 + ? (c < 66864 + ? (c < 66736 + ? (c < 66720 + ? (c >= 66560 && c <= 66717) + : c <= 66729) + : (c <= 66771 || (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855))) + : (c <= 66915 || (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977))))) + : (c <= 66993 || (c < 67456 + ? (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431))) + : (c <= 67461 || (c < 67584 + ? (c < 67506 + ? (c >= 67463 && c <= 67504) + : c <= 67514) + : (c <= 67589 || (c < 67594 + ? c == 67592 + : c <= 67637))))))))))) + : (c <= 67640 || (c < 69956 + ? (c < 68448 + ? (c < 68101 + ? (c < 67828 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68099))))) + : (c <= 68102 || (c < 68192 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68108 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68159 + ? (c >= 68152 && c <= 68154) + : c <= 68159))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68326 || (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437))))))) + : (c <= 68466 || (c < 69424 + ? (c < 68912 + ? (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68903))) + : (c <= 68921 || (c < 69296 + ? (c < 69291 + ? (c >= 69248 && c <= 69289) + : c <= 69292) + : (c <= 69297 || (c < 69415 + ? (c >= 69376 && c <= 69404) + : c <= 69415))))) + : (c <= 69456 || (c < 69759 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69488 && c <= 69509) + : c <= 69572) + : (c <= 69622 || (c < 69734 + ? (c >= 69632 && c <= 69702) + : c <= 69749))) + : (c <= 69818 || (c < 69872 + ? (c < 69840 + ? c == 69826 + : c <= 69864) + : (c <= 69881 || (c < 69942 + ? (c >= 69888 && c <= 69940) + : c <= 69951))))))))) + : (c <= 69959 || (c < 70459 + ? (c < 70282 + ? (c < 70108 + ? (c < 70016 + ? (c < 70006 + ? (c >= 69968 && c <= 70003) + : c <= 70006) + : (c <= 70084 || (c < 70094 + ? (c >= 70089 && c <= 70092) + : c <= 70106))) + : (c <= 70108 || (c < 70206 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70199) + : (c <= 70206 || (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280))))) + : (c <= 70285 || (c < 70405 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70378 || (c < 70400 + ? (c >= 70384 && c <= 70393) + : c <= 70403))) + : (c <= 70412 || (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457))))))) + : (c <= 70468 || (c < 70855 + ? (c < 70502 + ? (c < 70480 + ? (c < 70475 + ? (c >= 70471 && c <= 70472) + : c <= 70477) + : (c <= 70480 || (c < 70493 + ? c == 70487 + : c <= 70499))) + : (c <= 70508 || (c < 70736 + ? (c < 70656 + ? (c >= 70512 && c <= 70516) + : c <= 70730) + : (c <= 70745 || (c < 70784 + ? (c >= 70750 && c <= 70753) + : c <= 70853))))) + : (c <= 70855 || (c < 71236 + ? (c < 71096 + ? (c < 71040 + ? (c >= 70864 && c <= 70873) + : c <= 71093) + : (c <= 71104 || (c < 71168 ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 + : c <= 71232))) + : (c <= 71236 || (c < 71360 + ? (c < 71296 ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} - -static inline bool sym_identifier_character_set_6(int32_t c) { - return (c < 43072 - ? (c < 3724 - ? (c < 2738 - ? (c < 2045 - ? (c < 1155 - ? (c < 736 - ? (c < 183 - ? (c < 'a' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) - : (c <= 183 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721))))) - : (c <= 740 || (c < 895 - ? (c < 768 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 910 - ? (c < 908 - ? (c >= 902 && c <= 906) - : c <= 908) - : (c <= 929 || (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153))))))) - : (c <= 1159 || (c < 1552 - ? (c < 1471 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c < 1425 - ? (c >= 1376 && c <= 1416) - : c <= 1469))) - : (c <= 1471 || (c < 1479 - ? (c < 1476 - ? (c >= 1473 && c <= 1474) - : c <= 1477) - : (c <= 1479 || (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522))))) - : (c <= 1562 || (c < 1791 - ? (c < 1749 - ? (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747) - : (c <= 1756 || (c < 1770 - ? (c >= 1759 && c <= 1768) - : c <= 1788))) - : (c <= 1791 || (c < 1984 - ? (c < 1869 - ? (c >= 1808 && c <= 1866) - : c <= 1969) - : (c <= 2037 || c == 2042)))))))) - : (c <= 2045 || (c < 2556 - ? (c < 2451 - ? (c < 2259 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c >= 2534 && c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 - ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 - ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) - : (c <= 2739 || (c < 3146 - ? (c < 2929 - ? (c < 2835 - ? (c < 2784 - ? (c < 2759 - ? (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757) - : (c <= 2761 || (c < 2768 - ? (c >= 2763 && c <= 2765) - : c <= 2768))) - : (c <= 2787 || (c < 2817 - ? (c < 2809 - ? (c >= 2790 && c <= 2799) - : c <= 2815) - : (c <= 2819 || (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832))))) - : (c <= 2856 || (c < 2891 - ? (c < 2869 - ? (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || (c < 2887 - ? (c >= 2876 && c <= 2884) - : c <= 2888))) - : (c <= 2893 || (c < 2911 - ? (c < 2908 - ? (c >= 2901 && c <= 2903) - : c <= 2909) - : (c <= 2915 || (c >= 2918 && c <= 2927))))))) - : (c <= 2929 || (c < 3014 - ? (c < 2972 - ? (c < 2958 - ? (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954) - : (c <= 2960 || (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010))))) - : (c <= 3016 || (c < 3086 - ? (c < 3031 - ? (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024) - : (c <= 3031 || (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084))) - : (c <= 3088 || (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) - : (c <= 3149 || (c < 3402 - ? (c < 3270 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268))))) - : (c <= 3272 || (c < 3313 - ? (c < 3294 - ? (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286) - : (c <= 3294 || (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344) - : (c <= 3396 || (c >= 3398 && c <= 3400))))))) - : (c <= 3406 || (c < 3535 - ? (c < 3461 - ? (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))) - : (c <= 3478 || (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))))) - : (c <= 3540 || (c < 3648 - ? (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))) - : (c <= 3662 || (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) - : (c <= 3747 || (c < 7312 - ? (c < 5112 - ? (c < 4295 - ? (c < 3895 - ? (c < 3792 - ? (c < 3776 - ? (c < 3751 - ? c == 3749 - : c <= 3773) - : (c <= 3780 || (c < 3784 - ? c == 3782 - : c <= 3789))) - : (c <= 3801 || (c < 3864 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3865 || (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893))))) - : (c <= 3895 || (c < 3993 - ? (c < 3913 - ? (c < 3902 - ? c == 3897 - : c <= 3911) - : (c <= 3948 || (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991))) - : (c <= 4028 || (c < 4176 - ? (c < 4096 - ? c == 4038 - : c <= 4169) - : (c <= 4253 || (c >= 4256 && c <= 4293))))))) - : (c <= 4295 || (c < 4792 - ? (c < 4696 - ? (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694))) - : (c <= 4696 || (c < 4746 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744) - : (c <= 4749 || (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789))))) - : (c <= 4798 || (c < 4888 - ? (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))) - : (c <= 4954 || (c < 4992 - ? (c < 4969 - ? (c >= 4957 && c <= 4959) - : c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) - : (c <= 5117 || (c < 6432 - ? (c < 6002 - ? (c < 5888 - ? (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))) - : (c <= 5900 || (c < 5952 - ? (c < 5920 - ? (c >= 5902 && c <= 5908) - : c <= 5940) - : (c <= 5971 || (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000))))) - : (c <= 6003 || (c < 6160 - ? (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103) - : (c <= 6109 || (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157))) - : (c <= 6169 || (c < 6320 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6314) - : (c <= 6389 || (c >= 6400 && c <= 6430))))))) - : (c <= 6443 || (c < 6823 - ? (c < 6608 - ? (c < 6512 - ? (c < 6470 - ? (c >= 6448 && c <= 6459) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809))))) - : (c <= 6823 || (c < 7040 - ? (c < 6912 - ? (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6848) - : (c <= 6987 || (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 - ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) - : (c <= 7354 || (c < 11312 - ? (c < 8182 - ? (c < 8029 - ? (c < 7960 - ? (c < 7380 - ? (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378) - : (c <= 7418 || (c < 7675 - ? (c >= 7424 && c <= 7673) - : c <= 7957))) - : (c <= 7965 || (c < 8016 - ? (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : c <= 8027))))) - : (c <= 8029 || (c < 8134 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || (c < 8130 - ? c == 8126 - : c <= 8132))) - : (c <= 8140 || (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c >= 8178 && c <= 8180))))))) - : (c <= 8188 || (c < 8469 - ? (c < 8400 - ? (c < 8305 - ? (c < 8276 - ? (c >= 8255 && c <= 8256) - : c <= 8276) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))) - : (c <= 8412 || (c < 8450 - ? (c < 8421 - ? c == 8417 - : c <= 8432) - : (c <= 8450 || (c < 8458 - ? c == 8455 - : c <= 8467))))) - : (c <= 8469 || (c < 8508 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || (c < 8490 - ? c == 8488 - : c <= 8505))) - : (c <= 8511 || (c < 8544 - ? (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526) - : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) - : (c <= 11358 || (c < 12441 - ? (c < 11704 - ? (c < 11568 - ? (c < 11520 - ? (c < 11499 - ? (c >= 11360 && c <= 11492) - : c <= 11507) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : c <= 11565))) - : (c <= 11623 || (c < 11680 - ? (c < 11647 - ? c == 11631 - : c <= 11670) - : (c <= 11686 || (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702))))) - : (c <= 11710 || (c < 12293 - ? (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c < 11744 - ? (c >= 11736 && c <= 11742) - : c <= 11775))) - : (c <= 12295 || (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12335) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))))))) - : (c <= 12442 || (c < 42240 - ? (c < 12704 - ? (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))) - : (c <= 12735 || (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c < 42192 - ? (c >= 40960 && c <= 42124) - : c <= 42237))))) - : (c <= 42508 || (c < 42786 - ? (c < 42612 - ? (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607) - : (c <= 42621 || (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783))) - : (c <= 42888 || (c < 42997 - ? (c < 42946 - ? (c >= 42891 && c <= 42943) - : c <= 42954) - : (c <= 43047 || c == 43052)))))))))))))) - : (c <= 43123 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43584 - ? (c < 43312 - ? (c < 43232 - ? (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225) - : (c <= 43255 || (c < 43261 - ? c == 43259 - : c <= 43309))) - : (c <= 43347 || (c < 43471 - ? (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456) - : (c <= 43481 || (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574))))) - : (c <= 43597 || (c < 43762 - ? (c < 43642 - ? (c < 43616 - ? (c >= 43600 && c <= 43609) - : c <= 43638) - : (c <= 43714 || (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759))) - : (c <= 43766 || (c < 43793 - ? (c < 43785 - ? (c >= 43777 && c <= 43782) - : c <= 43790) - : (c <= 43798 || (c >= 43808 && c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 + : c <= 71352) + : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) + : (c <= 71467 || (c < 119973 + ? (c < 77824 + ? (c < 72760 + ? (c < 72016 + ? (c < 71945 + ? (c < 71680 + ? (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494) + : (c <= 71738 || (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71989 || (c < 71995 + ? (c >= 71991 && c <= 71992) + : c <= 72003))))) + : (c <= 72025 || (c < 72263 + ? (c < 72154 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72151) + : (c <= 72161 || (c < 72192 + ? (c >= 72163 && c <= 72164) + : c <= 72254))) + : (c <= 72263 || (c < 72368 + ? (c < 72349 + ? (c >= 72272 && c <= 72345) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72758))))))) + : (c <= 72768 || (c < 73056 + ? (c < 72968 + ? (c < 72850 + ? (c < 72818 + ? (c >= 72784 && c <= 72793) + : c <= 72847) + : (c <= 72871 || (c < 72960 + ? (c >= 72873 && c <= 72886) + : c <= 72966))) + : (c <= 72969 || (c < 73020 + ? (c < 73018 + ? (c >= 72971 && c <= 73014) + : c <= 73018) + : (c <= 73021 || (c < 73040 + ? (c >= 73023 && c <= 73031) + : c <= 73049))))) + : (c <= 73061 || (c < 73440 + ? (c < 73104 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73102) + : (c <= 73105 || (c < 73120 ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 + : c <= 73129))) + : (c <= 73462 || (c < 74752 + ? (c < 73728 ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 + : c <= 74649) + : (c <= 74862 || (c < 77712 ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 + : c <= 77808))))))))) + : (c <= 78894 || (c < 110576 + ? (c < 93027 + ? (c < 92864 + ? (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c < 92784 + ? (c >= 92768 && c <= 92777) + : c <= 92862))) + : (c <= 92873 || (c < 92928 ? (c < 92912 ? (c >= 92880 && c <= 92909) : c <= 92916) : (c <= 92982 || (c < 93008 ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 + : c <= 93017))))) + : (c <= 93047 || (c < 94176 + ? (c < 93952 ? (c < 93760 ? (c >= 93053 && c <= 93071) : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 + : (c <= 94026 || (c < 94095 + ? (c >= 94031 && c <= 94087) + : c <= 94111))) + : (c <= 94177 || (c < 94208 + ? (c < 94192 + ? (c >= 94179 && c <= 94180) + : c <= 94193) + : (c <= 100343 || (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640))))))) + : (c <= 110579 || (c < 118528 + ? (c < 110960 + ? (c < 110592 + ? (c < 110589 + ? (c >= 110581 && c <= 110587) + : c <= 110590) + : (c <= 110882 || (c < 110948 + ? (c >= 110928 && c <= 110930) + : c <= 110951))) + : (c <= 111355 || (c < 113792 + ? (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788) + : (c <= 113800 || (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822))))) + : (c <= 118573 || (c < 119210 + ? (c < 119149 + ? (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145) + : (c <= 119154 || (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179))) + : (c <= 119213 || (c < 119894 + ? (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892) + : (c <= 119964 || (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 119970))))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 + : c <= 120092) + : (c <= 120121 || (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 + : c <= 120485) + : (c <= 120512 || (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 + : c <= 122922) + : (c <= 123180 || (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -8564,974 +8517,8 @@ static inline bool sym_identifier_character_set_6(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} - -static inline bool sym_identifier_character_set_7(int32_t c) { - return (c < 43052 - ? (c < 3718 - ? (c < 2730 - ? (c < 2042 - ? (c < 1015 - ? (c < 710 - ? (c < 181 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'b' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 891 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) - : (c <= 2042 || (c < 2534 - ? (c < 2447 - ? (c < 2230 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2208 - ? (c >= 2144 && c <= 2154) - : c <= 2228))) - : (c <= 2247 || (c < 2406 - ? (c < 2275 - ? (c >= 2259 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c >= 2527 && c <= 2531))))))) - : (c <= 2545 || (c < 2622 - ? (c < 2579 - ? (c < 2561 - ? (c < 2558 - ? c == 2556 - : c <= 2558) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620))))) - : (c <= 2626 || (c < 2662 - ? (c < 2641 - ? (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637) - : (c <= 2641 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2677 || (c < 2703 - ? (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3142 - ? (c < 2918 - ? (c < 2831 - ? (c < 2768 - ? (c < 2748 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2757 || (c < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765))) - : (c <= 2768 || (c < 2809 - ? (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799) - : (c <= 2815 || (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828))))) - : (c <= 2832 || (c < 2887 - ? (c < 2866 - ? (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864) - : (c <= 2867 || (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884))) - : (c <= 2888 || (c < 2908 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : c <= 2903) - : (c <= 2909 || (c >= 2911 && c <= 2915))))))) - : (c <= 2927 || (c < 3006 - ? (c < 2969 - ? (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))))) - : (c <= 3010 || (c < 3072 - ? (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) - : (c <= 3144 || (c < 3398 - ? (c < 3260 - ? (c < 3200 - ? (c < 3160 - ? (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158) - : (c <= 3162 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))) - : (c <= 3203 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))) - : (c <= 3268 || (c < 3302 - ? (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? c == 3294 - : c <= 3299))) - : (c <= 3311 || (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c >= 3346 && c <= 3396))))))) - : (c <= 3400 || (c < 3530 - ? (c < 3457 - ? (c < 3423 - ? (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415) - : (c <= 3427 || (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455))) - : (c <= 3459 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))))) - : (c <= 3530 || (c < 3585 - ? (c < 3544 - ? (c < 3542 - ? (c >= 3535 && c <= 3540) - : c <= 3542) - : (c <= 3551 || (c < 3570 - ? (c >= 3558 && c <= 3567) - : c <= 3571))) - : (c <= 3642 || (c < 3713 - ? (c < 3664 - ? (c >= 3648 && c <= 3662) - : c <= 3673) - : (c <= 3714 || c == 3716)))))))))))) - : (c <= 3722 || (c < 7296 - ? (c < 5024 - ? (c < 4256 - ? (c < 3893 - ? (c < 3784 - ? (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))) - : (c <= 3789 || (c < 3840 - ? (c < 3804 - ? (c >= 3792 && c <= 3801) - : c <= 3807) - : (c <= 3840 || (c < 3872 - ? (c >= 3864 && c <= 3865) - : c <= 3881))))) - : (c <= 3893 || (c < 3974 - ? (c < 3902 - ? (c < 3897 - ? c == 3895 - : c <= 3897) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4096 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038) - : (c <= 4169 || (c >= 4176 && c <= 4253))))))) - : (c <= 4293 || (c < 4786 - ? (c < 4688 - ? (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))) - : (c <= 4694 || (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))))) - : (c <= 4789 || (c < 4882 - ? (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))) - : (c <= 4885 || (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) - : (c <= 5109 || (c < 6400 - ? (c < 5998 - ? (c < 5870 - ? (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866))) - : (c <= 5880 || (c < 5920 - ? (c < 5902 - ? (c >= 5888 && c <= 5900) - : c <= 5908) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))) - : (c <= 6000 || (c < 6155 - ? (c < 6103 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 - ? (c < 6176 - ? (c >= 6160 && c <= 6169) - : c <= 6264) - : (c <= 6314 || (c >= 6320 && c <= 6389))))))) - : (c <= 6430 || (c < 6800 - ? (c < 6576 - ? (c < 6470 - ? (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459) - : (c <= 6509 || (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571))) - : (c <= 6601 || (c < 6688 - ? (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683) - : (c <= 6750 || (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793))))) - : (c <= 6809 || (c < 7019 - ? (c < 6847 - ? (c < 6832 - ? c == 6823 - : c <= 6845) - : (c <= 6848 || (c < 6992 - ? (c >= 6912 && c <= 6987) - : c <= 7001))) - : (c <= 7027 || (c < 7232 - ? (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223) - : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) - : (c <= 7304 || (c < 11264 - ? (c < 8178 - ? (c < 8027 - ? (c < 7675 - ? (c < 7376 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7378 || (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7673))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))) - : (c <= 8027 || (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))) - : (c <= 8180 || (c < 8458 - ? (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))) - : (c <= 8467 || (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) - : (c <= 11310 || (c < 12353 - ? (c < 11696 - ? (c < 11565 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11507 || (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559))) - : (c <= 11565 || (c < 11647 - ? (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694))))) - : (c <= 11702 || (c < 11744 - ? (c < 11720 - ? (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718) - : (c <= 11726 || (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742))) - : (c <= 11775 || (c < 12337 - ? (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335) - : (c <= 12341 || (c >= 12344 && c <= 12348))))))) - : (c <= 12438 || (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c < 40960 - ? (c >= 19968 && c <= 40956) - : c <= 42124))))) - : (c <= 42237 || (c < 42775 - ? (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))) - : (c <= 42783 || (c < 42946 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42943) - : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) - : (c <= 43052 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43520 - ? (c < 43261 - ? (c < 43216 - ? (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205) - : (c <= 43225 || (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259))) - : (c <= 43309 || (c < 43392 - ? (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388) - : (c <= 43456 || (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518))))) - : (c <= 43574 || (c < 43744 - ? (c < 43616 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609) - : (c <= 43638 || (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741))) - : (c <= 43759 || (c < 43785 - ? (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782) - : (c <= 43790 || (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177976) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -9545,1285 +8532,1448 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (eof) ADVANCE(67); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '"') ADVANCE(152); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(92); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(78); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'm') ADVANCE(161); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(64) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(170); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(92); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(78); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(78); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(79); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(92); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(78); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(78); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(4) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(139); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(38); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(109); - if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '[') ADVANCE(66); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(139); + if (lookahead == '(') ADVANCE(70); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(38); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(38); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(70); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(38); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '|') ADVANCE(102); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '@') ADVANCE(137); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '"') ADVANCE(152); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '\'') ADVANCE(139); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(87); + if (lookahead == '+') ADVANCE(85); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(40); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(31); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(78); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == ']') ADVANCE(76); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(101); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(13) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(87); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '/') ADVANCE(31); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(38); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(101); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(70); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(87); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '/') ADVANCE(31); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(38); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '[') ADVANCE(75); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'r') ADVANCE(159); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (('!' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == '*') ADVANCE(87); + if (lookahead == '+') ADVANCE(85); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(93); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '/') ADVANCE(31); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(38); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(101); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (('!' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == 'b') ADVANCE(154); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '\'') ADVANCE(139); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(87); + if (lookahead == '+') ADVANCE(85); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(40); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(31); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(78); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(101); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 14: - if (lookahead == '#') ADVANCE(87); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == '<') ADVANCE(96); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '+') ADVANCE(85); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(31); + if (lookahead == ':') ADVANCE(78); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '@') ADVANCE(128); + if (lookahead == ']') ADVANCE(76); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(101); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 15: - if (lookahead == '\'') ADVANCE(149); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '(') ADVANCE(70); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(31); + if (lookahead == ':') ADVANCE(38); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(41); + if (lookahead == '@') ADVANCE(128); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(101); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(15) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 16: - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); + if (lookahead == '!') ADVANCE(39); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(92); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(77); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(16) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(39); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == ':') ADVANCE(77); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 18: - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '?') ADVANCE(80); + if (lookahead == '!') ADVANCE(39); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '(') ADVANCE(70); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == '-') ADVANCE(92); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '|') ADVANCE(102); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0) ADVANCE(75); + lookahead == ' ') SKIP(18) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '/') ADVANCE(31); + if (lookahead == ':') ADVANCE(77); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(117); + if (lookahead == 'b') ADVANCE(158); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(19) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(105); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '/') ADVANCE(31); + if (lookahead == ':') ADVANCE(38); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(117); + if (lookahead == 'm') ADVANCE(161); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(20) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(106); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '/') ADVANCE(31); + if (lookahead == ':') ADVANCE(38); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(41); + if (lookahead == 'm') ADVANCE(161); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '|') ADVANCE(101); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(21) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 22: - if (lookahead == '.') ADVANCE(19); + if (lookahead == '#') ADVANCE(138); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '/') ADVANCE(31); + if (lookahead == ':') ADVANCE(77); + if (lookahead == '<') ADVANCE(124); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(22) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 23: - if (lookahead == '/') ADVANCE(151); + if (lookahead == '\'') ADVANCE(153); END_STATE(); case 24: - if (lookahead == '1') ADVANCE(26); - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); - if (lookahead == '8') ADVANCE(138); - if (lookahead == 's') ADVANCE(34); + if (lookahead == '\'') ADVANCE(153); + if (lookahead == '\\') ADVANCE(45); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 25: - if (lookahead == '2') ADVANCE(138); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(87); + if (lookahead == '+') ADVANCE(85); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(40); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(31); + if (lookahead == ':') ADVANCE(77); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(122); + if (lookahead == ']') ADVANCE(76); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(101); + if (lookahead == '}') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(25) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); case 26: - if (lookahead == '2') ADVANCE(29); - if (lookahead == '6') ADVANCE(138); + if (lookahead == '*') ADVANCE(87); + if (lookahead == '+') ADVANCE(85); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(82); + if (lookahead != 0) ADVANCE(84); END_STATE(); case 27: - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); + if (lookahead == '.') ADVANCE(133); + if (lookahead == '=') ADVANCE(134); END_STATE(); case 28: - if (lookahead == '4') ADVANCE(138); + if (lookahead == '.') ADVANCE(130); END_STATE(); case 29: - if (lookahead == '8') ADVANCE(138); + if (lookahead == '.') ADVANCE(131); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(100); + if (lookahead == '.') ADVANCE(27); END_STATE(); case 31: - if (lookahead == '=') ADVANCE(119); + if (lookahead == '/') ADVANCE(155); END_STATE(); case 32: - if (lookahead == '>') ADVANCE(95); + if (lookahead == '1') ADVANCE(34); + if (lookahead == '3') ADVANCE(33); + if (lookahead == '6') ADVANCE(36); + if (lookahead == '8') ADVANCE(142); + if (lookahead == 's') ADVANCE(43); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(138); + if (lookahead == '2') ADVANCE(142); END_STATE(); case 34: - if (lookahead == 'i') ADVANCE(37); + if (lookahead == '2') ADVANCE(37); + if (lookahead == '6') ADVANCE(142); END_STATE(); case 35: - if (lookahead == 'u') ADVANCE(38); - if (lookahead == 'x') ADVANCE(49); - if (lookahead != 0) ADVANCE(150); + if (lookahead == '3') ADVANCE(33); + if (lookahead == '6') ADVANCE(36); END_STATE(); case 36: - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(50); - if (lookahead != 0) ADVANCE(15); + if (lookahead == '4') ADVANCE(142); END_STATE(); case 37: - if (lookahead == 'z') ADVANCE(33); + if (lookahead == '8') ADVANCE(142); END_STATE(); case 38: - if (lookahead == '{') ADVANCE(47); + if (lookahead == ':') ADVANCE(136); + END_STATE(); + case 39: + if (lookahead == '=') ADVANCE(121); + END_STATE(); + case 40: + if (lookahead == '>') ADVANCE(137); + END_STATE(); + case 41: + if (lookahead == '>') ADVANCE(74); + END_STATE(); + case 42: + if (lookahead == 'e') ADVANCE(142); + END_STATE(); + case 43: + if (lookahead == 'i') ADVANCE(46); + END_STATE(); + case 44: + if (lookahead == 'u') ADVANCE(47); + if (lookahead == 'x') ADVANCE(58); + if (lookahead != 0) ADVANCE(154); + END_STATE(); + case 45: + if (lookahead == 'u') ADVANCE(48); + if (lookahead == 'x') ADVANCE(59); + if (lookahead != 0) ADVANCE(23); + END_STATE(); + case 46: + if (lookahead == 'z') ADVANCE(42); + END_STATE(); + case 47: + if (lookahead == '{') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); - case 39: - if (lookahead == '{') ADVANCE(48); + case 48: + if (lookahead == '{') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); - case 40: - if (lookahead == '}') ADVANCE(15); + case 49: + if (lookahead == '}') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); - case 41: - if (lookahead == '}') ADVANCE(150); + case 50: + if (lookahead == '}') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); - case 42: + case 51: if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(143); + lookahead == '_') ADVANCE(147); END_STATE(); - case 43: + case 52: if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); + lookahead == '_') ADVANCE(148); END_STATE(); - case 44: + case 53: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(23); END_STATE(); - case 45: + case 54: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); END_STATE(); - case 46: + case 55: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); - case 47: + case 56: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); - case 48: + case 57: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); - case 49: + case 58: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); - case 50: + case 59: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); END_STATE(); - case 51: + case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); END_STATE(); - case 52: + case 61: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); END_STATE(); - case 53: + case 62: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); END_STATE(); - case 54: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + case 63: + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); - case 55: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + case 64: + if (eof) ADVANCE(67); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(92); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(78); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '@') ADVANCE(128); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'm') ADVANCE(161); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(64) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); - case 56: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + case 65: + if (eof) ADVANCE(67); + if (lookahead == '!') ADVANCE(98); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(100); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == '*') ADVANCE(88); + if (lookahead == '+') ADVANCE(86); + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(129); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(38); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(118); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '^') ADVANCE(96); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'm') ADVANCE(161); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(102); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(65) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); - case 57: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + case 66: + if (eof) ADVANCE(67); + if (lookahead == '!') ADVANCE(97); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '#') ADVANCE(138); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '&') ADVANCE(99); + if (lookahead == '\'') ADVANCE(140); + if (lookahead == '(') ADVANCE(70); + if (lookahead == ')') ADVANCE(71); + if (lookahead == '*') ADVANCE(87); + if (lookahead == '+') ADVANCE(85); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '/') ADVANCE(31); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(38); + if (lookahead == ';') ADVANCE(68); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(89); + if (lookahead == '[') ADVANCE(75); + if (lookahead == ']') ADVANCE(76); + if (lookahead == 'b') ADVANCE(157); + if (lookahead == 'm') ADVANCE(161); + if (lookahead == 'r') ADVANCE(159); + if (lookahead == '{') ADVANCE(72); + if (lookahead == '|') ADVANCE(101); + if (lookahead == '}') ADVANCE(73); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(66) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(149); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(170); END_STATE(); - case 58: + case 67: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 59: + case 68: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 60: + case 69: ACCEPT_TOKEN(anon_sym_macro_rules_BANG); END_STATE(); - case 61: + case 70: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 62: + case 71: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 63: + case 72: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 64: + case 73: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 65: + case 74: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 66: + case 75: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 67: + case 76: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 68: + case 77: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 69: + case 78: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(100); + if (lookahead == ':') ADVANCE(136); END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); + case 79: + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 71: + case 80: ACCEPT_TOKEN(anon_sym_DOLLAR); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); END_STATE(); - case 72: + case 81: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '\n') ADVANCE(75); + if (lookahead == '\n') ADVANCE(84); if (lookahead == '*' || lookahead == '+' || - lookahead == '?') ADVANCE(151); - if (lookahead != 0) ADVANCE(72); + lookahead == '?') ADVANCE(155); + if (lookahead != 0) ADVANCE(81); END_STATE(); - case 73: + case 82: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(74); + if (lookahead == '/') ADVANCE(83); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); + lookahead == ' ') ADVANCE(82); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(84); END_STATE(); - case 74: + case 83: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(72); + if (lookahead == '/') ADVANCE(81); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(84); END_STATE(); - case 75: + case 84: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(126); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(128); - END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 81: - ACCEPT_TOKEN(sym_non_special_punctuation); - if (lookahead == '/') ADVANCE(84); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 82: - ACCEPT_TOKEN(sym_non_special_punctuation); - if (lookahead == '_') ADVANCE(82); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(166); - END_STATE(); - case 83: - ACCEPT_TOKEN(sym_non_special_punctuation); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(83); - END_STATE(); - case 84: - ACCEPT_TOKEN(sym_non_special_punctuation); - if (lookahead == '!' || - lookahead == '#' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '_' || - lookahead == '|' || - lookahead == '~') ADVANCE(84); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); + lookahead != '?') ADVANCE(84); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(107); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(109); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(108); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '>') ADVANCE(65); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(137); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(65); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(137); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(155); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(111); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(121); - if (lookahead == '>') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(113); - if (lookahead == '=') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(114); + if (lookahead == '|') ADVANCE(104); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); - if (lookahead == '>') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(132); - if (lookahead == '|') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(133); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(120); + if (lookahead == '>') ADVANCE(74); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(126); + if (lookahead == '>') ADVANCE(106); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '=') ADVANCE(129); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(105); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(132); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(133); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(133); + if (lookahead == '=') ADVANCE(134); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(107); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 138: - ACCEPT_TOKEN(sym_integer_literal); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 139: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '2') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 140: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(139); - if (lookahead == '6') ADVANCE(141); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(153); + if (lookahead == '\\') ADVANCE(45); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 141: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 142: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(42); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'o') ADVANCE(43); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == 'x') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); END_STATE(); case 143: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(143); + if (lookahead == '2') ADVANCE(150); + if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'u') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(150); END_STATE(); case 144: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); + if (lookahead == '3') ADVANCE(143); + if (lookahead == '6') ADVANCE(145); + if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'u') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(150); END_STATE(); case 145: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == '4') ADVANCE(150); + if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'u') ADVANCE(32); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(150); END_STATE(); case 146: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'b') ADVANCE(51); + if (lookahead == 'f') ADVANCE(35); + if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'o') ADVANCE(52); + if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'x') ADVANCE(61); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + lookahead == '_') ADVANCE(149); END_STATE(); case 147: - ACCEPT_TOKEN(aux_sym_string_literal_token1); + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(35); + if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'u') ADVANCE(32); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(147); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(35); + if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'u') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(148); END_STATE(); case 149: - ACCEPT_TOKEN(sym_char_literal); + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(35); + if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'u') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(149); END_STATE(); case 150: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'u') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(150); END_STATE(); case 151: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); + ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(60); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '\'') ADVANCE(16); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(sym_char_literal); END_STATE(); case 154: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 155: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(54); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(155); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(163); - if (sym_identifier_character_set_6(lookahead)) ADVANCE(166); + if (lookahead == '!') ADVANCE(69); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(158); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(166); + if (lookahead == '"') ADVANCE(151); + if (lookahead == '\'') ADVANCE(24); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(162); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '"') ADVANCE(151); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(164); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '#') ADVANCE(63); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(159); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '_') ADVANCE(167); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(170); END_STATE(); case 161: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(156); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'a') ADVANCE(162); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(170); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(161); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'c') ADVANCE(166); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(165); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(168); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 164: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(152); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'l') ADVANCE(163); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(160); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'o') ADVANCE(160); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'r') ADVANCE(165); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); END_STATE(); case 167: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(169); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(156); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); + END_STATE(); + case 169: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(164); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(170); + END_STATE(); + case 171: ACCEPT_TOKEN(sym_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); END_STATE(); default: return false; @@ -10842,16 +9992,19 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(5); if (lookahead == 'e') ADVANCE(6); if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'p') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'v') ADVANCE(16); - if (lookahead == 'w') ADVANCE(17); + if (lookahead == 'g') ADVANCE(8); + if (lookahead == 'i') ADVANCE(9); + if (lookahead == 'l') ADVANCE(10); + if (lookahead == 'm') ADVANCE(11); + if (lookahead == 'n') ADVANCE(12); + if (lookahead == 'p') ADVANCE(13); + if (lookahead == 'r') ADVANCE(14); + if (lookahead == 's') ADVANCE(15); + if (lookahead == 't') ADVANCE(16); + if (lookahead == 'u') ADVANCE(17); + if (lookahead == 'v') ADVANCE(18); + if (lookahead == 'w') ADVANCE(19); + if (lookahead == 'y') ADVANCE(20); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -10861,3187 +10014,4768 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym__); END_STATE(); case 2: - if (lookahead == 's') ADVANCE(18); - if (lookahead == 'w') ADVANCE(19); + if (lookahead == 'l') ADVANCE(21); + if (lookahead == 's') ADVANCE(22); + if (lookahead == 'u') ADVANCE(23); + if (lookahead == 'w') ADVANCE(24); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(20); - if (lookahead == 'o') ADVANCE(21); - if (lookahead == 'r') ADVANCE(22); + if (lookahead == 'l') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'r') ADVANCE(27); END_STATE(); case 4: - if (lookahead == 'h') ADVANCE(23); - if (lookahead == 'o') ADVANCE(24); - if (lookahead == 'r') ADVANCE(25); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'h') ADVANCE(29); + if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'r') ADVANCE(31); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(26); - if (lookahead == 'y') ADVANCE(27); + if (lookahead == 'e') ADVANCE(32); + if (lookahead == 'o') ADVANCE(33); + if (lookahead == 'y') ADVANCE(34); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(28); - if (lookahead == 'n') ADVANCE(29); - if (lookahead == 'x') ADVANCE(30); + if (lookahead == 'l') ADVANCE(35); + if (lookahead == 'n') ADVANCE(36); + if (lookahead == 'x') ADVANCE(37); END_STATE(); case 7: - 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); + if (lookahead == '3') ADVANCE(38); + if (lookahead == '6') ADVANCE(39); + if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'n') ADVANCE(42); + if (lookahead == 'o') ADVANCE(43); END_STATE(); case 8: - if (lookahead == '1') ADVANCE(36); - if (lookahead == '3') ADVANCE(37); - if (lookahead == '6') ADVANCE(38); - if (lookahead == '8') ADVANCE(39); - if (lookahead == 'd') ADVANCE(40); - if (lookahead == 'f') ADVANCE(41); - if (lookahead == 'm') ADVANCE(42); - if (lookahead == 'n') ADVANCE(43); - if (lookahead == 's') ADVANCE(44); - if (lookahead == 't') ADVANCE(45); + if (lookahead == 'l') ADVANCE(44); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(46); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'o') ADVANCE(48); + if (lookahead == '1') ADVANCE(45); + if (lookahead == '3') ADVANCE(46); + if (lookahead == '6') ADVANCE(47); + if (lookahead == '8') ADVANCE(48); + if (lookahead == 'd') ADVANCE(49); + if (lookahead == 'f') ADVANCE(50); + if (lookahead == 'g') ADVANCE(51); + if (lookahead == 'm') ADVANCE(52); + if (lookahead == 'n') ADVANCE(53); + if (lookahead == 's') ADVANCE(54); + if (lookahead == 't') ADVANCE(55); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(49); - if (lookahead == 'e') ADVANCE(50); - if (lookahead == 'o') ADVANCE(51); - if (lookahead == 'u') ADVANCE(52); + if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'i') ADVANCE(57); + if (lookahead == 'o') ADVANCE(58); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(53); - if (lookahead == 'u') ADVANCE(54); + if (lookahead == 'a') ADVANCE(59); + if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'u') ADVANCE(62); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(55); + if (lookahead == 'o') ADVANCE(63); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(56); - if (lookahead == 't') ADVANCE(57); - if (lookahead == 'u') ADVANCE(58); + if (lookahead == 'a') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'u') ADVANCE(66); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(59); - if (lookahead == 't') ADVANCE(60); - if (lookahead == 'y') ADVANCE(61); + if (lookahead == 'e') ADVANCE(67); END_STATE(); case 15: - if (lookahead == '1') ADVANCE(62); - if (lookahead == '3') ADVANCE(63); - if (lookahead == '6') ADVANCE(64); - if (lookahead == '8') ADVANCE(65); - if (lookahead == 'n') ADVANCE(66); - if (lookahead == 's') ADVANCE(67); + if (lookahead == 'e') ADVANCE(68); + if (lookahead == 'h') ADVANCE(69); + if (lookahead == 't') ADVANCE(70); + if (lookahead == 'u') ADVANCE(71); END_STATE(); case 16: - if (lookahead == 'i') ADVANCE(68); + if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'e') ADVANCE(73); + if (lookahead == 'r') ADVANCE(74); + if (lookahead == 't') ADVANCE(75); + if (lookahead == 'y') ADVANCE(76); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(69); + if (lookahead == '1') ADVANCE(77); + if (lookahead == '3') ADVANCE(78); + if (lookahead == '6') ADVANCE(79); + if (lookahead == '8') ADVANCE(80); + if (lookahead == 'n') ADVANCE(81); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(70); + if (lookahead == 'i') ADVANCE(83); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(71); + if (lookahead == 'a') ADVANCE(84); + if (lookahead == 'h') ADVANCE(85); + if (lookahead == 'i') ADVANCE(86); END_STATE(); case 20: - if (lookahead == 'o') ADVANCE(72); + if (lookahead == 'i') ADVANCE(87); END_STATE(); case 21: - if (lookahead == 'o') ADVANCE(73); + if (lookahead == 'l') ADVANCE(88); END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(74); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(89); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(75); + if (lookahead == 't') ADVANCE(90); END_STATE(); case 24: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'a') ADVANCE(91); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(77); + if (lookahead == 'o') ADVANCE(92); END_STATE(); case 26: - if (lookahead == 'f') ADVANCE(78); + if (lookahead == 'o') ADVANCE(93); END_STATE(); case 27: - if (lookahead == 'n') ADVANCE(79); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(80); + if (lookahead == 'g') ADVANCE(95); END_STATE(); case 29: - if (lookahead == 'u') ADVANCE(81); + if (lookahead == 'a') ADVANCE(96); END_STATE(); case 30: - if (lookahead == 'p') ADVANCE(82); - if (lookahead == 't') ADVANCE(83); + if (lookahead == 'l') ADVANCE(97); + if (lookahead == 'n') ADVANCE(98); END_STATE(); case 31: - if (lookahead == '2') ADVANCE(84); + if (lookahead == 'a') ADVANCE(99); END_STATE(); case 32: - if (lookahead == '4') ADVANCE(85); + if (lookahead == 'f') ADVANCE(100); + if (lookahead == 'n') ADVANCE(101); + if (lookahead == 'p') ADVANCE(102); + if (lookahead == 'r') ADVANCE(103); END_STATE(); case 33: - if (lookahead == 'l') ADVANCE(86); + if (lookahead == 'c') ADVANCE(104); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == 'n') ADVANCE(105); END_STATE(); case 35: - if (lookahead == 'r') ADVANCE(87); + if (lookahead == 's') ADVANCE(106); END_STATE(); case 36: - if (lookahead == '2') ADVANCE(88); - if (lookahead == '6') ADVANCE(89); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 37: - if (lookahead == '2') ADVANCE(90); + if (lookahead == 'p') ADVANCE(108); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 38: - if (lookahead == '4') ADVANCE(91); + if (lookahead == '2') ADVANCE(110); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == '4') ADVANCE(111); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'l') ADVANCE(112); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'a') ADVANCE(113); END_STATE(); case 42: - if (lookahead == 'p') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'r') ADVANCE(114); END_STATE(); case 44: - if (lookahead == 'i') ADVANCE(94); + if (lookahead == 'o') ADVANCE(115); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == '2') ADVANCE(116); + if (lookahead == '6') ADVANCE(117); END_STATE(); case 46: - if (lookahead == 't') ADVANCE(96); + if (lookahead == '2') ADVANCE(118); END_STATE(); case 47: - if (lookahead == 'f') ADVANCE(97); - if (lookahead == 't') ADVANCE(98); + if (lookahead == '4') ADVANCE(119); END_STATE(); case 48: - if (lookahead == 'o') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 49: - if (lookahead == 't') ADVANCE(100); + if (lookahead == 'e') ADVANCE(120); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(102); - if (lookahead == 'v') ADVANCE(103); + if (lookahead == 'n') ADVANCE(121); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(104); + if (lookahead == 'p') ADVANCE(122); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(105); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'l') ADVANCE(123); END_STATE(); case 54: - if (lookahead == 'b') ADVANCE(106); + if (lookahead == 'i') ADVANCE(124); END_STATE(); case 55: - if (lookahead == 'f') ADVANCE(107); - if (lookahead == 't') ADVANCE(108); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 56: - if (lookahead == 'l') ADVANCE(109); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 57: - if (lookahead == 'a') ADVANCE(110); - if (lookahead == 'm') ADVANCE(111); - if (lookahead == 'r') ADVANCE(112); + if (lookahead == 'f') ADVANCE(127); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 't') ADVANCE(129); END_STATE(); case 58: - if (lookahead == 'p') ADVANCE(113); + if (lookahead == 'o') ADVANCE(130); END_STATE(); case 59: - if (lookahead == 'a') ADVANCE(114); - if (lookahead == 'u') ADVANCE(115); + if (lookahead == 'c') ADVANCE(131); + if (lookahead == 't') ADVANCE(132); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 't') ADVANCE(133); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(116); + if (lookahead == 'd') ADVANCE(134); + if (lookahead == 'v') ADVANCE(135); END_STATE(); case 62: - if (lookahead == '2') ADVANCE(117); - if (lookahead == '6') ADVANCE(118); + if (lookahead == 's') ADVANCE(136); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 63: - if (lookahead == '2') ADVANCE(119); + if (lookahead == '_') ADVANCE(138); + if (lookahead == 'n') ADVANCE(139); END_STATE(); case 64: - if (lookahead == '4') ADVANCE(120); + if (lookahead == 'n') ADVANCE(140); + if (lookahead == 't') ADVANCE(141); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == 'o') ADVANCE(142); END_STATE(); case 66: - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 's') ADVANCE(122); + if (lookahead == 'b') ADVANCE(143); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(123); - if (lookahead == 'i') ADVANCE(124); + if (lookahead == 'c') ADVANCE(144); + if (lookahead == 'f') ADVANCE(145); + if (lookahead == 'p') ADVANCE(146); + if (lookahead == 't') ADVANCE(147); END_STATE(); case 68: - if (lookahead == 's') ADVANCE(125); + if (lookahead == 'l') ADVANCE(148); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 'i') ADVANCE(127); + if (lookahead == 'o') ADVANCE(149); END_STATE(); case 70: - if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'r') ADVANCE(152); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(129); + if (lookahead == 'p') ADVANCE(153); END_STATE(); case 72: - if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'r') ADVANCE(154); END_STATE(); case 73: - if (lookahead == 'l') ADVANCE(131); + if (lookahead == 's') ADVANCE(155); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'a') ADVANCE(156); + if (lookahead == 'u') ADVANCE(157); END_STATE(); case 75: - if (lookahead == 'r') ADVANCE(133); + ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 76: - if (lookahead == 's') ADVANCE(134); - if (lookahead == 't') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(158); END_STATE(); case 77: - if (lookahead == 't') ADVANCE(136); + if (lookahead == '2') ADVANCE(159); + if (lookahead == '6') ADVANCE(160); END_STATE(); case 78: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == '2') ADVANCE(161); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == '4') ADVANCE(162); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 81: - if (lookahead == 'm') ADVANCE(139); + if (lookahead == 'i') ADVANCE(163); + if (lookahead == 's') ADVANCE(164); END_STATE(); case 82: - if (lookahead == 'r') ADVANCE(140); + if (lookahead == 'e') ADVANCE(165); + if (lookahead == 'i') ADVANCE(166); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(141); + if (lookahead == 's') ADVANCE(167); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'r') ADVANCE(168); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'e') ADVANCE(169); + if (lookahead == 'i') ADVANCE(170); END_STATE(); case 86: - if (lookahead == 's') ADVANCE(142); + if (lookahead == 'n') ADVANCE(171); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 88: - if (lookahead == '8') ADVANCE(143); + if (lookahead == 'o') ADVANCE(173); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == 'n') ADVANCE(174); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_i32); + if (lookahead == 'o') ADVANCE(175); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_i64); + if (lookahead == 'i') ADVANCE(176); END_STATE(); case 92: - if (lookahead == 'n') ADVANCE(144); + if (lookahead == 'c') ADVANCE(177); END_STATE(); case 93: - if (lookahead == 'l') ADVANCE(145); + if (lookahead == 'l') ADVANCE(178); END_STATE(); case 94: - if (lookahead == 'z') ADVANCE(146); + if (lookahead == 'a') ADVANCE(179); END_STATE(); case 95: - if (lookahead == 'm') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_cfg); + if (lookahead == '_') ADVANCE(180); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'd') ADVANCE(182); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 's') ADVANCE(183); + if (lookahead == 't') ADVANCE(184); END_STATE(); case 99: - if (lookahead == 'p') ADVANCE(150); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 100: - if (lookahead == 'c') ADVANCE(151); + if (lookahead == 'a') ADVANCE(186); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(152); + if (lookahead == 'y') ADVANCE(187); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_mod); + if (lookahead == 'r') ADVANCE(188); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'i') ADVANCE(189); END_STATE(); case 104: - ACCEPT_TOKEN(sym_mutable_specifier); + ACCEPT_TOKEN(anon_sym_doc); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_pub); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_ref); + if (lookahead == 'm') ADVANCE(191); END_STATE(); case 108: - if (lookahead == 'u') ADVANCE(155); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 109: - if (lookahead == 'f') ADVANCE(156); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 110: - if (lookahead == 't') ADVANCE(157); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 111: - if (lookahead == 't') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(159); + if (lookahead == 's') ADVANCE(195); END_STATE(); case 113: - if (lookahead == 'e') ADVANCE(160); + if (lookahead == 't') ADVANCE(196); END_STATE(); case 114: - if (lookahead == 'i') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'b') ADVANCE(197); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'b') ADVANCE(198); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(163); + if (lookahead == '8') ADVANCE(199); END_STATE(); case 117: - if (lookahead == '8') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_u16); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_u32); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_u64); + if (lookahead == 'n') ADVANCE(200); END_STATE(); case 121: - if (lookahead == 'o') ADVANCE(165); + if (lookahead == 'o') ADVANCE(201); END_STATE(); case 122: - if (lookahead == 'a') ADVANCE(166); + if (lookahead == 'l') ADVANCE(202); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'i') ADVANCE(203); END_STATE(); case 124: - if (lookahead == 'z') ADVANCE(167); + if (lookahead == 'z') ADVANCE(204); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_vis); + if (lookahead == 'm') ADVANCE(205); END_STATE(); case 126: - if (lookahead == 'r') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 127: - if (lookahead == 'l') ADVANCE(169); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 128: - if (lookahead == 'c') ADVANCE(170); + if (lookahead == 'k') ADVANCE(207); END_STATE(); case 129: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'e') ADVANCE(208); END_STATE(); case 130: - if (lookahead == 'k') ADVANCE(172); + if (lookahead == 'p') ADVANCE(209); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'r') ADVANCE(210); END_STATE(); case 132: - if (lookahead == 'k') ADVANCE(173); + if (lookahead == 'c') ADVANCE(211); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 'a') ADVANCE(212); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(175); + if (lookahead == 'e') ADVANCE(213); END_STATE(); case 136: - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 't') ADVANCE(214); END_STATE(); case 137: - if (lookahead == 'u') ADVANCE(177); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'i') ADVANCE(216); + if (lookahead == 'l') ADVANCE(217); + if (lookahead == 'm') ADVANCE(218); + if (lookahead == 's') ADVANCE(219); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == '_') ADVANCE(220); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_expr); + if (lookahead == 'i') ADVANCE(221); END_STATE(); case 141: - if (lookahead == 'r') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(222); END_STATE(); case 142: - if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'c') ADVANCE(223); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_i128); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 144: - if (lookahead == 't') ADVANCE(180); + if (lookahead == 'u') ADVANCE(224); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_impl); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'r') ADVANCE(225); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_item); + if (lookahead == 'u') ADVANCE(226); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(182); + if (lookahead == 'f') ADVANCE(227); END_STATE(); case 149: - if (lookahead == 'r') ADVANCE(183); + if (lookahead == 'u') ADVANCE(228); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == 't') ADVANCE(229); END_STATE(); case 151: - if (lookahead == 'h') ADVANCE(184); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_meta); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(231); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_move); + if (lookahead == 'e') ADVANCE(232); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_path); + if (lookahead == 'g') ADVANCE(233); END_STATE(); case 155: - if (lookahead == 'r') ADVANCE(185); + if (lookahead == 't') ADVANCE(234); END_STATE(); case 156: - ACCEPT_TOKEN(sym_self); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'i') ADVANCE(236); END_STATE(); case 157: - if (lookahead == 'i') ADVANCE(186); + if (lookahead == 'e') ADVANCE(237); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_stmt); + if (lookahead == 'e') ADVANCE(238); END_STATE(); case 159: - if (lookahead == 'c') ADVANCE(187); + if (lookahead == '8') ADVANCE(239); END_STATE(); case 160: - if (lookahead == 'r') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 161: - if (lookahead == 't') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'o') ADVANCE(240); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_u128); + if (lookahead == 'a') ADVANCE(241); END_STATE(); case 165: - if (lookahead == 'n') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'd') ADVANCE(242); END_STATE(); case 166: - if (lookahead == 'f') ADVANCE(191); + if (lookahead == 'z') ADVANCE(243); END_STATE(); case 167: - if (lookahead == 'e') ADVANCE(192); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 168: - if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'n') ADVANCE(244); END_STATE(); case 169: - if (lookahead == 'e') ADVANCE(194); + if (lookahead == 'r') ADVANCE(245); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'l') ADVANCE(246); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'd') ADVANCE(247); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'l') ADVANCE(248); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'w') ADVANCE(249); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'c') ADVANCE(250); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(195); + if (lookahead == 'm') ADVANCE(251); END_STATE(); case 176: - ACCEPT_TOKEN(sym_crate); + if (lookahead == 't') ADVANCE(252); END_STATE(); case 177: - if (lookahead == 'l') ADVANCE(196); + if (lookahead == 'k') ADVANCE(253); END_STATE(); case 178: - if (lookahead == 'n') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'k') ADVANCE(254); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == 'a') ADVANCE(255); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_isize); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 182: - if (lookahead == 'i') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_cold); END_STATE(); case 183: - if (lookahead == 'a') ADVANCE(199); + if (lookahead == 't') ADVANCE(256); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'i') ADVANCE(257); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(200); + if (lookahead == 'e') ADVANCE(258); END_STATE(); case 186: - if (lookahead == 'c') ADVANCE(201); + if (lookahead == 'u') ADVANCE(259); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_deny); END_STATE(); case 188: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'e') ADVANCE(260); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 'v') ADVANCE(261); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_union); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 191: - if (lookahead == 'e') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_usize); + if (lookahead == 'r') ADVANCE(262); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'r') ADVANCE(263); END_STATE(); case 195: - if (lookahead == 'u') ADVANCE(204); + if (lookahead == 'e') ADVANCE(264); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(205); + if (lookahead == 'u') ADVANCE(265); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'i') ADVANCE(266); END_STATE(); case 198: - if (lookahead == 'm') ADVANCE(206); + if (lookahead == 'a') ADVANCE(267); END_STATE(); case 199: - if (lookahead == 'l') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 't') ADVANCE(268); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'r') ADVANCE(269); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_unsafe); + if (lookahead == 'n') ADVANCE(270); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'e') ADVANCE(271); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(209); + if (lookahead == 't') ADVANCE(272); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_literal); + ACCEPT_TOKEN(anon_sym_link); + if (lookahead == '_') ADVANCE(273); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'r') ADVANCE(274); END_STATE(); case 209: + ACCEPT_TOKEN(anon_sym_loop); + END_STATE(); + case 210: + if (lookahead == 'o') ADVANCE(275); + END_STATE(); + case 211: + if (lookahead == 'h') ADVANCE(276); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_meta); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_move); + END_STATE(); + case 214: + if (lookahead == '_') ADVANCE(277); + END_STATE(); + case 215: + if (lookahead == 'u') ADVANCE(278); + END_STATE(); + case 216: + if (lookahead == 'm') ADVANCE(279); + END_STATE(); + case 217: + if (lookahead == 'i') ADVANCE(280); + END_STATE(); + case 218: + if (lookahead == 'a') ADVANCE(281); + END_STATE(); + case 219: + if (lookahead == 't') ADVANCE(282); + END_STATE(); + case 220: + if (lookahead == 'e') ADVANCE(283); + END_STATE(); + case 221: + if (lookahead == 'c') ADVANCE(284); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_path); + END_STATE(); + case 223: + if (lookahead == '_') ADVANCE(285); + END_STATE(); + case 224: + if (lookahead == 'r') ADVANCE(286); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_repr); + END_STATE(); + case 226: + if (lookahead == 'r') ADVANCE(287); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_self); + END_STATE(); + case 228: + if (lookahead == 'l') ADVANCE(288); + END_STATE(); + case 229: + if (lookahead == 'i') ADVANCE(289); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_stmt); + END_STATE(); + case 231: + if (lookahead == 'c') ADVANCE(290); + END_STATE(); + case 232: + if (lookahead == 'r') ADVANCE(291); + END_STATE(); + case 233: + if (lookahead == 'e') ADVANCE(292); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_test); + END_STATE(); + case 235: + if (lookahead == 'k') ADVANCE(293); + END_STATE(); + case 236: + if (lookahead == 't') ADVANCE(294); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == '_') ADVANCE(295); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_u128); + END_STATE(); + case 240: + if (lookahead == 'n') ADVANCE(296); + END_STATE(); + case 241: + if (lookahead == 'f') ADVANCE(297); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym_used); + END_STATE(); + case 243: + if (lookahead == 'e') ADVANCE(298); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_warn); + END_STATE(); + case 245: + if (lookahead == 'e') ADVANCE(299); + END_STATE(); + case 246: + if (lookahead == 'e') ADVANCE(300); + END_STATE(); + case 247: + if (lookahead == 'o') ADVANCE(301); + END_STATE(); + case 248: + if (lookahead == 'd') ADVANCE(302); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_allow); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 251: + if (lookahead == 'a') ADVANCE(303); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_block); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 255: + if (lookahead == 't') ADVANCE(304); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 257: + if (lookahead == 'n') ADVANCE(305); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_crate); + if (lookahead == '_') ADVANCE(306); + END_STATE(); + case 259: + if (lookahead == 'l') ADVANCE(307); + END_STATE(); + case 260: + if (lookahead == 'c') ADVANCE(308); + END_STATE(); + case 261: + if (lookahead == 'e') ADVANCE(309); + END_STATE(); + case 262: + if (lookahead == 't') ADVANCE(310); + END_STATE(); + case 263: + if (lookahead == 'n') ADVANCE(311); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 265: + if (lookahead == 'r') ADVANCE(312); + END_STATE(); + case 266: + if (lookahead == 'd') ADVANCE(313); + END_STATE(); + case 267: + if (lookahead == 'l') ADVANCE(314); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_ident); + END_STATE(); + case 269: + if (lookahead == 'e') ADVANCE(315); + END_STATE(); + case 270: + if (lookahead == 'e') ADVANCE(316); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym_isize); + END_STATE(); + case 272: + if (lookahead == 'i') ADVANCE(317); + END_STATE(); + case 273: + if (lookahead == 'n') ADVANCE(318); + if (lookahead == 's') ADVANCE(319); + END_STATE(); + case 274: + if (lookahead == 'a') ADVANCE(320); + END_STATE(); + case 275: + if (lookahead == '_') ADVANCE(321); + END_STATE(); + case 276: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 277: + if (lookahead == 'u') ADVANCE(322); + END_STATE(); + case 278: + if (lookahead == 'i') ADVANCE(323); + END_STATE(); + case 279: + if (lookahead == 'p') ADVANCE(324); + END_STATE(); + case 280: + if (lookahead == 'n') ADVANCE(325); + END_STATE(); + case 281: + if (lookahead == 'i') ADVANCE(326); + if (lookahead == 'n') ADVANCE(327); + END_STATE(); + case 282: + if (lookahead == 'd') ADVANCE(328); + END_STATE(); + case 283: + if (lookahead == 'x') ADVANCE(329); + END_STATE(); + case 284: + if (lookahead == '_') ADVANCE(330); + END_STATE(); + case 285: + if (lookahead == 'm') ADVANCE(331); + END_STATE(); + case 286: + if (lookahead == 's') ADVANCE(332); + END_STATE(); + case 287: + if (lookahead == 'n') ADVANCE(333); + END_STATE(); + case 288: + if (lookahead == 'd') ADVANCE(334); + END_STATE(); + case 289: + if (lookahead == 'c') ADVANCE(335); + END_STATE(); + case 290: + if (lookahead == 't') ADVANCE(336); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 292: + if (lookahead == 't') ADVANCE(337); + END_STATE(); + case 293: + if (lookahead == '_') ADVANCE(338); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_trait); + END_STATE(); + case 295: + if (lookahead == 'l') ADVANCE(339); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 297: + if (lookahead == 'e') ADVANCE(340); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_usize); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 301: + if (lookahead == 'w') ADVANCE(341); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 303: + if (lookahead == 't') ADVANCE(342); + END_STATE(); + case 304: + if (lookahead == 't') ADVANCE(343); + END_STATE(); + case 305: + if (lookahead == 'u') ADVANCE(344); + END_STATE(); + case 306: + if (lookahead == 'n') ADVANCE(345); + if (lookahead == 't') ADVANCE(346); + END_STATE(); + case 307: + if (lookahead == 't') ADVANCE(347); + END_STATE(); + case 308: + if (lookahead == 'a') ADVANCE(348); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_derive); + END_STATE(); + case 310: + if (lookahead == '_') ADVANCE(349); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 312: + if (lookahead == 'e') ADVANCE(350); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_forbid); + END_STATE(); + case 314: + if (lookahead == '_') ADVANCE(351); + END_STATE(); + case 315: + ACCEPT_TOKEN(anon_sym_ignore); + END_STATE(); + case 316: + ACCEPT_TOKEN(anon_sym_inline); + END_STATE(); + case 317: + if (lookahead == 'm') ADVANCE(352); + END_STATE(); + case 318: + if (lookahead == 'a') ADVANCE(353); + END_STATE(); + case 319: + if (lookahead == 'e') ADVANCE(354); + END_STATE(); + case 320: + if (lookahead == 'l') ADVANCE(355); + END_STATE(); + case 321: + if (lookahead == 'e') ADVANCE(356); + if (lookahead == 'u') ADVANCE(357); + END_STATE(); + case 322: + if (lookahead == 's') ADVANCE(358); + END_STATE(); + case 323: + if (lookahead == 'l') ADVANCE(359); + END_STATE(); + case 324: + if (lookahead == 'l') ADVANCE(360); + END_STATE(); + case 325: + if (lookahead == 'k') ADVANCE(361); + END_STATE(); + case 326: + if (lookahead == 'n') ADVANCE(362); + END_STATE(); + case 327: + if (lookahead == 'g') ADVANCE(363); + END_STATE(); + case 328: + ACCEPT_TOKEN(anon_sym_no_std); + END_STATE(); + case 329: + if (lookahead == 'h') ADVANCE(364); + END_STATE(); + case 330: + if (lookahead == 'h') ADVANCE(365); + END_STATE(); + case 331: + if (lookahead == 'a') ADVANCE(366); + END_STATE(); + case 332: + if (lookahead == 'i') ADVANCE(367); + END_STATE(); + case 333: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 334: + if (lookahead == '_') ADVANCE(368); + END_STATE(); + case 335: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 336: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 337: + if (lookahead == '_') ADVANCE(369); + END_STATE(); + case 338: + if (lookahead == 'c') ADVANCE(370); + END_STATE(); + case 339: + if (lookahead == 'e') ADVANCE(371); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_unsafe); + END_STATE(); + case 341: + if (lookahead == 's') ADVANCE(372); + END_STATE(); + case 342: + if (lookahead == 'i') ADVANCE(373); + END_STATE(); + case 343: + if (lookahead == 'r') ADVANCE(374); + END_STATE(); + case 344: + if (lookahead == 'e') ADVANCE(375); + END_STATE(); + case 345: + if (lookahead == 'a') ADVANCE(376); + END_STATE(); + case 346: + if (lookahead == 'y') ADVANCE(377); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 348: + if (lookahead == 't') ADVANCE(378); + END_STATE(); + case 349: + if (lookahead == 'n') ADVANCE(379); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_feature); + END_STATE(); + case 351: + if (lookahead == 'a') ADVANCE(380); + END_STATE(); + case 352: + if (lookahead == 'e') ADVANCE(381); + END_STATE(); + case 353: + if (lookahead == 'm') ADVANCE(382); + END_STATE(); + case 354: + if (lookahead == 'c') ADVANCE(383); + END_STATE(); + case 355: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 356: + if (lookahead == 'x') ADVANCE(384); + END_STATE(); + case 357: + if (lookahead == 's') ADVANCE(385); + END_STATE(); + case 358: + if (lookahead == 'e') ADVANCE(386); + END_STATE(); + case 359: + if (lookahead == 't') ADVANCE(387); + END_STATE(); + case 360: + if (lookahead == 'i') ADVANCE(388); + END_STATE(); + case 361: + ACCEPT_TOKEN(anon_sym_no_link); + END_STATE(); + case 362: + ACCEPT_TOKEN(anon_sym_no_main); + END_STATE(); + case 363: + if (lookahead == 'l') ADVANCE(389); + END_STATE(); + case 364: + if (lookahead == 'a') ADVANCE(390); + END_STATE(); + case 365: + if (lookahead == 'a') ADVANCE(391); + END_STATE(); + case 366: + if (lookahead == 'c') ADVANCE(392); + END_STATE(); + case 367: + if (lookahead == 'o') ADVANCE(393); + END_STATE(); + case 368: + if (lookahead == 'p') ADVANCE(394); + END_STATE(); + case 369: + if (lookahead == 'f') ADVANCE(395); + END_STATE(); + case 370: + if (lookahead == 'a') ADVANCE(396); + END_STATE(); + case 371: + if (lookahead == 'n') ADVANCE(397); + END_STATE(); + case 372: + if (lookahead == '_') ADVANCE(398); + END_STATE(); + case 373: + if (lookahead == 'c') ADVANCE(399); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_cfg_attr); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 376: + if (lookahead == 'm') ADVANCE(400); + END_STATE(); + case 377: + if (lookahead == 'p') ADVANCE(401); + END_STATE(); + case 378: + if (lookahead == 'e') ADVANCE(402); + END_STATE(); + case 379: + if (lookahead == 'a') ADVANCE(403); + END_STATE(); + case 380: + if (lookahead == 'l') ADVANCE(404); + END_STATE(); + case 381: ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 57, .external_lex_state = 2}, - [2] = {.lex_state = 57, .external_lex_state = 2}, - [3] = {.lex_state = 57, .external_lex_state = 2}, - [4] = {.lex_state = 57, .external_lex_state = 2}, - [5] = {.lex_state = 57, .external_lex_state = 2}, - [6] = {.lex_state = 57, .external_lex_state = 2}, - [7] = {.lex_state = 57, .external_lex_state = 2}, - [8] = {.lex_state = 57, .external_lex_state = 2}, - [9] = {.lex_state = 57, .external_lex_state = 2}, - [10] = {.lex_state = 57, .external_lex_state = 2}, - [11] = {.lex_state = 57, .external_lex_state = 2}, - [12] = {.lex_state = 57, .external_lex_state = 2}, - [13] = {.lex_state = 57, .external_lex_state = 2}, - [14] = {.lex_state = 57, .external_lex_state = 2}, - [15] = {.lex_state = 57, .external_lex_state = 2}, - [16] = {.lex_state = 57, .external_lex_state = 2}, - [17] = {.lex_state = 1, .external_lex_state = 2}, - [18] = {.lex_state = 1, .external_lex_state = 2}, - [19] = {.lex_state = 1, .external_lex_state = 2}, - [20] = {.lex_state = 1, .external_lex_state = 2}, - [21] = {.lex_state = 1, .external_lex_state = 2}, - [22] = {.lex_state = 1, .external_lex_state = 2}, - [23] = {.lex_state = 1, .external_lex_state = 2}, - [24] = {.lex_state = 1, .external_lex_state = 2}, - [25] = {.lex_state = 1, .external_lex_state = 2}, - [26] = {.lex_state = 1, .external_lex_state = 2}, - [27] = {.lex_state = 5, .external_lex_state = 2}, - [28] = {.lex_state = 5, .external_lex_state = 2}, - [29] = {.lex_state = 5, .external_lex_state = 2}, - [30] = {.lex_state = 5, .external_lex_state = 2}, - [31] = {.lex_state = 5, .external_lex_state = 2}, - [32] = {.lex_state = 56, .external_lex_state = 2}, - [33] = {.lex_state = 5, .external_lex_state = 2}, - [34] = {.lex_state = 56, .external_lex_state = 2}, - [35] = {.lex_state = 5, .external_lex_state = 2}, - [36] = {.lex_state = 56, .external_lex_state = 2}, - [37] = {.lex_state = 5, .external_lex_state = 2}, - [38] = {.lex_state = 56, .external_lex_state = 2}, - [39] = {.lex_state = 5, .external_lex_state = 2}, - [40] = {.lex_state = 56, .external_lex_state = 2}, - [41] = {.lex_state = 5, .external_lex_state = 2}, - [42] = {.lex_state = 5, .external_lex_state = 2}, - [43] = {.lex_state = 56, .external_lex_state = 2}, - [44] = {.lex_state = 56, .external_lex_state = 2}, - [45] = {.lex_state = 56, .external_lex_state = 2}, - [46] = {.lex_state = 56, .external_lex_state = 2}, - [47] = {.lex_state = 56, .external_lex_state = 2}, - [48] = {.lex_state = 5, .external_lex_state = 2}, - [49] = {.lex_state = 56, .external_lex_state = 2}, - [50] = {.lex_state = 56, .external_lex_state = 2}, - [51] = {.lex_state = 56, .external_lex_state = 2}, - [52] = {.lex_state = 56, .external_lex_state = 2}, - [53] = {.lex_state = 56, .external_lex_state = 2}, - [54] = {.lex_state = 56, .external_lex_state = 2}, - [55] = {.lex_state = 56, .external_lex_state = 2}, - [56] = {.lex_state = 56, .external_lex_state = 2}, - [57] = {.lex_state = 56, .external_lex_state = 2}, - [58] = {.lex_state = 56, .external_lex_state = 2}, - [59] = {.lex_state = 56, .external_lex_state = 2}, - [60] = {.lex_state = 56, .external_lex_state = 2}, - [61] = {.lex_state = 56, .external_lex_state = 2}, - [62] = {.lex_state = 56, .external_lex_state = 2}, - [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 56, .external_lex_state = 2}, - [66] = {.lex_state = 56, .external_lex_state = 2}, - [67] = {.lex_state = 56, .external_lex_state = 2}, - [68] = {.lex_state = 56, .external_lex_state = 2}, - [69] = {.lex_state = 56, .external_lex_state = 2}, - [70] = {.lex_state = 56, .external_lex_state = 2}, - [71] = {.lex_state = 5, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, - [73] = {.lex_state = 5, .external_lex_state = 2}, - [74] = {.lex_state = 56, .external_lex_state = 2}, - [75] = {.lex_state = 5, .external_lex_state = 2}, - [76] = {.lex_state = 5, .external_lex_state = 2}, - [77] = {.lex_state = 5, .external_lex_state = 2}, - [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, - [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 5, .external_lex_state = 2}, - [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 5, .external_lex_state = 2}, - [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 5, .external_lex_state = 2}, - [87] = {.lex_state = 5, .external_lex_state = 2}, - [88] = {.lex_state = 5, .external_lex_state = 2}, - [89] = {.lex_state = 5, .external_lex_state = 2}, - [90] = {.lex_state = 5, .external_lex_state = 2}, - [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 5, .external_lex_state = 2}, - [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, - [97] = {.lex_state = 5, .external_lex_state = 2}, - [98] = {.lex_state = 5, .external_lex_state = 2}, - [99] = {.lex_state = 5, .external_lex_state = 2}, - [100] = {.lex_state = 5, .external_lex_state = 2}, - [101] = {.lex_state = 5, .external_lex_state = 2}, - [102] = {.lex_state = 5, .external_lex_state = 2}, - [103] = {.lex_state = 5, .external_lex_state = 2}, - [104] = {.lex_state = 5, .external_lex_state = 2}, - [105] = {.lex_state = 5, .external_lex_state = 2}, - [106] = {.lex_state = 5, .external_lex_state = 2}, - [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 5, .external_lex_state = 2}, - [109] = {.lex_state = 5, .external_lex_state = 2}, - [110] = {.lex_state = 5, .external_lex_state = 2}, - [111] = {.lex_state = 5, .external_lex_state = 2}, - [112] = {.lex_state = 5, .external_lex_state = 2}, - [113] = {.lex_state = 5, .external_lex_state = 2}, - [114] = {.lex_state = 5, .external_lex_state = 2}, - [115] = {.lex_state = 5, .external_lex_state = 2}, - [116] = {.lex_state = 5, .external_lex_state = 2}, - [117] = {.lex_state = 5, .external_lex_state = 2}, - [118] = {.lex_state = 5, .external_lex_state = 2}, - [119] = {.lex_state = 5, .external_lex_state = 2}, - [120] = {.lex_state = 5, .external_lex_state = 2}, - [121] = {.lex_state = 5, .external_lex_state = 2}, - [122] = {.lex_state = 5, .external_lex_state = 2}, - [123] = {.lex_state = 5, .external_lex_state = 2}, - [124] = {.lex_state = 5, .external_lex_state = 2}, - [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 5, .external_lex_state = 2}, - [127] = {.lex_state = 5, .external_lex_state = 2}, - [128] = {.lex_state = 5, .external_lex_state = 2}, - [129] = {.lex_state = 5, .external_lex_state = 2}, - [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 5, .external_lex_state = 2}, - [133] = {.lex_state = 5, .external_lex_state = 2}, - [134] = {.lex_state = 5, .external_lex_state = 2}, - [135] = {.lex_state = 5, .external_lex_state = 2}, - [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 6, .external_lex_state = 2}, - [138] = {.lex_state = 6, .external_lex_state = 2}, - [139] = {.lex_state = 6, .external_lex_state = 2}, - [140] = {.lex_state = 5, .external_lex_state = 2}, - [141] = {.lex_state = 5, .external_lex_state = 2}, - [142] = {.lex_state = 5, .external_lex_state = 2}, - [143] = {.lex_state = 5, .external_lex_state = 2}, - [144] = {.lex_state = 5, .external_lex_state = 2}, - [145] = {.lex_state = 5, .external_lex_state = 2}, - [146] = {.lex_state = 5, .external_lex_state = 2}, - [147] = {.lex_state = 5, .external_lex_state = 2}, - [148] = {.lex_state = 5, .external_lex_state = 2}, - [149] = {.lex_state = 5, .external_lex_state = 2}, - [150] = {.lex_state = 5, .external_lex_state = 2}, - [151] = {.lex_state = 5, .external_lex_state = 2}, - [152] = {.lex_state = 5, .external_lex_state = 2}, - [153] = {.lex_state = 5, .external_lex_state = 2}, - [154] = {.lex_state = 5, .external_lex_state = 2}, - [155] = {.lex_state = 5, .external_lex_state = 2}, - [156] = {.lex_state = 5, .external_lex_state = 2}, - [157] = {.lex_state = 6, .external_lex_state = 2}, - [158] = {.lex_state = 5, .external_lex_state = 2}, - [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 5, .external_lex_state = 2}, - [161] = {.lex_state = 5, .external_lex_state = 2}, - [162] = {.lex_state = 5, .external_lex_state = 2}, - [163] = {.lex_state = 5, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 2}, - [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 5, .external_lex_state = 2}, - [167] = {.lex_state = 5, .external_lex_state = 2}, - [168] = {.lex_state = 5, .external_lex_state = 2}, - [169] = {.lex_state = 5, .external_lex_state = 2}, - [170] = {.lex_state = 5, .external_lex_state = 2}, - [171] = {.lex_state = 5, .external_lex_state = 2}, - [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 5, .external_lex_state = 2}, - [174] = {.lex_state = 5, .external_lex_state = 2}, - [175] = {.lex_state = 5, .external_lex_state = 2}, - [176] = {.lex_state = 5, .external_lex_state = 2}, - [177] = {.lex_state = 6, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 5, .external_lex_state = 2}, - [181] = {.lex_state = 6, .external_lex_state = 2}, - [182] = {.lex_state = 6, .external_lex_state = 2}, - [183] = {.lex_state = 6, .external_lex_state = 2}, - [184] = {.lex_state = 6, .external_lex_state = 2}, - [185] = {.lex_state = 6, .external_lex_state = 2}, - [186] = {.lex_state = 6, .external_lex_state = 2}, - [187] = {.lex_state = 6, .external_lex_state = 2}, - [188] = {.lex_state = 6, .external_lex_state = 2}, - [189] = {.lex_state = 6, .external_lex_state = 2}, - [190] = {.lex_state = 6, .external_lex_state = 2}, - [191] = {.lex_state = 5, .external_lex_state = 2}, - [192] = {.lex_state = 5, .external_lex_state = 2}, - [193] = {.lex_state = 5, .external_lex_state = 2}, - [194] = {.lex_state = 5, .external_lex_state = 2}, - [195] = {.lex_state = 5, .external_lex_state = 2}, - [196] = {.lex_state = 1, .external_lex_state = 2}, - [197] = {.lex_state = 5, .external_lex_state = 2}, - [198] = {.lex_state = 5, .external_lex_state = 2}, - [199] = {.lex_state = 5, .external_lex_state = 2}, - [200] = {.lex_state = 5, .external_lex_state = 2}, - [201] = {.lex_state = 5, .external_lex_state = 2}, - [202] = {.lex_state = 5, .external_lex_state = 2}, - [203] = {.lex_state = 5, .external_lex_state = 2}, - [204] = {.lex_state = 5, .external_lex_state = 2}, - [205] = {.lex_state = 5, .external_lex_state = 2}, - [206] = {.lex_state = 5, .external_lex_state = 2}, - [207] = {.lex_state = 1, .external_lex_state = 2}, - [208] = {.lex_state = 1, .external_lex_state = 2}, - [209] = {.lex_state = 1, .external_lex_state = 2}, - [210] = {.lex_state = 1, .external_lex_state = 2}, - [211] = {.lex_state = 1, .external_lex_state = 2}, - [212] = {.lex_state = 1, .external_lex_state = 2}, - [213] = {.lex_state = 1, .external_lex_state = 2}, - [214] = {.lex_state = 1, .external_lex_state = 2}, - [215] = {.lex_state = 1, .external_lex_state = 2}, - [216] = {.lex_state = 1, .external_lex_state = 2}, - [217] = {.lex_state = 1, .external_lex_state = 2}, - [218] = {.lex_state = 1, .external_lex_state = 2}, - [219] = {.lex_state = 1, .external_lex_state = 2}, - [220] = {.lex_state = 1, .external_lex_state = 2}, - [221] = {.lex_state = 1, .external_lex_state = 2}, - [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 5, .external_lex_state = 2}, - [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.lex_state = 1, .external_lex_state = 2}, - [226] = {.lex_state = 1, .external_lex_state = 2}, - [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 1, .external_lex_state = 2}, - [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 5, .external_lex_state = 2}, - [231] = {.lex_state = 1, .external_lex_state = 2}, - [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 2}, - [234] = {.lex_state = 5, .external_lex_state = 2}, - [235] = {.lex_state = 1, .external_lex_state = 2}, - [236] = {.lex_state = 1, .external_lex_state = 2}, - [237] = {.lex_state = 5, .external_lex_state = 2}, - [238] = {.lex_state = 5, .external_lex_state = 2}, - [239] = {.lex_state = 5, .external_lex_state = 2}, - [240] = {.lex_state = 4, .external_lex_state = 3}, - [241] = {.lex_state = 4, .external_lex_state = 3}, - [242] = {.lex_state = 4, .external_lex_state = 3}, - [243] = {.lex_state = 12, .external_lex_state = 2}, - [244] = {.lex_state = 4, .external_lex_state = 3}, - [245] = {.lex_state = 4, .external_lex_state = 3}, - [246] = {.lex_state = 5, .external_lex_state = 2}, - [247] = {.lex_state = 5, .external_lex_state = 2}, - [248] = {.lex_state = 5, .external_lex_state = 2}, - [249] = {.lex_state = 57, .external_lex_state = 2}, - [250] = {.lex_state = 57, .external_lex_state = 2}, - [251] = {.lex_state = 57, .external_lex_state = 2}, - [252] = {.lex_state = 57, .external_lex_state = 2}, - [253] = {.lex_state = 57, .external_lex_state = 2}, - [254] = {.lex_state = 57, .external_lex_state = 2}, - [255] = {.lex_state = 57, .external_lex_state = 2}, - [256] = {.lex_state = 57, .external_lex_state = 2}, - [257] = {.lex_state = 57, .external_lex_state = 2}, - [258] = {.lex_state = 57, .external_lex_state = 2}, - [259] = {.lex_state = 57, .external_lex_state = 2}, - [260] = {.lex_state = 57, .external_lex_state = 2}, - [261] = {.lex_state = 57, .external_lex_state = 2}, - [262] = {.lex_state = 57, .external_lex_state = 2}, - [263] = {.lex_state = 57, .external_lex_state = 2}, - [264] = {.lex_state = 57, .external_lex_state = 2}, - [265] = {.lex_state = 57, .external_lex_state = 2}, - [266] = {.lex_state = 57, .external_lex_state = 2}, - [267] = {.lex_state = 57, .external_lex_state = 2}, - [268] = {.lex_state = 57, .external_lex_state = 2}, - [269] = {.lex_state = 57, .external_lex_state = 2}, - [270] = {.lex_state = 57, .external_lex_state = 2}, - [271] = {.lex_state = 12, .external_lex_state = 2}, - [272] = {.lex_state = 57, .external_lex_state = 2}, - [273] = {.lex_state = 12, .external_lex_state = 2}, - [274] = {.lex_state = 57, .external_lex_state = 2}, - [275] = {.lex_state = 57, .external_lex_state = 2}, - [276] = {.lex_state = 57, .external_lex_state = 2}, - [277] = {.lex_state = 57, .external_lex_state = 2}, - [278] = {.lex_state = 57, .external_lex_state = 2}, - [279] = {.lex_state = 57, .external_lex_state = 2}, - [280] = {.lex_state = 12, .external_lex_state = 2}, - [281] = {.lex_state = 57, .external_lex_state = 2}, - [282] = {.lex_state = 57, .external_lex_state = 2}, - [283] = {.lex_state = 57, .external_lex_state = 2}, - [284] = {.lex_state = 57, .external_lex_state = 2}, - [285] = {.lex_state = 57, .external_lex_state = 2}, - [286] = {.lex_state = 57, .external_lex_state = 2}, - [287] = {.lex_state = 12, .external_lex_state = 2}, - [288] = {.lex_state = 57, .external_lex_state = 2}, - [289] = {.lex_state = 57, .external_lex_state = 2}, - [290] = {.lex_state = 5, .external_lex_state = 2}, - [291] = {.lex_state = 57, .external_lex_state = 2}, - [292] = {.lex_state = 57, .external_lex_state = 2}, - [293] = {.lex_state = 5, .external_lex_state = 2}, - [294] = {.lex_state = 57, .external_lex_state = 2}, - [295] = {.lex_state = 57, .external_lex_state = 2}, - [296] = {.lex_state = 57, .external_lex_state = 2}, - [297] = {.lex_state = 57, .external_lex_state = 2}, - [298] = {.lex_state = 57, .external_lex_state = 2}, - [299] = {.lex_state = 57, .external_lex_state = 2}, - [300] = {.lex_state = 57, .external_lex_state = 2}, - [301] = {.lex_state = 57, .external_lex_state = 2}, - [302] = {.lex_state = 57, .external_lex_state = 2}, - [303] = {.lex_state = 57, .external_lex_state = 2}, - [304] = {.lex_state = 57, .external_lex_state = 2}, - [305] = {.lex_state = 57, .external_lex_state = 2}, - [306] = {.lex_state = 57, .external_lex_state = 2}, - [307] = {.lex_state = 57, .external_lex_state = 2}, - [308] = {.lex_state = 57, .external_lex_state = 2}, - [309] = {.lex_state = 57, .external_lex_state = 2}, - [310] = {.lex_state = 57, .external_lex_state = 2}, - [311] = {.lex_state = 57, .external_lex_state = 2}, - [312] = {.lex_state = 57, .external_lex_state = 2}, - [313] = {.lex_state = 57, .external_lex_state = 2}, - [314] = {.lex_state = 57, .external_lex_state = 2}, - [315] = {.lex_state = 57, .external_lex_state = 2}, - [316] = {.lex_state = 57, .external_lex_state = 2}, - [317] = {.lex_state = 57, .external_lex_state = 2}, - [318] = {.lex_state = 12, .external_lex_state = 2}, - [319] = {.lex_state = 12, .external_lex_state = 2}, - [320] = {.lex_state = 12, .external_lex_state = 2}, - [321] = {.lex_state = 57, .external_lex_state = 2}, - [322] = {.lex_state = 57, .external_lex_state = 2}, - [323] = {.lex_state = 57, .external_lex_state = 2}, - [324] = {.lex_state = 57, .external_lex_state = 2}, - [325] = {.lex_state = 57, .external_lex_state = 2}, - [326] = {.lex_state = 57, .external_lex_state = 2}, - [327] = {.lex_state = 57, .external_lex_state = 2}, - [328] = {.lex_state = 57, .external_lex_state = 2}, - [329] = {.lex_state = 57, .external_lex_state = 2}, - [330] = {.lex_state = 12, .external_lex_state = 2}, - [331] = {.lex_state = 12, .external_lex_state = 2}, - [332] = {.lex_state = 57, .external_lex_state = 2}, - [333] = {.lex_state = 12, .external_lex_state = 2}, - [334] = {.lex_state = 57, .external_lex_state = 2}, - [335] = {.lex_state = 57, .external_lex_state = 2}, - [336] = {.lex_state = 57, .external_lex_state = 2}, - [337] = {.lex_state = 57, .external_lex_state = 2}, - [338] = {.lex_state = 57, .external_lex_state = 2}, - [339] = {.lex_state = 57, .external_lex_state = 2}, - [340] = {.lex_state = 57, .external_lex_state = 2}, - [341] = {.lex_state = 57, .external_lex_state = 2}, - [342] = {.lex_state = 57, .external_lex_state = 2}, - [343] = {.lex_state = 57, .external_lex_state = 2}, - [344] = {.lex_state = 57, .external_lex_state = 2}, - [345] = {.lex_state = 57, .external_lex_state = 2}, - [346] = {.lex_state = 57, .external_lex_state = 2}, - [347] = {.lex_state = 57, .external_lex_state = 2}, - [348] = {.lex_state = 57, .external_lex_state = 2}, - [349] = {.lex_state = 12, .external_lex_state = 2}, - [350] = {.lex_state = 57, .external_lex_state = 2}, - [351] = {.lex_state = 57, .external_lex_state = 2}, - [352] = {.lex_state = 57, .external_lex_state = 2}, - [353] = {.lex_state = 5, .external_lex_state = 2}, - [354] = {.lex_state = 57, .external_lex_state = 2}, - [355] = {.lex_state = 57, .external_lex_state = 2}, - [356] = {.lex_state = 57, .external_lex_state = 2}, - [357] = {.lex_state = 57, .external_lex_state = 2}, - [358] = {.lex_state = 57, .external_lex_state = 2}, - [359] = {.lex_state = 57, .external_lex_state = 2}, - [360] = {.lex_state = 57, .external_lex_state = 2}, - [361] = {.lex_state = 57, .external_lex_state = 2}, - [362] = {.lex_state = 57, .external_lex_state = 2}, - [363] = {.lex_state = 57, .external_lex_state = 2}, - [364] = {.lex_state = 57, .external_lex_state = 2}, - [365] = {.lex_state = 57, .external_lex_state = 2}, - [366] = {.lex_state = 57, .external_lex_state = 2}, - [367] = {.lex_state = 57, .external_lex_state = 2}, - [368] = {.lex_state = 57, .external_lex_state = 2}, - [369] = {.lex_state = 57, .external_lex_state = 2}, - [370] = {.lex_state = 57, .external_lex_state = 2}, - [371] = {.lex_state = 57, .external_lex_state = 2}, - [372] = {.lex_state = 57, .external_lex_state = 2}, - [373] = {.lex_state = 57, .external_lex_state = 2}, - [374] = {.lex_state = 57, .external_lex_state = 2}, - [375] = {.lex_state = 57, .external_lex_state = 2}, - [376] = {.lex_state = 57, .external_lex_state = 2}, - [377] = {.lex_state = 57, .external_lex_state = 2}, - [378] = {.lex_state = 57, .external_lex_state = 2}, - [379] = {.lex_state = 57, .external_lex_state = 2}, - [380] = {.lex_state = 57, .external_lex_state = 2}, - [381] = {.lex_state = 57, .external_lex_state = 2}, - [382] = {.lex_state = 57, .external_lex_state = 2}, - [383] = {.lex_state = 57, .external_lex_state = 2}, - [384] = {.lex_state = 57, .external_lex_state = 2}, - [385] = {.lex_state = 57, .external_lex_state = 2}, - [386] = {.lex_state = 57, .external_lex_state = 2}, - [387] = {.lex_state = 57, .external_lex_state = 2}, - [388] = {.lex_state = 57, .external_lex_state = 2}, - [389] = {.lex_state = 57, .external_lex_state = 2}, - [390] = {.lex_state = 57, .external_lex_state = 2}, - [391] = {.lex_state = 57, .external_lex_state = 2}, - [392] = {.lex_state = 57, .external_lex_state = 2}, - [393] = {.lex_state = 57, .external_lex_state = 2}, - [394] = {.lex_state = 57, .external_lex_state = 2}, - [395] = {.lex_state = 57, .external_lex_state = 2}, - [396] = {.lex_state = 57, .external_lex_state = 2}, - [397] = {.lex_state = 57, .external_lex_state = 2}, - [398] = {.lex_state = 57, .external_lex_state = 2}, - [399] = {.lex_state = 57, .external_lex_state = 2}, - [400] = {.lex_state = 57, .external_lex_state = 2}, - [401] = {.lex_state = 57, .external_lex_state = 2}, - [402] = {.lex_state = 57, .external_lex_state = 2}, - [403] = {.lex_state = 57, .external_lex_state = 2}, - [404] = {.lex_state = 57, .external_lex_state = 2}, - [405] = {.lex_state = 57, .external_lex_state = 2}, - [406] = {.lex_state = 57, .external_lex_state = 2}, - [407] = {.lex_state = 57, .external_lex_state = 2}, - [408] = {.lex_state = 57, .external_lex_state = 2}, - [409] = {.lex_state = 57, .external_lex_state = 2}, - [410] = {.lex_state = 57, .external_lex_state = 2}, - [411] = {.lex_state = 57, .external_lex_state = 2}, - [412] = {.lex_state = 57, .external_lex_state = 2}, - [413] = {.lex_state = 57, .external_lex_state = 2}, - [414] = {.lex_state = 57, .external_lex_state = 2}, - [415] = {.lex_state = 57, .external_lex_state = 2}, - [416] = {.lex_state = 57, .external_lex_state = 2}, - [417] = {.lex_state = 57, .external_lex_state = 2}, - [418] = {.lex_state = 57, .external_lex_state = 2}, - [419] = {.lex_state = 57, .external_lex_state = 2}, - [420] = {.lex_state = 57, .external_lex_state = 2}, - [421] = {.lex_state = 57, .external_lex_state = 2}, - [422] = {.lex_state = 57, .external_lex_state = 2}, - [423] = {.lex_state = 57, .external_lex_state = 2}, - [424] = {.lex_state = 57, .external_lex_state = 2}, - [425] = {.lex_state = 57, .external_lex_state = 2}, - [426] = {.lex_state = 57, .external_lex_state = 2}, - [427] = {.lex_state = 57, .external_lex_state = 2}, - [428] = {.lex_state = 12, .external_lex_state = 2}, - [429] = {.lex_state = 12, .external_lex_state = 2}, - [430] = {.lex_state = 57, .external_lex_state = 2}, - [431] = {.lex_state = 12, .external_lex_state = 2}, - [432] = {.lex_state = 57, .external_lex_state = 2}, - [433] = {.lex_state = 57, .external_lex_state = 2}, - [434] = {.lex_state = 57, .external_lex_state = 2}, - [435] = {.lex_state = 57, .external_lex_state = 2}, - [436] = {.lex_state = 57, .external_lex_state = 2}, - [437] = {.lex_state = 57, .external_lex_state = 2}, - [438] = {.lex_state = 57, .external_lex_state = 2}, - [439] = {.lex_state = 57, .external_lex_state = 2}, - [440] = {.lex_state = 57, .external_lex_state = 2}, - [441] = {.lex_state = 57, .external_lex_state = 2}, - [442] = {.lex_state = 57, .external_lex_state = 2}, - [443] = {.lex_state = 57, .external_lex_state = 2}, - [444] = {.lex_state = 57, .external_lex_state = 2}, - [445] = {.lex_state = 57, .external_lex_state = 2}, - [446] = {.lex_state = 57, .external_lex_state = 2}, - [447] = {.lex_state = 57, .external_lex_state = 2}, - [448] = {.lex_state = 57, .external_lex_state = 2}, - [449] = {.lex_state = 57, .external_lex_state = 2}, - [450] = {.lex_state = 57, .external_lex_state = 2}, - [451] = {.lex_state = 57, .external_lex_state = 2}, - [452] = {.lex_state = 57, .external_lex_state = 2}, - [453] = {.lex_state = 57, .external_lex_state = 2}, - [454] = {.lex_state = 57, .external_lex_state = 2}, - [455] = {.lex_state = 57, .external_lex_state = 2}, - [456] = {.lex_state = 57, .external_lex_state = 2}, - [457] = {.lex_state = 57, .external_lex_state = 2}, - [458] = {.lex_state = 57, .external_lex_state = 2}, - [459] = {.lex_state = 57, .external_lex_state = 2}, - [460] = {.lex_state = 57, .external_lex_state = 2}, - [461] = {.lex_state = 12, .external_lex_state = 2}, - [462] = {.lex_state = 57, .external_lex_state = 2}, - [463] = {.lex_state = 57, .external_lex_state = 2}, - [464] = {.lex_state = 57, .external_lex_state = 2}, - [465] = {.lex_state = 57, .external_lex_state = 2}, - [466] = {.lex_state = 5, .external_lex_state = 2}, - [467] = {.lex_state = 12, .external_lex_state = 2}, - [468] = {.lex_state = 12, .external_lex_state = 2}, - [469] = {.lex_state = 12, .external_lex_state = 2}, - [470] = {.lex_state = 12, .external_lex_state = 2}, - [471] = {.lex_state = 12, .external_lex_state = 2}, - [472] = {.lex_state = 12, .external_lex_state = 2}, - [473] = {.lex_state = 12, .external_lex_state = 2}, - [474] = {.lex_state = 12, .external_lex_state = 2}, - [475] = {.lex_state = 12, .external_lex_state = 2}, - [476] = {.lex_state = 12, .external_lex_state = 2}, - [477] = {.lex_state = 12, .external_lex_state = 2}, - [478] = {.lex_state = 12, .external_lex_state = 2}, - [479] = {.lex_state = 12, .external_lex_state = 2}, - [480] = {.lex_state = 12, .external_lex_state = 2}, - [481] = {.lex_state = 12, .external_lex_state = 2}, - [482] = {.lex_state = 12, .external_lex_state = 2}, - [483] = {.lex_state = 12, .external_lex_state = 2}, - [484] = {.lex_state = 12, .external_lex_state = 2}, - [485] = {.lex_state = 12, .external_lex_state = 2}, - [486] = {.lex_state = 12, .external_lex_state = 2}, - [487] = {.lex_state = 12, .external_lex_state = 2}, - [488] = {.lex_state = 12, .external_lex_state = 2}, - [489] = {.lex_state = 12, .external_lex_state = 2}, - [490] = {.lex_state = 12, .external_lex_state = 2}, - [491] = {.lex_state = 12, .external_lex_state = 2}, - [492] = {.lex_state = 12, .external_lex_state = 2}, - [493] = {.lex_state = 12, .external_lex_state = 2}, - [494] = {.lex_state = 12, .external_lex_state = 2}, - [495] = {.lex_state = 12, .external_lex_state = 2}, - [496] = {.lex_state = 12, .external_lex_state = 2}, - [497] = {.lex_state = 12, .external_lex_state = 2}, - [498] = {.lex_state = 12, .external_lex_state = 2}, - [499] = {.lex_state = 5, .external_lex_state = 2}, - [500] = {.lex_state = 5, .external_lex_state = 2}, - [501] = {.lex_state = 7, .external_lex_state = 3}, - [502] = {.lex_state = 7, .external_lex_state = 3}, - [503] = {.lex_state = 7, .external_lex_state = 3}, - [504] = {.lex_state = 7, .external_lex_state = 3}, - [505] = {.lex_state = 7, .external_lex_state = 3}, - [506] = {.lex_state = 7, .external_lex_state = 3}, - [507] = {.lex_state = 7, .external_lex_state = 3}, - [508] = {.lex_state = 7, .external_lex_state = 3}, - [509] = {.lex_state = 11, .external_lex_state = 2}, - [510] = {.lex_state = 7, .external_lex_state = 3}, - [511] = {.lex_state = 7, .external_lex_state = 3}, - [512] = {.lex_state = 12, .external_lex_state = 2}, - [513] = {.lex_state = 12, .external_lex_state = 2}, - [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 7, .external_lex_state = 3}, - [516] = {.lex_state = 12, .external_lex_state = 2}, - [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 12, .external_lex_state = 2}, - [519] = {.lex_state = 12, .external_lex_state = 2}, - [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 5, .external_lex_state = 2}, - [522] = {.lex_state = 5, .external_lex_state = 2}, - [523] = {.lex_state = 5, .external_lex_state = 2}, - [524] = {.lex_state = 12, .external_lex_state = 2}, - [525] = {.lex_state = 12, .external_lex_state = 2}, - [526] = {.lex_state = 5, .external_lex_state = 2}, - [527] = {.lex_state = 12, .external_lex_state = 2}, - [528] = {.lex_state = 12, .external_lex_state = 2}, - [529] = {.lex_state = 12, .external_lex_state = 2}, - [530] = {.lex_state = 12, .external_lex_state = 2}, - [531] = {.lex_state = 12, .external_lex_state = 2}, - [532] = {.lex_state = 12, .external_lex_state = 2}, - [533] = {.lex_state = 5, .external_lex_state = 2}, - [534] = {.lex_state = 5, .external_lex_state = 2}, - [535] = {.lex_state = 5, .external_lex_state = 2}, - [536] = {.lex_state = 5, .external_lex_state = 2}, - [537] = {.lex_state = 7, .external_lex_state = 3}, - [538] = {.lex_state = 7, .external_lex_state = 3}, - [539] = {.lex_state = 5, .external_lex_state = 2}, - [540] = {.lex_state = 5, .external_lex_state = 2}, - [541] = {.lex_state = 7, .external_lex_state = 3}, - [542] = {.lex_state = 7, .external_lex_state = 3}, - [543] = {.lex_state = 5, .external_lex_state = 2}, - [544] = {.lex_state = 5, .external_lex_state = 2}, - [545] = {.lex_state = 5, .external_lex_state = 2}, - [546] = {.lex_state = 5, .external_lex_state = 2}, - [547] = {.lex_state = 5, .external_lex_state = 2}, - [548] = {.lex_state = 7, .external_lex_state = 3}, - [549] = {.lex_state = 5, .external_lex_state = 2}, - [550] = {.lex_state = 5, .external_lex_state = 2}, - [551] = {.lex_state = 5, .external_lex_state = 2}, - [552] = {.lex_state = 5, .external_lex_state = 2}, - [553] = {.lex_state = 5, .external_lex_state = 2}, - [554] = {.lex_state = 5, .external_lex_state = 2}, - [555] = {.lex_state = 7, .external_lex_state = 3}, - [556] = {.lex_state = 7, .external_lex_state = 3}, - [557] = {.lex_state = 5, .external_lex_state = 2}, - [558] = {.lex_state = 5, .external_lex_state = 2}, - [559] = {.lex_state = 5, .external_lex_state = 2}, - [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 5, .external_lex_state = 2}, - [562] = {.lex_state = 5, .external_lex_state = 2}, - [563] = {.lex_state = 5, .external_lex_state = 2}, - [564] = {.lex_state = 5, .external_lex_state = 2}, - [565] = {.lex_state = 5, .external_lex_state = 2}, - [566] = {.lex_state = 5, .external_lex_state = 2}, - [567] = {.lex_state = 5, .external_lex_state = 2}, - [568] = {.lex_state = 7, .external_lex_state = 3}, - [569] = {.lex_state = 5, .external_lex_state = 2}, - [570] = {.lex_state = 5, .external_lex_state = 2}, - [571] = {.lex_state = 5, .external_lex_state = 2}, - [572] = {.lex_state = 5, .external_lex_state = 2}, - [573] = {.lex_state = 5, .external_lex_state = 2}, - [574] = {.lex_state = 5, .external_lex_state = 2}, - [575] = {.lex_state = 5, .external_lex_state = 2}, - [576] = {.lex_state = 5, .external_lex_state = 2}, - [577] = {.lex_state = 5, .external_lex_state = 2}, - [578] = {.lex_state = 5, .external_lex_state = 2}, - [579] = {.lex_state = 7, .external_lex_state = 3}, - [580] = {.lex_state = 7, .external_lex_state = 3}, - [581] = {.lex_state = 7, .external_lex_state = 3}, - [582] = {.lex_state = 7, .external_lex_state = 3}, - [583] = {.lex_state = 7, .external_lex_state = 3}, - [584] = {.lex_state = 7, .external_lex_state = 3}, - [585] = {.lex_state = 7, .external_lex_state = 3}, - [586] = {.lex_state = 7, .external_lex_state = 3}, - [587] = {.lex_state = 7, .external_lex_state = 3}, - [588] = {.lex_state = 7, .external_lex_state = 3}, - [589] = {.lex_state = 7, .external_lex_state = 3}, - [590] = {.lex_state = 7, .external_lex_state = 3}, - [591] = {.lex_state = 7, .external_lex_state = 3}, - [592] = {.lex_state = 5, .external_lex_state = 2}, - [593] = {.lex_state = 7, .external_lex_state = 3}, - [594] = {.lex_state = 7, .external_lex_state = 3}, - [595] = {.lex_state = 7, .external_lex_state = 3}, - [596] = {.lex_state = 7, .external_lex_state = 3}, - [597] = {.lex_state = 7, .external_lex_state = 3}, - [598] = {.lex_state = 7, .external_lex_state = 3}, - [599] = {.lex_state = 7, .external_lex_state = 3}, - [600] = {.lex_state = 7, .external_lex_state = 3}, - [601] = {.lex_state = 7, .external_lex_state = 3}, - [602] = {.lex_state = 7, .external_lex_state = 3}, - [603] = {.lex_state = 7, .external_lex_state = 3}, - [604] = {.lex_state = 7, .external_lex_state = 3}, - [605] = {.lex_state = 7, .external_lex_state = 3}, - [606] = {.lex_state = 7, .external_lex_state = 3}, - [607] = {.lex_state = 7, .external_lex_state = 3}, - [608] = {.lex_state = 7, .external_lex_state = 3}, - [609] = {.lex_state = 7, .external_lex_state = 3}, - [610] = {.lex_state = 7, .external_lex_state = 3}, - [611] = {.lex_state = 7, .external_lex_state = 3}, - [612] = {.lex_state = 7, .external_lex_state = 3}, - [613] = {.lex_state = 7, .external_lex_state = 3}, - [614] = {.lex_state = 7, .external_lex_state = 3}, - [615] = {.lex_state = 7, .external_lex_state = 3}, - [616] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [623] = {.lex_state = 7, .external_lex_state = 3}, - [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 = 7, .external_lex_state = 3}, - [629] = {.lex_state = 7, .external_lex_state = 3}, - [630] = {.lex_state = 7, .external_lex_state = 3}, - [631] = {.lex_state = 7, .external_lex_state = 3}, - [632] = {.lex_state = 7, .external_lex_state = 3}, - [633] = {.lex_state = 7, .external_lex_state = 3}, - [634] = {.lex_state = 7, .external_lex_state = 3}, - [635] = {.lex_state = 7, .external_lex_state = 3}, - [636] = {.lex_state = 7, .external_lex_state = 3}, - [637] = {.lex_state = 7, .external_lex_state = 3}, - [638] = {.lex_state = 7, .external_lex_state = 3}, - [639] = {.lex_state = 7, .external_lex_state = 3}, - [640] = {.lex_state = 7, .external_lex_state = 3}, - [641] = {.lex_state = 7, .external_lex_state = 3}, - [642] = {.lex_state = 7, .external_lex_state = 3}, - [643] = {.lex_state = 7, .external_lex_state = 3}, - [644] = {.lex_state = 7, .external_lex_state = 3}, - [645] = {.lex_state = 7, .external_lex_state = 3}, - [646] = {.lex_state = 7, .external_lex_state = 3}, - [647] = {.lex_state = 7, .external_lex_state = 3}, - [648] = {.lex_state = 7, .external_lex_state = 3}, - [649] = {.lex_state = 7, .external_lex_state = 3}, - [650] = {.lex_state = 7, .external_lex_state = 3}, - [651] = {.lex_state = 7, .external_lex_state = 3}, - [652] = {.lex_state = 7, .external_lex_state = 3}, - [653] = {.lex_state = 7, .external_lex_state = 3}, - [654] = {.lex_state = 7, .external_lex_state = 3}, - [655] = {.lex_state = 7, .external_lex_state = 3}, - [656] = {.lex_state = 7, .external_lex_state = 3}, - [657] = {.lex_state = 7, .external_lex_state = 3}, - [658] = {.lex_state = 7, .external_lex_state = 3}, - [659] = {.lex_state = 7, .external_lex_state = 3}, - [660] = {.lex_state = 7, .external_lex_state = 3}, - [661] = {.lex_state = 7, .external_lex_state = 3}, - [662] = {.lex_state = 7, .external_lex_state = 3}, - [663] = {.lex_state = 7, .external_lex_state = 3}, - [664] = {.lex_state = 7, .external_lex_state = 3}, - [665] = {.lex_state = 7, .external_lex_state = 3}, - [666] = {.lex_state = 7, .external_lex_state = 3}, - [667] = {.lex_state = 7, .external_lex_state = 3}, - [668] = {.lex_state = 7, .external_lex_state = 3}, - [669] = {.lex_state = 7, .external_lex_state = 3}, - [670] = {.lex_state = 7, .external_lex_state = 3}, - [671] = {.lex_state = 7, .external_lex_state = 3}, - [672] = {.lex_state = 7, .external_lex_state = 3}, - [673] = {.lex_state = 7, .external_lex_state = 3}, - [674] = {.lex_state = 7, .external_lex_state = 3}, - [675] = {.lex_state = 7, .external_lex_state = 3}, - [676] = {.lex_state = 7, .external_lex_state = 3}, - [677] = {.lex_state = 7, .external_lex_state = 3}, - [678] = {.lex_state = 7, .external_lex_state = 3}, - [679] = {.lex_state = 7, .external_lex_state = 3}, - [680] = {.lex_state = 7, .external_lex_state = 3}, - [681] = {.lex_state = 7, .external_lex_state = 3}, - [682] = {.lex_state = 7, .external_lex_state = 3}, - [683] = {.lex_state = 7, .external_lex_state = 3}, - [684] = {.lex_state = 7, .external_lex_state = 3}, - [685] = {.lex_state = 7, .external_lex_state = 3}, - [686] = {.lex_state = 7, .external_lex_state = 3}, - [687] = {.lex_state = 7, .external_lex_state = 3}, - [688] = {.lex_state = 7, .external_lex_state = 3}, - [689] = {.lex_state = 7, .external_lex_state = 3}, - [690] = {.lex_state = 7, .external_lex_state = 3}, - [691] = {.lex_state = 7, .external_lex_state = 3}, - [692] = {.lex_state = 7, .external_lex_state = 3}, - [693] = {.lex_state = 7, .external_lex_state = 3}, - [694] = {.lex_state = 7, .external_lex_state = 3}, - [695] = {.lex_state = 7, .external_lex_state = 3}, - [696] = {.lex_state = 7, .external_lex_state = 3}, - [697] = {.lex_state = 7, .external_lex_state = 3}, - [698] = {.lex_state = 7, .external_lex_state = 3}, - [699] = {.lex_state = 7, .external_lex_state = 3}, - [700] = {.lex_state = 7, .external_lex_state = 3}, - [701] = {.lex_state = 7, .external_lex_state = 3}, - [702] = {.lex_state = 5, .external_lex_state = 2}, - [703] = {.lex_state = 5, .external_lex_state = 2}, - [704] = {.lex_state = 5, .external_lex_state = 2}, - [705] = {.lex_state = 5, .external_lex_state = 2}, - [706] = {.lex_state = 5, .external_lex_state = 2}, - [707] = {.lex_state = 6, .external_lex_state = 2}, - [708] = {.lex_state = 3, .external_lex_state = 3}, - [709] = {.lex_state = 3, .external_lex_state = 3}, - [710] = {.lex_state = 3, .external_lex_state = 3}, - [711] = {.lex_state = 3, .external_lex_state = 3}, - [712] = {.lex_state = 2, .external_lex_state = 3}, - [713] = {.lex_state = 4, .external_lex_state = 3}, - [714] = {.lex_state = 4, .external_lex_state = 3}, - [715] = {.lex_state = 3, .external_lex_state = 3}, - [716] = {.lex_state = 3, .external_lex_state = 3}, - [717] = {.lex_state = 4, .external_lex_state = 3}, - [718] = {.lex_state = 3, .external_lex_state = 3}, - [719] = {.lex_state = 3, .external_lex_state = 3}, - [720] = {.lex_state = 2, .external_lex_state = 3}, - [721] = {.lex_state = 3, .external_lex_state = 3}, - [722] = {.lex_state = 4, .external_lex_state = 3}, - [723] = {.lex_state = 4, .external_lex_state = 3}, - [724] = {.lex_state = 3, .external_lex_state = 3}, - [725] = {.lex_state = 2, .external_lex_state = 3}, - [726] = {.lex_state = 2, .external_lex_state = 3}, - [727] = {.lex_state = 2, .external_lex_state = 3}, - [728] = {.lex_state = 2, .external_lex_state = 3}, - [729] = {.lex_state = 2, .external_lex_state = 3}, - [730] = {.lex_state = 2, .external_lex_state = 3}, - [731] = {.lex_state = 2, .external_lex_state = 3}, - [732] = {.lex_state = 2, .external_lex_state = 3}, - [733] = {.lex_state = 4, .external_lex_state = 3}, - [734] = {.lex_state = 4, .external_lex_state = 3}, - [735] = {.lex_state = 2, .external_lex_state = 3}, - [736] = {.lex_state = 4, .external_lex_state = 3}, - [737] = {.lex_state = 4, .external_lex_state = 3}, - [738] = {.lex_state = 4, .external_lex_state = 3}, - [739] = {.lex_state = 4, .external_lex_state = 3}, - [740] = {.lex_state = 4, .external_lex_state = 3}, - [741] = {.lex_state = 4, .external_lex_state = 3}, - [742] = {.lex_state = 4, .external_lex_state = 3}, - [743] = {.lex_state = 4, .external_lex_state = 3}, - [744] = {.lex_state = 4, .external_lex_state = 3}, - [745] = {.lex_state = 4, .external_lex_state = 3}, - [746] = {.lex_state = 2, .external_lex_state = 3}, - [747] = {.lex_state = 2, .external_lex_state = 3}, - [748] = {.lex_state = 4, .external_lex_state = 3}, - [749] = {.lex_state = 4, .external_lex_state = 3}, - [750] = {.lex_state = 4, .external_lex_state = 3}, - [751] = {.lex_state = 4, .external_lex_state = 3}, - [752] = {.lex_state = 4, .external_lex_state = 3}, - [753] = {.lex_state = 4, .external_lex_state = 3}, - [754] = {.lex_state = 4, .external_lex_state = 3}, - [755] = {.lex_state = 4, .external_lex_state = 3}, - [756] = {.lex_state = 4, .external_lex_state = 3}, - [757] = {.lex_state = 4, .external_lex_state = 3}, - [758] = {.lex_state = 4, .external_lex_state = 3}, - [759] = {.lex_state = 4, .external_lex_state = 3}, - [760] = {.lex_state = 4, .external_lex_state = 3}, - [761] = {.lex_state = 2, .external_lex_state = 3}, - [762] = {.lex_state = 4, .external_lex_state = 3}, - [763] = {.lex_state = 2, .external_lex_state = 3}, - [764] = {.lex_state = 4, .external_lex_state = 3}, - [765] = {.lex_state = 4, .external_lex_state = 3}, - [766] = {.lex_state = 4, .external_lex_state = 3}, - [767] = {.lex_state = 4, .external_lex_state = 3}, - [768] = {.lex_state = 2, .external_lex_state = 3}, - [769] = {.lex_state = 4, .external_lex_state = 3}, - [770] = {.lex_state = 4, .external_lex_state = 3}, - [771] = {.lex_state = 4, .external_lex_state = 3}, - [772] = {.lex_state = 4, .external_lex_state = 3}, - [773] = {.lex_state = 4, .external_lex_state = 3}, - [774] = {.lex_state = 4, .external_lex_state = 3}, - [775] = {.lex_state = 4, .external_lex_state = 3}, - [776] = {.lex_state = 4, .external_lex_state = 3}, - [777] = {.lex_state = 4, .external_lex_state = 3}, - [778] = {.lex_state = 4, .external_lex_state = 3}, - [779] = {.lex_state = 4, .external_lex_state = 3}, - [780] = {.lex_state = 4, .external_lex_state = 3}, - [781] = {.lex_state = 4, .external_lex_state = 3}, - [782] = {.lex_state = 4, .external_lex_state = 3}, - [783] = {.lex_state = 4, .external_lex_state = 3}, - [784] = {.lex_state = 4, .external_lex_state = 3}, - [785] = {.lex_state = 4, .external_lex_state = 3}, - [786] = {.lex_state = 4, .external_lex_state = 3}, - [787] = {.lex_state = 4, .external_lex_state = 3}, - [788] = {.lex_state = 4, .external_lex_state = 3}, - [789] = {.lex_state = 4, .external_lex_state = 3}, - [790] = {.lex_state = 4, .external_lex_state = 3}, - [791] = {.lex_state = 4, .external_lex_state = 3}, - [792] = {.lex_state = 4, .external_lex_state = 3}, - [793] = {.lex_state = 4, .external_lex_state = 3}, - [794] = {.lex_state = 4, .external_lex_state = 3}, - [795] = {.lex_state = 4, .external_lex_state = 3}, - [796] = {.lex_state = 2, .external_lex_state = 3}, - [797] = {.lex_state = 2, .external_lex_state = 3}, - [798] = {.lex_state = 2, .external_lex_state = 3}, - [799] = {.lex_state = 2, .external_lex_state = 3}, - [800] = {.lex_state = 4, .external_lex_state = 3}, - [801] = {.lex_state = 4, .external_lex_state = 3}, - [802] = {.lex_state = 4, .external_lex_state = 3}, - [803] = {.lex_state = 4, .external_lex_state = 3}, - [804] = {.lex_state = 4, .external_lex_state = 3}, - [805] = {.lex_state = 4, .external_lex_state = 3}, - [806] = {.lex_state = 4, .external_lex_state = 3}, - [807] = {.lex_state = 2, .external_lex_state = 3}, - [808] = {.lex_state = 4, .external_lex_state = 3}, - [809] = {.lex_state = 2, .external_lex_state = 3}, - [810] = {.lex_state = 2, .external_lex_state = 3}, - [811] = {.lex_state = 2, .external_lex_state = 3}, - [812] = {.lex_state = 4, .external_lex_state = 3}, - [813] = {.lex_state = 4, .external_lex_state = 3}, - [814] = {.lex_state = 4, .external_lex_state = 3}, - [815] = {.lex_state = 4, .external_lex_state = 3}, - [816] = {.lex_state = 2, .external_lex_state = 3}, - [817] = {.lex_state = 4, .external_lex_state = 3}, - [818] = {.lex_state = 4, .external_lex_state = 3}, - [819] = {.lex_state = 2, .external_lex_state = 3}, - [820] = {.lex_state = 2, .external_lex_state = 3}, - [821] = {.lex_state = 4, .external_lex_state = 3}, - [822] = {.lex_state = 2, .external_lex_state = 3}, - [823] = {.lex_state = 2, .external_lex_state = 3}, - [824] = {.lex_state = 4, .external_lex_state = 3}, - [825] = {.lex_state = 2, .external_lex_state = 3}, - [826] = {.lex_state = 2, .external_lex_state = 3}, - [827] = {.lex_state = 4, .external_lex_state = 3}, - [828] = {.lex_state = 4, .external_lex_state = 3}, - [829] = {.lex_state = 2, .external_lex_state = 3}, - [830] = {.lex_state = 4, .external_lex_state = 3}, - [831] = {.lex_state = 4, .external_lex_state = 3}, - [832] = {.lex_state = 4, .external_lex_state = 3}, - [833] = {.lex_state = 4, .external_lex_state = 3}, - [834] = {.lex_state = 4, .external_lex_state = 3}, - [835] = {.lex_state = 4, .external_lex_state = 3}, - [836] = {.lex_state = 4, .external_lex_state = 3}, - [837] = {.lex_state = 4, .external_lex_state = 3}, - [838] = {.lex_state = 4, .external_lex_state = 3}, - [839] = {.lex_state = 4, .external_lex_state = 3}, - [840] = {.lex_state = 4, .external_lex_state = 3}, - [841] = {.lex_state = 4, .external_lex_state = 3}, - [842] = {.lex_state = 4, .external_lex_state = 3}, - [843] = {.lex_state = 4, .external_lex_state = 3}, - [844] = {.lex_state = 4, .external_lex_state = 3}, - [845] = {.lex_state = 4, .external_lex_state = 3}, - [846] = {.lex_state = 4, .external_lex_state = 3}, - [847] = {.lex_state = 4, .external_lex_state = 3}, - [848] = {.lex_state = 4, .external_lex_state = 3}, - [849] = {.lex_state = 4, .external_lex_state = 3}, - [850] = {.lex_state = 4, .external_lex_state = 3}, - [851] = {.lex_state = 4, .external_lex_state = 3}, - [852] = {.lex_state = 4, .external_lex_state = 3}, - [853] = {.lex_state = 10, .external_lex_state = 3}, - [854] = {.lex_state = 4, .external_lex_state = 3}, - [855] = {.lex_state = 4, .external_lex_state = 3}, - [856] = {.lex_state = 4, .external_lex_state = 3}, - [857] = {.lex_state = 4, .external_lex_state = 3}, - [858] = {.lex_state = 4, .external_lex_state = 3}, - [859] = {.lex_state = 4, .external_lex_state = 3}, - [860] = {.lex_state = 4, .external_lex_state = 3}, - [861] = {.lex_state = 4, .external_lex_state = 3}, - [862] = {.lex_state = 4, .external_lex_state = 3}, - [863] = {.lex_state = 4, .external_lex_state = 3}, - [864] = {.lex_state = 4, .external_lex_state = 3}, - [865] = {.lex_state = 4, .external_lex_state = 3}, - [866] = {.lex_state = 4, .external_lex_state = 3}, - [867] = {.lex_state = 4, .external_lex_state = 3}, - [868] = {.lex_state = 4, .external_lex_state = 3}, - [869] = {.lex_state = 4, .external_lex_state = 3}, - [870] = {.lex_state = 4, .external_lex_state = 3}, - [871] = {.lex_state = 4, .external_lex_state = 3}, - [872] = {.lex_state = 4, .external_lex_state = 3}, - [873] = {.lex_state = 4, .external_lex_state = 3}, - [874] = {.lex_state = 4, .external_lex_state = 3}, - [875] = {.lex_state = 4, .external_lex_state = 3}, - [876] = {.lex_state = 4, .external_lex_state = 3}, - [877] = {.lex_state = 2, .external_lex_state = 3}, - [878] = {.lex_state = 4, .external_lex_state = 3}, - [879] = {.lex_state = 4, .external_lex_state = 3}, - [880] = {.lex_state = 2, .external_lex_state = 3}, - [881] = {.lex_state = 4, .external_lex_state = 3}, - [882] = {.lex_state = 4, .external_lex_state = 3}, - [883] = {.lex_state = 4, .external_lex_state = 3}, - [884] = {.lex_state = 4, .external_lex_state = 3}, - [885] = {.lex_state = 2, .external_lex_state = 3}, - [886] = {.lex_state = 4, .external_lex_state = 3}, - [887] = {.lex_state = 4, .external_lex_state = 3}, - [888] = {.lex_state = 4, .external_lex_state = 3}, - [889] = {.lex_state = 4, .external_lex_state = 3}, - [890] = {.lex_state = 4, .external_lex_state = 3}, - [891] = {.lex_state = 4, .external_lex_state = 3}, - [892] = {.lex_state = 4, .external_lex_state = 3}, - [893] = {.lex_state = 4, .external_lex_state = 3}, - [894] = {.lex_state = 2, .external_lex_state = 3}, - [895] = {.lex_state = 4, .external_lex_state = 3}, - [896] = {.lex_state = 4, .external_lex_state = 3}, - [897] = {.lex_state = 4, .external_lex_state = 3}, - [898] = {.lex_state = 4, .external_lex_state = 3}, - [899] = {.lex_state = 4, .external_lex_state = 3}, - [900] = {.lex_state = 4, .external_lex_state = 3}, - [901] = {.lex_state = 4, .external_lex_state = 3}, - [902] = {.lex_state = 4, .external_lex_state = 3}, - [903] = {.lex_state = 4, .external_lex_state = 3}, - [904] = {.lex_state = 4, .external_lex_state = 3}, - [905] = {.lex_state = 4, .external_lex_state = 3}, - [906] = {.lex_state = 4, .external_lex_state = 3}, - [907] = {.lex_state = 4, .external_lex_state = 3}, - [908] = {.lex_state = 4, .external_lex_state = 3}, - [909] = {.lex_state = 4, .external_lex_state = 3}, - [910] = {.lex_state = 2, .external_lex_state = 3}, - [911] = {.lex_state = 4, .external_lex_state = 3}, - [912] = {.lex_state = 4, .external_lex_state = 3}, - [913] = {.lex_state = 4, .external_lex_state = 3}, - [914] = {.lex_state = 3, .external_lex_state = 3}, - [915] = {.lex_state = 4, .external_lex_state = 3}, - [916] = {.lex_state = 4, .external_lex_state = 3}, - [917] = {.lex_state = 4, .external_lex_state = 3}, - [918] = {.lex_state = 4, .external_lex_state = 3}, - [919] = {.lex_state = 4, .external_lex_state = 3}, - [920] = {.lex_state = 4, .external_lex_state = 3}, - [921] = {.lex_state = 4, .external_lex_state = 3}, - [922] = {.lex_state = 2, .external_lex_state = 3}, - [923] = {.lex_state = 4, .external_lex_state = 3}, - [924] = {.lex_state = 4, .external_lex_state = 3}, - [925] = {.lex_state = 2, .external_lex_state = 3}, - [926] = {.lex_state = 4, .external_lex_state = 3}, - [927] = {.lex_state = 4, .external_lex_state = 3}, - [928] = {.lex_state = 2, .external_lex_state = 3}, - [929] = {.lex_state = 4, .external_lex_state = 3}, - [930] = {.lex_state = 4, .external_lex_state = 3}, - [931] = {.lex_state = 4, .external_lex_state = 3}, - [932] = {.lex_state = 2, .external_lex_state = 3}, - [933] = {.lex_state = 4, .external_lex_state = 3}, - [934] = {.lex_state = 4, .external_lex_state = 3}, - [935] = {.lex_state = 4, .external_lex_state = 3}, - [936] = {.lex_state = 4, .external_lex_state = 3}, - [937] = {.lex_state = 4, .external_lex_state = 3}, - [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 4, .external_lex_state = 3}, - [940] = {.lex_state = 4, .external_lex_state = 3}, - [941] = {.lex_state = 4, .external_lex_state = 3}, - [942] = {.lex_state = 4, .external_lex_state = 3}, - [943] = {.lex_state = 4, .external_lex_state = 3}, - [944] = {.lex_state = 4, .external_lex_state = 3}, - [945] = {.lex_state = 4, .external_lex_state = 3}, - [946] = {.lex_state = 4, .external_lex_state = 3}, - [947] = {.lex_state = 4, .external_lex_state = 3}, - [948] = {.lex_state = 2, .external_lex_state = 3}, - [949] = {.lex_state = 4, .external_lex_state = 3}, - [950] = {.lex_state = 4, .external_lex_state = 3}, - [951] = {.lex_state = 4, .external_lex_state = 3}, - [952] = {.lex_state = 4, .external_lex_state = 3}, - [953] = {.lex_state = 4, .external_lex_state = 3}, - [954] = {.lex_state = 4, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, - [956] = {.lex_state = 4, .external_lex_state = 3}, - [957] = {.lex_state = 4, .external_lex_state = 3}, - [958] = {.lex_state = 4, .external_lex_state = 3}, - [959] = {.lex_state = 4, .external_lex_state = 3}, - [960] = {.lex_state = 4, .external_lex_state = 3}, - [961] = {.lex_state = 4, .external_lex_state = 3}, - [962] = {.lex_state = 4, .external_lex_state = 3}, - [963] = {.lex_state = 4, .external_lex_state = 3}, - [964] = {.lex_state = 4, .external_lex_state = 3}, - [965] = {.lex_state = 2, .external_lex_state = 3}, - [966] = {.lex_state = 2, .external_lex_state = 3}, - [967] = {.lex_state = 2, .external_lex_state = 3}, - [968] = {.lex_state = 2, .external_lex_state = 3}, - [969] = {.lex_state = 2, .external_lex_state = 3}, - [970] = {.lex_state = 2, .external_lex_state = 3}, - [971] = {.lex_state = 2, .external_lex_state = 3}, - [972] = {.lex_state = 2, .external_lex_state = 3}, - [973] = {.lex_state = 2, .external_lex_state = 3}, - [974] = {.lex_state = 2, .external_lex_state = 3}, - [975] = {.lex_state = 2, .external_lex_state = 3}, - [976] = {.lex_state = 2, .external_lex_state = 3}, - [977] = {.lex_state = 2, .external_lex_state = 3}, - [978] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [985] = {.lex_state = 2, .external_lex_state = 3}, - [986] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [992] = {.lex_state = 7, .external_lex_state = 3}, - [993] = {.lex_state = 2, .external_lex_state = 3}, - [994] = {.lex_state = 2, .external_lex_state = 3}, - [995] = {.lex_state = 2, .external_lex_state = 3}, - [996] = {.lex_state = 2, .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 = 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 = 7, .external_lex_state = 3}, - [1005] = {.lex_state = 2, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 3}, - [1007] = {.lex_state = 7, .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}, - [1011] = {.lex_state = 2, .external_lex_state = 3}, - [1012] = {.lex_state = 2, .external_lex_state = 3}, - [1013] = {.lex_state = 7, .external_lex_state = 3}, - [1014] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 2, .external_lex_state = 3}, - [1019] = {.lex_state = 2, .external_lex_state = 3}, - [1020] = {.lex_state = 7, .external_lex_state = 3}, - [1021] = {.lex_state = 2, .external_lex_state = 3}, - [1022] = {.lex_state = 2, .external_lex_state = 3}, - [1023] = {.lex_state = 7, .external_lex_state = 3}, - [1024] = {.lex_state = 2, .external_lex_state = 3}, - [1025] = {.lex_state = 2, .external_lex_state = 3}, - [1026] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [1031] = {.lex_state = 2, .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}, - [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}, - [1041] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [1046] = {.lex_state = 7, .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 = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 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}, - [1062] = {.lex_state = 2, .external_lex_state = 3}, - [1063] = {.lex_state = 2, .external_lex_state = 3}, - [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 = 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 = 2, .external_lex_state = 3}, - [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 2, .external_lex_state = 3}, - [1077] = {.lex_state = 7, .external_lex_state = 3}, - [1078] = {.lex_state = 2, .external_lex_state = 3}, - [1079] = {.lex_state = 7, .external_lex_state = 3}, - [1080] = {.lex_state = 2, .external_lex_state = 3}, - [1081] = {.lex_state = 2, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, - [1083] = {.lex_state = 2, .external_lex_state = 3}, - [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 = 5, .external_lex_state = 2}, - [1088] = {.lex_state = 5, .external_lex_state = 2}, - [1089] = {.lex_state = 7, .external_lex_state = 3}, - [1090] = {.lex_state = 2, .external_lex_state = 3}, - [1091] = {.lex_state = 7, .external_lex_state = 3}, - [1092] = {.lex_state = 7, .external_lex_state = 3}, - [1093] = {.lex_state = 7, .external_lex_state = 3}, - [1094] = {.lex_state = 7, .external_lex_state = 3}, - [1095] = {.lex_state = 5, .external_lex_state = 2}, - [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 7, .external_lex_state = 3}, - [1098] = {.lex_state = 7, .external_lex_state = 3}, - [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 7, .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}, - [1104] = {.lex_state = 2, .external_lex_state = 3}, - [1105] = {.lex_state = 5, .external_lex_state = 2}, - [1106] = {.lex_state = 5, .external_lex_state = 2}, - [1107] = {.lex_state = 5, .external_lex_state = 2}, - [1108] = {.lex_state = 5, .external_lex_state = 2}, - [1109] = {.lex_state = 7, .external_lex_state = 3}, - [1110] = {.lex_state = 2, .external_lex_state = 3}, - [1111] = {.lex_state = 5, .external_lex_state = 2}, - [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 7, .external_lex_state = 3}, - [1114] = {.lex_state = 2, .external_lex_state = 3}, - [1115] = {.lex_state = 7, .external_lex_state = 3}, - [1116] = {.lex_state = 2, .external_lex_state = 3}, - [1117] = {.lex_state = 2, .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}, - [1121] = {.lex_state = 2, .external_lex_state = 3}, - [1122] = {.lex_state = 2, .external_lex_state = 3}, - [1123] = {.lex_state = 2, .external_lex_state = 3}, - [1124] = {.lex_state = 2, .external_lex_state = 3}, - [1125] = {.lex_state = 2, .external_lex_state = 3}, - [1126] = {.lex_state = 7, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, - [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}, - [1132] = {.lex_state = 2, .external_lex_state = 3}, - [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 7, .external_lex_state = 3}, - [1136] = {.lex_state = 2, .external_lex_state = 3}, - [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, - [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 2, .external_lex_state = 3}, - [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, - [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 2, .external_lex_state = 3}, - [1145] = {.lex_state = 2, .external_lex_state = 3}, - [1146] = {.lex_state = 2, .external_lex_state = 3}, - [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 2, .external_lex_state = 3}, - [1150] = {.lex_state = 2, .external_lex_state = 3}, - [1151] = {.lex_state = 2, .external_lex_state = 3}, - [1152] = {.lex_state = 2, .external_lex_state = 3}, - [1153] = {.lex_state = 2, .external_lex_state = 3}, - [1154] = {.lex_state = 2, .external_lex_state = 3}, - [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 2, .external_lex_state = 3}, - [1157] = {.lex_state = 7, .external_lex_state = 3}, - [1158] = {.lex_state = 2, .external_lex_state = 3}, - [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 7, .external_lex_state = 3}, - [1161] = {.lex_state = 2, .external_lex_state = 3}, - [1162] = {.lex_state = 2, .external_lex_state = 3}, - [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 2, .external_lex_state = 3}, - [1165] = {.lex_state = 2, .external_lex_state = 3}, - [1166] = {.lex_state = 2, .external_lex_state = 3}, - [1167] = {.lex_state = 2, .external_lex_state = 3}, - [1168] = {.lex_state = 2, .external_lex_state = 3}, - [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}, - [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 = 7, .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}, - [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 2, .external_lex_state = 3}, - [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 2, .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}, - [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 2, .external_lex_state = 3}, - [1206] = {.lex_state = 2, .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 = 7, .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}, - [1215] = {.lex_state = 2, .external_lex_state = 3}, - [1216] = {.lex_state = 2, .external_lex_state = 3}, - [1217] = {.lex_state = 2, .external_lex_state = 3}, - [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 2, .external_lex_state = 3}, - [1220] = {.lex_state = 2, .external_lex_state = 3}, - [1221] = {.lex_state = 2, .external_lex_state = 3}, - [1222] = {.lex_state = 2, .external_lex_state = 3}, - [1223] = {.lex_state = 2, .external_lex_state = 3}, - [1224] = {.lex_state = 2, .external_lex_state = 3}, - [1225] = {.lex_state = 2, .external_lex_state = 3}, - [1226] = {.lex_state = 2, .external_lex_state = 3}, - [1227] = {.lex_state = 2, .external_lex_state = 3}, - [1228] = {.lex_state = 2, .external_lex_state = 3}, - [1229] = {.lex_state = 2, .external_lex_state = 3}, - [1230] = {.lex_state = 2, .external_lex_state = 3}, - [1231] = {.lex_state = 2, .external_lex_state = 3}, - [1232] = {.lex_state = 2, .external_lex_state = 3}, - [1233] = {.lex_state = 2, .external_lex_state = 3}, - [1234] = {.lex_state = 2, .external_lex_state = 3}, - [1235] = {.lex_state = 7, .external_lex_state = 3}, - [1236] = {.lex_state = 7, .external_lex_state = 3}, - [1237] = {.lex_state = 7, .external_lex_state = 3}, - [1238] = {.lex_state = 7, .external_lex_state = 3}, - [1239] = {.lex_state = 7, .external_lex_state = 3}, - [1240] = {.lex_state = 7, .external_lex_state = 3}, - [1241] = {.lex_state = 7, .external_lex_state = 3}, - [1242] = {.lex_state = 7, .external_lex_state = 3}, - [1243] = {.lex_state = 7, .external_lex_state = 3}, - [1244] = {.lex_state = 7, .external_lex_state = 3}, - [1245] = {.lex_state = 7, .external_lex_state = 3}, - [1246] = {.lex_state = 7, .external_lex_state = 3}, - [1247] = {.lex_state = 7, .external_lex_state = 3}, - [1248] = {.lex_state = 7, .external_lex_state = 3}, - [1249] = {.lex_state = 7, .external_lex_state = 3}, - [1250] = {.lex_state = 7, .external_lex_state = 3}, - [1251] = {.lex_state = 7, .external_lex_state = 3}, - [1252] = {.lex_state = 7, .external_lex_state = 3}, - [1253] = {.lex_state = 7, .external_lex_state = 3}, - [1254] = {.lex_state = 7, .external_lex_state = 3}, - [1255] = {.lex_state = 17, .external_lex_state = 3}, - [1256] = {.lex_state = 17, .external_lex_state = 3}, - [1257] = {.lex_state = 9, .external_lex_state = 3}, - [1258] = {.lex_state = 9, .external_lex_state = 3}, - [1259] = {.lex_state = 9, .external_lex_state = 3}, - [1260] = {.lex_state = 9, .external_lex_state = 3}, - [1261] = {.lex_state = 9, .external_lex_state = 3}, - [1262] = {.lex_state = 9, .external_lex_state = 3}, - [1263] = {.lex_state = 9, .external_lex_state = 3}, - [1264] = {.lex_state = 9, .external_lex_state = 3}, - [1265] = {.lex_state = 9, .external_lex_state = 3}, - [1266] = {.lex_state = 9, .external_lex_state = 3}, - [1267] = {.lex_state = 9, .external_lex_state = 3}, - [1268] = {.lex_state = 9, .external_lex_state = 3}, - [1269] = {.lex_state = 17, .external_lex_state = 3}, - [1270] = {.lex_state = 7, .external_lex_state = 3}, - [1271] = {.lex_state = 17, .external_lex_state = 3}, - [1272] = {.lex_state = 17, .external_lex_state = 3}, - [1273] = {.lex_state = 7, .external_lex_state = 3}, - [1274] = {.lex_state = 17, .external_lex_state = 3}, - [1275] = {.lex_state = 7, .external_lex_state = 3}, - [1276] = {.lex_state = 7, .external_lex_state = 3}, - [1277] = {.lex_state = 7, .external_lex_state = 3}, - [1278] = {.lex_state = 9, .external_lex_state = 3}, - [1279] = {.lex_state = 7, .external_lex_state = 3}, - [1280] = {.lex_state = 9, .external_lex_state = 3}, - [1281] = {.lex_state = 7, .external_lex_state = 3}, - [1282] = {.lex_state = 7, .external_lex_state = 3}, - [1283] = {.lex_state = 7, .external_lex_state = 3}, - [1284] = {.lex_state = 7, .external_lex_state = 3}, - [1285] = {.lex_state = 7, .external_lex_state = 3}, - [1286] = {.lex_state = 7, .external_lex_state = 3}, - [1287] = {.lex_state = 7, .external_lex_state = 3}, - [1288] = {.lex_state = 7, .external_lex_state = 3}, - [1289] = {.lex_state = 7, .external_lex_state = 3}, - [1290] = {.lex_state = 7, .external_lex_state = 3}, - [1291] = {.lex_state = 9, .external_lex_state = 3}, - [1292] = {.lex_state = 17, .external_lex_state = 3}, - [1293] = {.lex_state = 7, .external_lex_state = 3}, - [1294] = {.lex_state = 7, .external_lex_state = 3}, - [1295] = {.lex_state = 17, .external_lex_state = 3}, - [1296] = {.lex_state = 17, .external_lex_state = 3}, - [1297] = {.lex_state = 17, .external_lex_state = 3}, - [1298] = {.lex_state = 7, .external_lex_state = 3}, - [1299] = {.lex_state = 17, .external_lex_state = 3}, - [1300] = {.lex_state = 17, .external_lex_state = 3}, - [1301] = {.lex_state = 17, .external_lex_state = 3}, - [1302] = {.lex_state = 17, .external_lex_state = 3}, - [1303] = {.lex_state = 17, .external_lex_state = 3}, - [1304] = {.lex_state = 17, .external_lex_state = 3}, - [1305] = {.lex_state = 7, .external_lex_state = 3}, - [1306] = {.lex_state = 7, .external_lex_state = 3}, - [1307] = {.lex_state = 17, .external_lex_state = 3}, - [1308] = {.lex_state = 7, .external_lex_state = 3}, - [1309] = {.lex_state = 17, .external_lex_state = 3}, - [1310] = {.lex_state = 7, .external_lex_state = 3}, - [1311] = {.lex_state = 17, .external_lex_state = 3}, - [1312] = {.lex_state = 7, .external_lex_state = 3}, - [1313] = {.lex_state = 17, .external_lex_state = 3}, - [1314] = {.lex_state = 9, .external_lex_state = 3}, - [1315] = {.lex_state = 17, .external_lex_state = 3}, - [1316] = {.lex_state = 17, .external_lex_state = 3}, - [1317] = {.lex_state = 17, .external_lex_state = 3}, - [1318] = {.lex_state = 17, .external_lex_state = 3}, - [1319] = {.lex_state = 17, .external_lex_state = 3}, - [1320] = {.lex_state = 17, .external_lex_state = 3}, - [1321] = {.lex_state = 17, .external_lex_state = 3}, - [1322] = {.lex_state = 17, .external_lex_state = 3}, - [1323] = {.lex_state = 17, .external_lex_state = 3}, - [1324] = {.lex_state = 17, .external_lex_state = 3}, - [1325] = {.lex_state = 17, .external_lex_state = 3}, - [1326] = {.lex_state = 17, .external_lex_state = 3}, - [1327] = {.lex_state = 7, .external_lex_state = 3}, - [1328] = {.lex_state = 17, .external_lex_state = 3}, - [1329] = {.lex_state = 17, .external_lex_state = 3}, - [1330] = {.lex_state = 17, .external_lex_state = 3}, - [1331] = {.lex_state = 17, .external_lex_state = 3}, - [1332] = {.lex_state = 17, .external_lex_state = 3}, - [1333] = {.lex_state = 17, .external_lex_state = 3}, - [1334] = {.lex_state = 17, .external_lex_state = 3}, - [1335] = {.lex_state = 17, .external_lex_state = 3}, - [1336] = {.lex_state = 17, .external_lex_state = 3}, - [1337] = {.lex_state = 17, .external_lex_state = 3}, - [1338] = {.lex_state = 17, .external_lex_state = 3}, - [1339] = {.lex_state = 17, .external_lex_state = 3}, - [1340] = {.lex_state = 17, .external_lex_state = 3}, - [1341] = {.lex_state = 17, .external_lex_state = 3}, - [1342] = {.lex_state = 17, .external_lex_state = 3}, - [1343] = {.lex_state = 17, .external_lex_state = 3}, - [1344] = {.lex_state = 17, .external_lex_state = 3}, - [1345] = {.lex_state = 17, .external_lex_state = 3}, - [1346] = {.lex_state = 7, .external_lex_state = 3}, - [1347] = {.lex_state = 7, .external_lex_state = 3}, - [1348] = {.lex_state = 17, .external_lex_state = 3}, - [1349] = {.lex_state = 9, .external_lex_state = 3}, - [1350] = {.lex_state = 7, .external_lex_state = 3}, - [1351] = {.lex_state = 17, .external_lex_state = 3}, - [1352] = {.lex_state = 9, .external_lex_state = 3}, - [1353] = {.lex_state = 9, .external_lex_state = 3}, - [1354] = {.lex_state = 9, .external_lex_state = 3}, - [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 9, .external_lex_state = 3}, - [1357] = {.lex_state = 9, .external_lex_state = 3}, - [1358] = {.lex_state = 9, .external_lex_state = 3}, - [1359] = {.lex_state = 9, .external_lex_state = 3}, - [1360] = {.lex_state = 9, .external_lex_state = 3}, - [1361] = {.lex_state = 17, .external_lex_state = 3}, - [1362] = {.lex_state = 9, .external_lex_state = 3}, - [1363] = {.lex_state = 7, .external_lex_state = 3}, - [1364] = {.lex_state = 9, .external_lex_state = 3}, - [1365] = {.lex_state = 7, .external_lex_state = 3}, - [1366] = {.lex_state = 9, .external_lex_state = 3}, - [1367] = {.lex_state = 7, .external_lex_state = 3}, - [1368] = {.lex_state = 9, .external_lex_state = 3}, - [1369] = {.lex_state = 7, .external_lex_state = 3}, - [1370] = {.lex_state = 7, .external_lex_state = 3}, - [1371] = {.lex_state = 17, .external_lex_state = 3}, - [1372] = {.lex_state = 17, .external_lex_state = 3}, - [1373] = {.lex_state = 17, .external_lex_state = 3}, - [1374] = {.lex_state = 17, .external_lex_state = 3}, - [1375] = {.lex_state = 17, .external_lex_state = 3}, - [1376] = {.lex_state = 17, .external_lex_state = 3}, - [1377] = {.lex_state = 17, .external_lex_state = 3}, - [1378] = {.lex_state = 17, .external_lex_state = 3}, - [1379] = {.lex_state = 17, .external_lex_state = 3}, - [1380] = {.lex_state = 17, .external_lex_state = 3}, - [1381] = {.lex_state = 17, .external_lex_state = 3}, - [1382] = {.lex_state = 17, .external_lex_state = 3}, - [1383] = {.lex_state = 17, .external_lex_state = 3}, - [1384] = {.lex_state = 17, .external_lex_state = 3}, - [1385] = {.lex_state = 13, .external_lex_state = 3}, - [1386] = {.lex_state = 17, .external_lex_state = 3}, - [1387] = {.lex_state = 17, .external_lex_state = 3}, - [1388] = {.lex_state = 17, .external_lex_state = 3}, - [1389] = {.lex_state = 17, .external_lex_state = 3}, - [1390] = {.lex_state = 17, .external_lex_state = 3}, - [1391] = {.lex_state = 17, .external_lex_state = 3}, - [1392] = {.lex_state = 17, .external_lex_state = 3}, - [1393] = {.lex_state = 17, .external_lex_state = 3}, - [1394] = {.lex_state = 17, .external_lex_state = 3}, - [1395] = {.lex_state = 17, .external_lex_state = 3}, - [1396] = {.lex_state = 17, .external_lex_state = 3}, - [1397] = {.lex_state = 17, .external_lex_state = 3}, - [1398] = {.lex_state = 7, .external_lex_state = 3}, - [1399] = {.lex_state = 17, .external_lex_state = 3}, - [1400] = {.lex_state = 17, .external_lex_state = 3}, - [1401] = {.lex_state = 13, .external_lex_state = 3}, - [1402] = {.lex_state = 13, .external_lex_state = 3}, - [1403] = {.lex_state = 17, .external_lex_state = 3}, - [1404] = {.lex_state = 17, .external_lex_state = 3}, - [1405] = {.lex_state = 13, .external_lex_state = 3}, - [1406] = {.lex_state = 17, .external_lex_state = 3}, - [1407] = {.lex_state = 9, .external_lex_state = 3}, - [1408] = {.lex_state = 7, .external_lex_state = 3}, - [1409] = {.lex_state = 9, .external_lex_state = 3}, - [1410] = {.lex_state = 9, .external_lex_state = 3}, - [1411] = {.lex_state = 7, .external_lex_state = 3}, - [1412] = {.lex_state = 7, .external_lex_state = 3}, - [1413] = {.lex_state = 1, .external_lex_state = 2}, - [1414] = {.lex_state = 9, .external_lex_state = 3}, - [1415] = {.lex_state = 1, .external_lex_state = 2}, - [1416] = {.lex_state = 7, .external_lex_state = 3}, - [1417] = {.lex_state = 9, .external_lex_state = 3}, - [1418] = {.lex_state = 17, .external_lex_state = 3}, - [1419] = {.lex_state = 9, .external_lex_state = 3}, - [1420] = {.lex_state = 9, .external_lex_state = 3}, - [1421] = {.lex_state = 9, .external_lex_state = 3}, - [1422] = {.lex_state = 7, .external_lex_state = 3}, - [1423] = {.lex_state = 7, .external_lex_state = 3}, - [1424] = {.lex_state = 7, .external_lex_state = 3}, - [1425] = {.lex_state = 7, .external_lex_state = 3}, - [1426] = {.lex_state = 14, .external_lex_state = 3}, - [1427] = {.lex_state = 9, .external_lex_state = 3}, - [1428] = {.lex_state = 7, .external_lex_state = 3}, - [1429] = {.lex_state = 7, .external_lex_state = 3}, - [1430] = {.lex_state = 7, .external_lex_state = 3}, - [1431] = {.lex_state = 7, .external_lex_state = 3}, - [1432] = {.lex_state = 14, .external_lex_state = 3}, - [1433] = {.lex_state = 7, .external_lex_state = 3}, - [1434] = {.lex_state = 7, .external_lex_state = 3}, - [1435] = {.lex_state = 7, .external_lex_state = 3}, - [1436] = {.lex_state = 7, .external_lex_state = 3}, - [1437] = {.lex_state = 7, .external_lex_state = 3}, - [1438] = {.lex_state = 7, .external_lex_state = 3}, - [1439] = {.lex_state = 7, .external_lex_state = 3}, - [1440] = {.lex_state = 14, .external_lex_state = 3}, - [1441] = {.lex_state = 7, .external_lex_state = 3}, - [1442] = {.lex_state = 7, .external_lex_state = 3}, - [1443] = {.lex_state = 7, .external_lex_state = 3}, - [1444] = {.lex_state = 7, .external_lex_state = 3}, - [1445] = {.lex_state = 7, .external_lex_state = 3}, - [1446] = {.lex_state = 4, .external_lex_state = 3}, - [1447] = {.lex_state = 7, .external_lex_state = 3}, - [1448] = {.lex_state = 7, .external_lex_state = 3}, - [1449] = {.lex_state = 7, .external_lex_state = 3}, - [1450] = {.lex_state = 7, .external_lex_state = 3}, - [1451] = {.lex_state = 7, .external_lex_state = 3}, - [1452] = {.lex_state = 7, .external_lex_state = 3}, - [1453] = {.lex_state = 7, .external_lex_state = 3}, - [1454] = {.lex_state = 7, .external_lex_state = 3}, - [1455] = {.lex_state = 7, .external_lex_state = 3}, - [1456] = {.lex_state = 7, .external_lex_state = 3}, - [1457] = {.lex_state = 7, .external_lex_state = 3}, - [1458] = {.lex_state = 7, .external_lex_state = 3}, - [1459] = {.lex_state = 7, .external_lex_state = 3}, - [1460] = {.lex_state = 7, .external_lex_state = 3}, - [1461] = {.lex_state = 7, .external_lex_state = 3}, - [1462] = {.lex_state = 4, .external_lex_state = 3}, - [1463] = {.lex_state = 17, .external_lex_state = 3}, - [1464] = {.lex_state = 7, .external_lex_state = 3}, - [1465] = {.lex_state = 4, .external_lex_state = 3}, - [1466] = {.lex_state = 14, .external_lex_state = 3}, - [1467] = {.lex_state = 17, .external_lex_state = 3}, - [1468] = {.lex_state = 17, .external_lex_state = 3}, - [1469] = {.lex_state = 17, .external_lex_state = 3}, - [1470] = {.lex_state = 14, .external_lex_state = 3}, - [1471] = {.lex_state = 17, .external_lex_state = 3}, - [1472] = {.lex_state = 7, .external_lex_state = 3}, - [1473] = {.lex_state = 7, .external_lex_state = 3}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 4, .external_lex_state = 3}, - [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 17, .external_lex_state = 3}, - [1478] = {.lex_state = 7, .external_lex_state = 3}, - [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 4, .external_lex_state = 3}, - [1481] = {.lex_state = 14, .external_lex_state = 3}, - [1482] = {.lex_state = 13, .external_lex_state = 3}, - [1483] = {.lex_state = 7, .external_lex_state = 3}, - [1484] = {.lex_state = 14, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 3}, - [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 14, .external_lex_state = 3}, - [1489] = {.lex_state = 0, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 14, .external_lex_state = 3}, - [1494] = {.lex_state = 7, .external_lex_state = 3}, - [1495] = {.lex_state = 17, .external_lex_state = 3}, - [1496] = {.lex_state = 7, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 17, .external_lex_state = 3}, - [1499] = {.lex_state = 7, .external_lex_state = 3}, - [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 7, .external_lex_state = 3}, - [1505] = {.lex_state = 14, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 14, .external_lex_state = 3}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 14, .external_lex_state = 3}, - [1511] = {.lex_state = 0, .external_lex_state = 3}, - [1512] = {.lex_state = 7, .external_lex_state = 3}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 0, .external_lex_state = 3}, - [1515] = {.lex_state = 0, .external_lex_state = 3}, - [1516] = {.lex_state = 14, .external_lex_state = 3}, - [1517] = {.lex_state = 0, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 0, .external_lex_state = 3}, - [1520] = {.lex_state = 7, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 14, .external_lex_state = 3}, - [1523] = {.lex_state = 0, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 0, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 0, .external_lex_state = 3}, - [1528] = {.lex_state = 0, .external_lex_state = 3}, - [1529] = {.lex_state = 0, .external_lex_state = 3}, - [1530] = {.lex_state = 0, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 4, .external_lex_state = 3}, - [1533] = {.lex_state = 0, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 0, .external_lex_state = 3}, - [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 0, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, - [1543] = {.lex_state = 0, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 14, .external_lex_state = 3}, - [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 = 0, .external_lex_state = 3}, - [1551] = {.lex_state = 14, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 0, .external_lex_state = 3}, - [1554] = {.lex_state = 0, .external_lex_state = 3}, - [1555] = {.lex_state = 0, .external_lex_state = 3}, - [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 17, .external_lex_state = 3}, - [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 0, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 17, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 10, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 57, .external_lex_state = 3}, - [1572] = {.lex_state = 10, .external_lex_state = 3}, - [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 7, .external_lex_state = 3}, - [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 17, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 10, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 3}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 0, .external_lex_state = 3}, - [1584] = {.lex_state = 7, .external_lex_state = 3}, - [1585] = {.lex_state = 4, .external_lex_state = 3}, - [1586] = {.lex_state = 57, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 10, .external_lex_state = 3}, - [1593] = {.lex_state = 10, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 4, .external_lex_state = 3}, - [1596] = {.lex_state = 17, .external_lex_state = 3}, - [1597] = {.lex_state = 7, .external_lex_state = 3}, - [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 17, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 17, .external_lex_state = 3}, - [1603] = {.lex_state = 13, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 17, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 14, .external_lex_state = 3}, - [1608] = {.lex_state = 4, .external_lex_state = 3}, - [1609] = {.lex_state = 7, .external_lex_state = 3}, - [1610] = {.lex_state = 17, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 17, .external_lex_state = 3}, - [1613] = {.lex_state = 10, .external_lex_state = 3}, - [1614] = {.lex_state = 13, .external_lex_state = 3}, - [1615] = {.lex_state = 17, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, - [1617] = {.lex_state = 4, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 0, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 57, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 17, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 17, .external_lex_state = 3}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 0, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 0, .external_lex_state = 3}, - [1641] = {.lex_state = 0, .external_lex_state = 3}, - [1642] = {.lex_state = 17, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 17, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 17, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 17, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 17, .external_lex_state = 3}, - [1655] = {.lex_state = 17, .external_lex_state = 3}, - [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 4, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 0, .external_lex_state = 3}, - [1669] = {.lex_state = 17, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, - [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 0, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 0, .external_lex_state = 3}, - [1687] = {.lex_state = 17, .external_lex_state = 3}, - [1688] = {.lex_state = 17, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 3}, - [1690] = {.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 = 0, .external_lex_state = 3}, - [1695] = {.lex_state = 0, .external_lex_state = 3}, - [1696] = {.lex_state = 0, .external_lex_state = 3}, - [1697] = {.lex_state = 57, .external_lex_state = 3}, - [1698] = {.lex_state = 57, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 17, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 57, .external_lex_state = 3}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 4, .external_lex_state = 3}, - [1706] = {.lex_state = 57, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, - [1708] = {.lex_state = 17, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 0, .external_lex_state = 3}, - [1711] = {.lex_state = 7, .external_lex_state = 3}, - [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 57, .external_lex_state = 3}, - [1714] = {.lex_state = 0, .external_lex_state = 3}, - [1715] = {.lex_state = 0, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 18, .external_lex_state = 3}, - [1718] = {.lex_state = 57, .external_lex_state = 3}, - [1719] = {.lex_state = 7, .external_lex_state = 3}, - [1720] = {.lex_state = 57, .external_lex_state = 3}, - [1721] = {.lex_state = 18, .external_lex_state = 3}, - [1722] = {.lex_state = 4, .external_lex_state = 3}, - [1723] = {.lex_state = 57, .external_lex_state = 3}, - [1724] = {.lex_state = 57, .external_lex_state = 3}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 0, .external_lex_state = 3}, - [1727] = {.lex_state = 57, .external_lex_state = 3}, - [1728] = {.lex_state = 57, .external_lex_state = 3}, - [1729] = {.lex_state = 17, .external_lex_state = 3}, - [1730] = {.lex_state = 17, .external_lex_state = 3}, - [1731] = {.lex_state = 0, .external_lex_state = 3}, - [1732] = {.lex_state = 17, .external_lex_state = 3}, - [1733] = {.lex_state = 57, .external_lex_state = 3}, - [1734] = {.lex_state = 0, .external_lex_state = 3}, - [1735] = {.lex_state = 0, .external_lex_state = 3}, - [1736] = {.lex_state = 4, .external_lex_state = 4}, - [1737] = {.lex_state = 57, .external_lex_state = 3}, - [1738] = {.lex_state = 7, .external_lex_state = 3}, - [1739] = {.lex_state = 7, .external_lex_state = 3}, - [1740] = {.lex_state = 57, .external_lex_state = 3}, - [1741] = {.lex_state = 57, .external_lex_state = 3}, - [1742] = {.lex_state = 7, .external_lex_state = 3}, - [1743] = {.lex_state = 7, .external_lex_state = 3}, - [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 4, .external_lex_state = 4}, - [1746] = {.lex_state = 4, .external_lex_state = 3}, - [1747] = {.lex_state = 18, .external_lex_state = 3}, - [1748] = {.lex_state = 57, .external_lex_state = 3}, - [1749] = {.lex_state = 4, .external_lex_state = 4}, - [1750] = {.lex_state = 57, .external_lex_state = 3}, - [1751] = {.lex_state = 0, .external_lex_state = 3}, - [1752] = {.lex_state = 0, .external_lex_state = 3}, - [1753] = {.lex_state = 17, .external_lex_state = 3}, - [1754] = {.lex_state = 18, .external_lex_state = 3}, - [1755] = {.lex_state = 57, .external_lex_state = 3}, - [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 3}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 57, .external_lex_state = 3}, - [1761] = {.lex_state = 57, .external_lex_state = 3}, - [1762] = {.lex_state = 4, .external_lex_state = 3}, - [1763] = {.lex_state = 17, .external_lex_state = 3}, - [1764] = {.lex_state = 57, .external_lex_state = 3}, - [1765] = {.lex_state = 57, .external_lex_state = 3}, - [1766] = {.lex_state = 7, .external_lex_state = 3}, - [1767] = {.lex_state = 0, .external_lex_state = 3}, - [1768] = {.lex_state = 17, .external_lex_state = 3}, - [1769] = {.lex_state = 17, .external_lex_state = 3}, - [1770] = {.lex_state = 57, .external_lex_state = 3}, - [1771] = {.lex_state = 57, .external_lex_state = 3}, - [1772] = {.lex_state = 7, .external_lex_state = 3}, - [1773] = {.lex_state = 17, .external_lex_state = 3}, - [1774] = {.lex_state = 7, .external_lex_state = 3}, - [1775] = {.lex_state = 17, .external_lex_state = 3}, - [1776] = {.lex_state = 7, .external_lex_state = 3}, - [1777] = {.lex_state = 0, .external_lex_state = 3}, - [1778] = {.lex_state = 57, .external_lex_state = 3}, - [1779] = {.lex_state = 0, .external_lex_state = 3}, - [1780] = {.lex_state = 4, .external_lex_state = 4}, - [1781] = {.lex_state = 0, .external_lex_state = 3}, - [1782] = {.lex_state = 57, .external_lex_state = 3}, - [1783] = {.lex_state = 57, .external_lex_state = 3}, - [1784] = {.lex_state = 57, .external_lex_state = 3}, - [1785] = {.lex_state = 4, .external_lex_state = 4}, - [1786] = {.lex_state = 57, .external_lex_state = 3}, - [1787] = {.lex_state = 7, .external_lex_state = 3}, - [1788] = {.lex_state = 4, .external_lex_state = 4}, - [1789] = {.lex_state = 4, .external_lex_state = 4}, - [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 57, .external_lex_state = 3}, - [1792] = {.lex_state = 4, .external_lex_state = 3}, - [1793] = {.lex_state = 7, .external_lex_state = 3}, - [1794] = {.lex_state = 0, .external_lex_state = 3}, - [1795] = {.lex_state = 0, .external_lex_state = 3}, - [1796] = {.lex_state = 0, .external_lex_state = 3}, - [1797] = {.lex_state = 10, .external_lex_state = 3}, - [1798] = {.lex_state = 10, .external_lex_state = 3}, - [1799] = {.lex_state = 0, .external_lex_state = 3}, - [1800] = {.lex_state = 10, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 10, .external_lex_state = 3}, - [1803] = {.lex_state = 10, .external_lex_state = 3}, - [1804] = {.lex_state = 0, .external_lex_state = 3}, - [1805] = {.lex_state = 7, .external_lex_state = 3}, - [1806] = {.lex_state = 3, .external_lex_state = 3}, - [1807] = {.lex_state = 3, .external_lex_state = 3}, - [1808] = {.lex_state = 0, .external_lex_state = 3}, - [1809] = {.lex_state = 10, .external_lex_state = 3}, - [1810] = {.lex_state = 57, .external_lex_state = 3}, - [1811] = {.lex_state = 0, .external_lex_state = 3}, - [1812] = {.lex_state = 3, .external_lex_state = 3}, - [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 3}, - [1815] = {.lex_state = 57, .external_lex_state = 3}, - [1816] = {.lex_state = 0, .external_lex_state = 3}, - [1817] = {.lex_state = 3, .external_lex_state = 3}, - [1818] = {.lex_state = 3, .external_lex_state = 3}, - [1819] = {.lex_state = 0, .external_lex_state = 3}, - [1820] = {.lex_state = 3, .external_lex_state = 3}, - [1821] = {.lex_state = 3, .external_lex_state = 3}, - [1822] = {.lex_state = 7, .external_lex_state = 3}, - [1823] = {.lex_state = 57, .external_lex_state = 3}, - [1824] = {.lex_state = 17, .external_lex_state = 3}, - [1825] = {.lex_state = 57, .external_lex_state = 3}, - [1826] = {.lex_state = 57, .external_lex_state = 3}, - [1827] = {.lex_state = 0, .external_lex_state = 3}, - [1828] = {.lex_state = 7, .external_lex_state = 3}, - [1829] = {.lex_state = 10, .external_lex_state = 3}, - [1830] = {.lex_state = 57, .external_lex_state = 3}, - [1831] = {.lex_state = 0, .external_lex_state = 3}, - [1832] = {.lex_state = 7, .external_lex_state = 3}, - [1833] = {.lex_state = 7, .external_lex_state = 3}, - [1834] = {.lex_state = 0, .external_lex_state = 3}, - [1835] = {.lex_state = 7, .external_lex_state = 3}, - [1836] = {.lex_state = 0, .external_lex_state = 3}, - [1837] = {.lex_state = 0, .external_lex_state = 3}, - [1838] = {.lex_state = 0, .external_lex_state = 3}, - [1839] = {.lex_state = 7, .external_lex_state = 3}, - [1840] = {.lex_state = 7, .external_lex_state = 3}, - [1841] = {.lex_state = 57, .external_lex_state = 3}, - [1842] = {.lex_state = 0, .external_lex_state = 3}, - [1843] = {.lex_state = 7, .external_lex_state = 3}, - [1844] = {.lex_state = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 0, .external_lex_state = 3}, - [1846] = {.lex_state = 57, .external_lex_state = 3}, - [1847] = {.lex_state = 7, .external_lex_state = 3}, - [1848] = {.lex_state = 0, .external_lex_state = 3}, - [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 0, .external_lex_state = 3}, - [1851] = {.lex_state = 0, .external_lex_state = 3}, - [1852] = {.lex_state = 0, .external_lex_state = 3}, - [1853] = {.lex_state = 0, .external_lex_state = 3}, - [1854] = {.lex_state = 0, .external_lex_state = 3}, - [1855] = {.lex_state = 7, .external_lex_state = 3}, - [1856] = {.lex_state = 0, .external_lex_state = 3}, - [1857] = {.lex_state = 0, .external_lex_state = 3}, - [1858] = {.lex_state = 57, .external_lex_state = 3}, - [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 3, .external_lex_state = 3}, - [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, - [1863] = {.lex_state = 57, .external_lex_state = 3}, - [1864] = {.lex_state = 57, .external_lex_state = 3}, - [1865] = {.lex_state = 57, .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 = 10, .external_lex_state = 3}, - [1870] = {.lex_state = 0, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 57, .external_lex_state = 3}, - [1873] = {.lex_state = 7, .external_lex_state = 3}, - [1874] = {.lex_state = 0, .external_lex_state = 3}, - [1875] = {.lex_state = 57, .external_lex_state = 3}, - [1876] = {.lex_state = 7, .external_lex_state = 3}, - [1877] = {.lex_state = 0, .external_lex_state = 3}, - [1878] = {.lex_state = 4, .external_lex_state = 3}, - [1879] = {.lex_state = 57, .external_lex_state = 3}, - [1880] = {.lex_state = 57, .external_lex_state = 3}, - [1881] = {.lex_state = 57, .external_lex_state = 3}, - [1882] = {.lex_state = 0, .external_lex_state = 3}, - [1883] = {.lex_state = 57, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, - [1885] = {.lex_state = 57, .external_lex_state = 3}, - [1886] = {.lex_state = 0, .external_lex_state = 3}, - [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 57, .external_lex_state = 3}, - [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 57, .external_lex_state = 3}, - [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 57, .external_lex_state = 3}, - [1893] = {.lex_state = 57, .external_lex_state = 3}, - [1894] = {.lex_state = 57, .external_lex_state = 3}, - [1895] = {.lex_state = 3, .external_lex_state = 3}, - [1896] = {.lex_state = 57, .external_lex_state = 3}, - [1897] = {.lex_state = 3, .external_lex_state = 3}, - [1898] = {.lex_state = 57, .external_lex_state = 3}, - [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 0, .external_lex_state = 3}, - [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 57, .external_lex_state = 3}, - [1903] = {.lex_state = 57, .external_lex_state = 3}, - [1904] = {.lex_state = 10, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 57, .external_lex_state = 3}, - [1907] = {.lex_state = 3, .external_lex_state = 3}, - [1908] = {.lex_state = 3, .external_lex_state = 3}, - [1909] = {.lex_state = 57, .external_lex_state = 3}, - [1910] = {.lex_state = 7, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, - [1912] = {.lex_state = 3, .external_lex_state = 3}, - [1913] = {.lex_state = 57, .external_lex_state = 3}, - [1914] = {.lex_state = 57, .external_lex_state = 3}, - [1915] = {.lex_state = 0, .external_lex_state = 3}, - [1916] = {.lex_state = 3, .external_lex_state = 3}, - [1917] = {.lex_state = 3, .external_lex_state = 3}, - [1918] = {.lex_state = 3, .external_lex_state = 3}, - [1919] = {.lex_state = 0, .external_lex_state = 3}, - [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 0, .external_lex_state = 3}, - [1922] = {.lex_state = 57, .external_lex_state = 3}, - [1923] = {.lex_state = 0, .external_lex_state = 3}, - [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 57, .external_lex_state = 3}, - [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 10, .external_lex_state = 3}, - [1928] = {.lex_state = 57, .external_lex_state = 3}, - [1929] = {.lex_state = 57, .external_lex_state = 3}, - [1930] = {.lex_state = 0, .external_lex_state = 3}, - [1931] = {.lex_state = 3, .external_lex_state = 3}, - [1932] = {.lex_state = 3, .external_lex_state = 3}, - [1933] = {.lex_state = 3, .external_lex_state = 3}, - [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 0, .external_lex_state = 3}, - [1936] = {.lex_state = 3, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, - [1938] = {.lex_state = 57, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 57, .external_lex_state = 3}, - [1941] = {.lex_state = 0, .external_lex_state = 3}, - [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 7, .external_lex_state = 3}, - [1944] = {.lex_state = 0, .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}, - [1948] = {.lex_state = 57, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 7, .external_lex_state = 3}, - [1952] = {.lex_state = 0, .external_lex_state = 3}, - [1953] = {.lex_state = 7, .external_lex_state = 3}, - [1954] = {.lex_state = 57, .external_lex_state = 3}, - [1955] = {.lex_state = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 57, .external_lex_state = 3}, - [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 0, .external_lex_state = 3}, - [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 0, .external_lex_state = 3}, - [1967] = {.lex_state = 57, .external_lex_state = 3}, - [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 0, .external_lex_state = 3}, - [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 0, .external_lex_state = 3}, - [1972] = {.lex_state = 7, .external_lex_state = 3}, - [1973] = {.lex_state = 57, .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}, - [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 = 7, .external_lex_state = 3}, - [1981] = {.lex_state = 57, .external_lex_state = 3}, - [1982] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 0, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, - [1991] = {.lex_state = 0, .external_lex_state = 3}, - [1992] = {.lex_state = 57, .external_lex_state = 3}, - [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 0, .external_lex_state = 3}, - [1995] = {.lex_state = 57, .external_lex_state = 3}, - [1996] = {.lex_state = 57, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 57, .external_lex_state = 3}, - [2000] = {.lex_state = 0, .external_lex_state = 3}, - [2001] = {.lex_state = 57, .external_lex_state = 3}, - [2002] = {.lex_state = 0, .external_lex_state = 3}, - [2003] = {.lex_state = 57, .external_lex_state = 3}, - [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 0, .external_lex_state = 3}, - [2006] = {.lex_state = 57, .external_lex_state = 3}, - [2007] = {.lex_state = 57, .external_lex_state = 3}, - [2008] = {.lex_state = 0, .external_lex_state = 3}, - [2009] = {.lex_state = 57, .external_lex_state = 3}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 0, .external_lex_state = 3}, - [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 57, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 57, .external_lex_state = 3}, - [2016] = {.lex_state = 10, .external_lex_state = 3}, - [2017] = {.lex_state = 0, .external_lex_state = 3}, - [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 57, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 0, .external_lex_state = 3}, - [2022] = {.lex_state = 0, .external_lex_state = 3}, - [2023] = {.lex_state = 57, .external_lex_state = 3}, - [2024] = {.lex_state = 57, .external_lex_state = 3}, - [2025] = {.lex_state = 0, .external_lex_state = 3}, - [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 7, .external_lex_state = 3}, - [2028] = {.lex_state = 0, .external_lex_state = 3}, - [2029] = {.lex_state = 57, .external_lex_state = 3}, - [2030] = {.lex_state = 0, .external_lex_state = 3}, - [2031] = {.lex_state = 7, .external_lex_state = 3}, - [2032] = {.lex_state = 57, .external_lex_state = 3}, - [2033] = {.lex_state = 57, .external_lex_state = 3}, - [2034] = {.lex_state = 7, .external_lex_state = 3}, - [2035] = {.lex_state = 57, .external_lex_state = 3}, - [2036] = {.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 = 57, .external_lex_state = 3}, - [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .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}, - [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 57, .external_lex_state = 3}, - [2047] = {.lex_state = 0, .external_lex_state = 3}, - [2048] = {.lex_state = 10, .external_lex_state = 3}, - [2049] = {.lex_state = 7, .external_lex_state = 3}, - [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 57, .external_lex_state = 3}, - [2052] = {.lex_state = 57, .external_lex_state = 3}, - [2053] = {.lex_state = 0, .external_lex_state = 3}, - [2054] = {.lex_state = 0, .external_lex_state = 3}, - [2055] = {.lex_state = 0, .external_lex_state = 3}, - [2056] = {.lex_state = 7, .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}, - [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 17, .external_lex_state = 3}, - [2062] = {.lex_state = 7, .external_lex_state = 3}, - [2063] = {.lex_state = 17, .external_lex_state = 3}, - [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 0, .external_lex_state = 3}, - [2066] = {.lex_state = 0, .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}, - [2070] = {.lex_state = 7, .external_lex_state = 3}, - [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 57, .external_lex_state = 3}, - [2073] = {.lex_state = 0, .external_lex_state = 3}, - [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 0, .external_lex_state = 3}, - [2077] = {.lex_state = 7, .external_lex_state = 3}, - [2078] = {.lex_state = 0, .external_lex_state = 3}, - [2079] = {.lex_state = 57, .external_lex_state = 3}, - [2080] = {.lex_state = 57, .external_lex_state = 3}, - [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 7, .external_lex_state = 3}, - [2083] = {.lex_state = 57, .external_lex_state = 3}, - [2084] = {.lex_state = 7, .external_lex_state = 3}, - [2085] = {.lex_state = 0, .external_lex_state = 3}, - [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 7, .external_lex_state = 3}, - [2088] = {.lex_state = 57, .external_lex_state = 3}, - [2089] = {.lex_state = 17, .external_lex_state = 3}, - [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 57, .external_lex_state = 3}, - [2092] = {.lex_state = 17, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 0, .external_lex_state = 3}, - [2095] = {.lex_state = 0, .external_lex_state = 3}, - [2096] = {.lex_state = 0, .external_lex_state = 3}, - [2097] = {.lex_state = 57, .external_lex_state = 3}, - [2098] = {.lex_state = 4, .external_lex_state = 3}, - [2099] = {.lex_state = 57, .external_lex_state = 3}, - [2100] = {.lex_state = 57, .external_lex_state = 3}, - [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 57, .external_lex_state = 3}, - [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 7, .external_lex_state = 3}, - [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, - [2107] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 17, .external_lex_state = 3}, - [2114] = {.lex_state = 7, .external_lex_state = 3}, - [2115] = {.lex_state = 57, .external_lex_state = 3}, - [2116] = {.lex_state = 7, .external_lex_state = 3}, - [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 0, .external_lex_state = 3}, - [2121] = {.lex_state = 0, .external_lex_state = 3}, - [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 0, .external_lex_state = 3}, - [2124] = {.lex_state = 7, .external_lex_state = 3}, - [2125] = {.lex_state = 0, .external_lex_state = 3}, - [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 0, .external_lex_state = 3}, - [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 57, .external_lex_state = 3}, - [2134] = {.lex_state = 17, .external_lex_state = 3}, - [2135] = {.lex_state = 57, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 57, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, - [2139] = {.lex_state = 0, .external_lex_state = 3}, - [2140] = {.lex_state = 57, .external_lex_state = 3}, - [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 57, .external_lex_state = 3}, - [2144] = {.lex_state = 7, .external_lex_state = 3}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, - [2146] = {.lex_state = 0, .external_lex_state = 3}, - [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 7, .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}, - [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 0, .external_lex_state = 3}, - [2154] = {.lex_state = 0, .external_lex_state = 3}, - [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 57, .external_lex_state = 3}, - [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 57, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [2167] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 0, .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 = 0, .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 = 7, .external_lex_state = 3}, - [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 0, .external_lex_state = 3}, - [2186] = {.lex_state = 57, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, - [2189] = {.lex_state = 0, .external_lex_state = 3}, - [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 7, .external_lex_state = 3}, - [2193] = {.lex_state = 0, .external_lex_state = 3}, - [2194] = {.lex_state = 57, .external_lex_state = 3}, - [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 0, .external_lex_state = 3}, - [2197] = {.lex_state = 0, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 3}, - [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 0, .external_lex_state = 3}, - [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 0, .external_lex_state = 3}, - [2204] = {.lex_state = 0, .external_lex_state = 3}, - [2205] = {.lex_state = 0, .external_lex_state = 3}, - [2206] = {.lex_state = 0, .external_lex_state = 3}, - [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 57, .external_lex_state = 3}, - [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 0, .external_lex_state = 3}, - [2213] = {.lex_state = 7, .external_lex_state = 3}, - [2214] = {.lex_state = 57, .external_lex_state = 3}, - [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 57, .external_lex_state = 3}, - [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 7, .external_lex_state = 3}, - [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 7, .external_lex_state = 3}, - [2222] = {.lex_state = 57, .external_lex_state = 3}, - [2223] = {.lex_state = 57, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 3}, - [2226] = {.lex_state = 0, .external_lex_state = 3}, - [2227] = {.lex_state = 57, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 57, .external_lex_state = 3}, - [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 0, .external_lex_state = 3}, - [2234] = {.lex_state = 0, .external_lex_state = 3}, - [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 0, .external_lex_state = 3}, - [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 7, .external_lex_state = 3}, - [2239] = {.lex_state = 57, .external_lex_state = 3}, - [2240] = {.lex_state = 57, .external_lex_state = 3}, - [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 0, .external_lex_state = 3}, - [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 0, .external_lex_state = 5}, - [2245] = {.lex_state = 7, .external_lex_state = 3}, - [2246] = {.lex_state = 4, .external_lex_state = 3}, - [2247] = {.lex_state = 57, .external_lex_state = 3}, - [2248] = {.lex_state = 10, .external_lex_state = 3}, - [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 7, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 7, .external_lex_state = 3}, - [2254] = {.lex_state = 7, .external_lex_state = 3}, - [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 57, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 7, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 0, .external_lex_state = 3}, - [2262] = {.lex_state = 7, .external_lex_state = 3}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, - [2264] = {.lex_state = 7, .external_lex_state = 3}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 3}, - [2267] = {.lex_state = 0, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 10, .external_lex_state = 3}, - [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 0, .external_lex_state = 3}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 7, .external_lex_state = 3}, - [2275] = {.lex_state = 7, .external_lex_state = 3}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 0, .external_lex_state = 3}, - [2278] = {.lex_state = 0, .external_lex_state = 3}, - [2279] = {.lex_state = 0, .external_lex_state = 3}, - [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 7, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 7, .external_lex_state = 3}, - [2286] = {.lex_state = 0, .external_lex_state = 3}, - [2287] = {.lex_state = 0, .external_lex_state = 3}, - [2288] = {.lex_state = 7, .external_lex_state = 3}, - [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 0, .external_lex_state = 3}, - [2291] = {.lex_state = 7, .external_lex_state = 3}, - [2292] = {.lex_state = 7, .external_lex_state = 3}, - [2293] = {.lex_state = 0, .external_lex_state = 3}, - [2294] = {.lex_state = 7, .external_lex_state = 3}, - [2295] = {.lex_state = 7, .external_lex_state = 3}, - [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, - [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 7, .external_lex_state = 3}, - [2300] = {.lex_state = 7, .external_lex_state = 3}, - [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 7, .external_lex_state = 3}, - [2303] = {.lex_state = 10, .external_lex_state = 3}, - [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 7, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, - [2307] = {.lex_state = 7, .external_lex_state = 3}, - [2308] = {.lex_state = 7, .external_lex_state = 3}, - [2309] = {.lex_state = 7, .external_lex_state = 3}, - [2310] = {.lex_state = 7, .external_lex_state = 3}, - [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 0, .external_lex_state = 3}, - [2313] = {.lex_state = 0, .external_lex_state = 3}, - [2314] = {.lex_state = 7, .external_lex_state = 3}, - [2315] = {.lex_state = 7, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, - [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 7, .external_lex_state = 3}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, - [2320] = {.lex_state = 10, .external_lex_state = 3}, - [2321] = {.lex_state = 0, .external_lex_state = 3}, - [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 7, .external_lex_state = 3}, - [2326] = {.lex_state = 7, .external_lex_state = 3}, - [2327] = {.lex_state = 0, .external_lex_state = 3}, - [2328] = {.lex_state = 0, .external_lex_state = 3}, - [2329] = {.lex_state = 7, .external_lex_state = 3}, - [2330] = {.lex_state = 0, .external_lex_state = 3}, - [2331] = {.lex_state = 7, .external_lex_state = 3}, - [2332] = {.lex_state = 57, .external_lex_state = 3}, - [2333] = {.lex_state = 7, .external_lex_state = 3}, - [2334] = {.lex_state = 7, .external_lex_state = 3}, - [2335] = {.lex_state = 0, .external_lex_state = 3}, - [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 3}, - [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 0, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 0, .external_lex_state = 3}, - [2342] = {.lex_state = 10, .external_lex_state = 3}, - [2343] = {.lex_state = 7, .external_lex_state = 3}, - [2344] = {.lex_state = 0, .external_lex_state = 3}, - [2345] = {.lex_state = 0, .external_lex_state = 3}, - [2346] = {.lex_state = 0, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 10, .external_lex_state = 3}, - [2349] = {.lex_state = 10, .external_lex_state = 3}, - [2350] = {.lex_state = 7, .external_lex_state = 3}, - [2351] = {.lex_state = 7, .external_lex_state = 3}, - [2352] = {.lex_state = 0, .external_lex_state = 3}, - [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 0, .external_lex_state = 3}, - [2355] = {.lex_state = 0, .external_lex_state = 3}, - [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 57, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 0, .external_lex_state = 3}, - [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, - [2364] = {.lex_state = 0, .external_lex_state = 3}, - [2365] = {.lex_state = 0, .external_lex_state = 3}, - [2366] = {.lex_state = 0, .external_lex_state = 3}, - [2367] = {.lex_state = 0, .external_lex_state = 3}, - [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 0, .external_lex_state = 3}, - [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 10, .external_lex_state = 3}, - [2373] = {.lex_state = 0, .external_lex_state = 3}, - [2374] = {.lex_state = 0, .external_lex_state = 3}, - [2375] = {.lex_state = 0, .external_lex_state = 3}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, - [2377] = {.lex_state = 0, .external_lex_state = 3}, - [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 0, .external_lex_state = 3}, - [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 7, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 0, .external_lex_state = 3}, - [2385] = {.lex_state = 0, .external_lex_state = 3}, - [2386] = {.lex_state = 7, .external_lex_state = 3}, - [2387] = {.lex_state = 0, .external_lex_state = 3}, - [2388] = {.lex_state = 0, .external_lex_state = 3}, - [2389] = {.lex_state = 0, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 3}, - [2391] = {.lex_state = 0, .external_lex_state = 3}, - [2392] = {.lex_state = 0, .external_lex_state = 3}, - [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 0, .external_lex_state = 3}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 10, .external_lex_state = 3}, - [2399] = {.lex_state = 0, .external_lex_state = 3}, - [2400] = {.lex_state = 7, .external_lex_state = 3}, - [2401] = {.lex_state = 7, .external_lex_state = 3}, - [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, - [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 0, .external_lex_state = 3}, - [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 7, .external_lex_state = 3}, - [2410] = {.lex_state = 0, .external_lex_state = 3}, - [2411] = {.lex_state = 0, .external_lex_state = 3}, - [2412] = {.lex_state = 7, .external_lex_state = 3}, - [2413] = {.lex_state = 0, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, - [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 0, .external_lex_state = 3}, - [2418] = {.lex_state = 7, .external_lex_state = 3}, - [2419] = {.lex_state = 10, .external_lex_state = 3}, - [2420] = {.lex_state = 0, .external_lex_state = 3}, - [2421] = {.lex_state = 10, .external_lex_state = 3}, - [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 0, .external_lex_state = 3}, - [2424] = {.lex_state = 7, .external_lex_state = 3}, - [2425] = {.lex_state = 0, .external_lex_state = 3}, - [2426] = {.lex_state = 10, .external_lex_state = 3}, - [2427] = {.lex_state = 0, .external_lex_state = 3}, - [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 0, .external_lex_state = 3}, - [2430] = {.lex_state = 0, .external_lex_state = 3}, - [2431] = {.lex_state = 0, .external_lex_state = 3}, - [2432] = {.lex_state = 7, .external_lex_state = 3}, - [2433] = {.lex_state = 0, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, - [2435] = {.lex_state = 10, .external_lex_state = 3}, - [2436] = {.lex_state = 0, .external_lex_state = 3}, - [2437] = {.lex_state = 0, .external_lex_state = 3}, - [2438] = {.lex_state = 10, .external_lex_state = 3}, - [2439] = {.lex_state = 0, .external_lex_state = 3}, - [2440] = {.lex_state = 0, .external_lex_state = 3}, - [2441] = {.lex_state = 10, .external_lex_state = 3}, - [2442] = {.lex_state = 7, .external_lex_state = 3}, - [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 10, .external_lex_state = 3}, - [2445] = {.lex_state = 7, .external_lex_state = 3}, - [2446] = {.lex_state = 7, .external_lex_state = 3}, - [2447] = {.lex_state = 7, .external_lex_state = 3}, - [2448] = {.lex_state = 0, .external_lex_state = 3}, - [2449] = {.lex_state = 0, .external_lex_state = 3}, - [2450] = {.lex_state = 10, .external_lex_state = 3}, - [2451] = {.lex_state = 0, .external_lex_state = 3}, - [2452] = {.lex_state = 10, .external_lex_state = 3}, - [2453] = {.lex_state = 0, .external_lex_state = 3}, - [2454] = {.lex_state = 0, .external_lex_state = 3}, - [2455] = {.lex_state = 0, .external_lex_state = 3}, - [2456] = {.lex_state = 0, .external_lex_state = 3}, - [2457] = {.lex_state = 7, .external_lex_state = 3}, - [2458] = {.lex_state = 0, .external_lex_state = 3}, - [2459] = {.lex_state = 7, .external_lex_state = 3}, - [2460] = {.lex_state = 7, .external_lex_state = 3}, - [2461] = {.lex_state = 7, .external_lex_state = 3}, - [2462] = {.lex_state = 7, .external_lex_state = 3}, - [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 7, .external_lex_state = 3}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 0, .external_lex_state = 3}, - [2467] = {.lex_state = 0, .external_lex_state = 3}, - [2468] = {.lex_state = 7, .external_lex_state = 3}, - [2469] = {.lex_state = 7, .external_lex_state = 3}, - [2470] = {.lex_state = 7, .external_lex_state = 3}, - [2471] = {.lex_state = 0, .external_lex_state = 3}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, - [2473] = {.lex_state = 7, .external_lex_state = 3}, - [2474] = {.lex_state = 7, .external_lex_state = 3}, - [2475] = {.lex_state = 0, .external_lex_state = 3}, - [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 7, .external_lex_state = 3}, - [2478] = {.lex_state = 7, .external_lex_state = 3}, - [2479] = {.lex_state = 0, .external_lex_state = 3}, -}; - -enum { - ts_external_token__string_content = 0, - ts_external_token_raw_string_literal = 1, - ts_external_token_float_literal = 2, - ts_external_token_block_comment = 3, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__string_content] = sym__string_content, - [ts_external_token_raw_string_literal] = sym_raw_string_literal, - [ts_external_token_float_literal] = sym_float_literal, - [ts_external_token_block_comment] = sym_block_comment, -}; - -static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__string_content] = true, + case 382: + if (lookahead == 'e') ADVANCE(405); + END_STATE(); + case 383: + if (lookahead == 't') ADVANCE(406); + END_STATE(); + case 384: + if (lookahead == 'p') ADVANCE(407); + END_STATE(); + case 385: + if (lookahead == 'e') ADVANCE(408); + END_STATE(); + case 386: + ACCEPT_TOKEN(anon_sym_must_use); + END_STATE(); + case 387: + if (lookahead == 'i') ADVANCE(409); + END_STATE(); + case 388: + if (lookahead == 'c') ADVANCE(410); + END_STATE(); + case 389: + if (lookahead == 'e') ADVANCE(411); + END_STATE(); + case 390: + if (lookahead == 'u') ADVANCE(412); + END_STATE(); + case 391: + if (lookahead == 'n') ADVANCE(413); + END_STATE(); + case 392: + if (lookahead == 'r') ADVANCE(414); + END_STATE(); + case 393: + if (lookahead == 'n') ADVANCE(415); + END_STATE(); + case 394: + if (lookahead == 'a') ADVANCE(416); + END_STATE(); + case 395: + if (lookahead == 'e') ADVANCE(417); + END_STATE(); + case 396: + if (lookahead == 'l') ADVANCE(418); + END_STATE(); + case 397: + if (lookahead == 'g') ADVANCE(419); + END_STATE(); + case 398: + if (lookahead == 's') ADVANCE(420); + END_STATE(); + case 399: + if (lookahead == 'a') ADVANCE(421); + END_STATE(); + case 400: + if (lookahead == 'e') ADVANCE(422); + END_STATE(); + case 401: + if (lookahead == 'e') ADVANCE(423); + END_STATE(); + case 402: + if (lookahead == 'd') ADVANCE(424); + END_STATE(); + case 403: + if (lookahead == 'm') ADVANCE(425); + END_STATE(); + case 404: + if (lookahead == 'l') ADVANCE(426); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_link_name); + END_STATE(); + case 406: + if (lookahead == 'i') ADVANCE(427); + END_STATE(); + case 407: + if (lookahead == 'o') ADVANCE(428); + END_STATE(); + case 408: + ACCEPT_TOKEN(anon_sym_macro_use); + END_STATE(); + case 409: + if (lookahead == 'n') ADVANCE(429); + END_STATE(); + case 410: + if (lookahead == 'i') ADVANCE(430); + END_STATE(); + case 411: + ACCEPT_TOKEN(anon_sym_no_mangle); + END_STATE(); + case 412: + if (lookahead == 's') ADVANCE(431); + END_STATE(); + case 413: + if (lookahead == 'd') ADVANCE(432); + END_STATE(); + case 414: + if (lookahead == 'o') ADVANCE(433); + END_STATE(); + case 415: + if (lookahead == '_') ADVANCE(434); + END_STATE(); + case 416: + if (lookahead == 'n') ADVANCE(435); + END_STATE(); + case 417: + if (lookahead == 'a') ADVANCE(436); + END_STATE(); + case 418: + if (lookahead == 'l') ADVANCE(437); + END_STATE(); + case 419: + if (lookahead == 't') ADVANCE(438); + END_STATE(); + case 420: + if (lookahead == 'u') ADVANCE(439); + END_STATE(); + case 421: + if (lookahead == 'l') ADVANCE(440); + END_STATE(); + case 422: + ACCEPT_TOKEN(anon_sym_crate_name); + END_STATE(); + case 423: + ACCEPT_TOKEN(anon_sym_crate_type); + END_STATE(); + case 424: + ACCEPT_TOKEN(anon_sym_deprecated); + END_STATE(); + case 425: + if (lookahead == 'e') ADVANCE(441); + END_STATE(); + case 426: + if (lookahead == 'o') ADVANCE(442); + END_STATE(); + case 427: + if (lookahead == 'o') ADVANCE(443); + END_STATE(); + case 428: + if (lookahead == 'r') ADVANCE(444); + END_STATE(); + case 429: + if (lookahead == 's') ADVANCE(445); + END_STATE(); + case 430: + if (lookahead == 't') ADVANCE(446); + END_STATE(); + case 431: + if (lookahead == 't') ADVANCE(447); + END_STATE(); + case 432: + if (lookahead == 'l') ADVANCE(448); + END_STATE(); + case 433: + ACCEPT_TOKEN(anon_sym_proc_macro); + if (lookahead == '_') ADVANCE(449); + END_STATE(); + case 434: + if (lookahead == 'l') ADVANCE(450); + END_STATE(); + case 435: + if (lookahead == 'i') ADVANCE(451); + END_STATE(); + case 436: + if (lookahead == 't') ADVANCE(452); + END_STATE(); + case 437: + if (lookahead == 'e') ADVANCE(453); + END_STATE(); + case 438: + if (lookahead == 'h') ADVANCE(454); + END_STATE(); + case 439: + if (lookahead == 'b') ADVANCE(455); + END_STATE(); + case 440: + if (lookahead == 'l') ADVANCE(456); + END_STATE(); + case 441: + ACCEPT_TOKEN(anon_sym_export_name); + END_STATE(); + case 442: + if (lookahead == 'c') ADVANCE(457); + END_STATE(); + case 443: + if (lookahead == 'n') ADVANCE(458); + END_STATE(); + case 444: + if (lookahead == 't') ADVANCE(459); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym_no_builtins); + END_STATE(); + case 446: + if (lookahead == '_') ADVANCE(460); + END_STATE(); + case 447: + if (lookahead == 'i') ADVANCE(461); + END_STATE(); + case 448: + if (lookahead == 'e') ADVANCE(462); + END_STATE(); + case 449: + if (lookahead == 'a') ADVANCE(463); + if (lookahead == 'd') ADVANCE(464); + END_STATE(); + case 450: + if (lookahead == 'i') ADVANCE(465); + END_STATE(); + case 451: + if (lookahead == 'c') ADVANCE(466); + END_STATE(); + case 452: + if (lookahead == 'u') ADVANCE(467); + END_STATE(); + case 453: + if (lookahead == 'r') ADVANCE(468); + END_STATE(); + case 454: + if (lookahead == '_') ADVANCE(469); + END_STATE(); + case 455: + if (lookahead == 's') ADVANCE(470); + END_STATE(); + case 456: + if (lookahead == 'y') ADVANCE(471); + END_STATE(); + case 457: + if (lookahead == 'a') ADVANCE(472); + END_STATE(); + case 458: + ACCEPT_TOKEN(anon_sym_link_section); + END_STATE(); + case 459: + ACCEPT_TOKEN(anon_sym_macro_export); + END_STATE(); + case 460: + if (lookahead == 'p') ADVANCE(473); + END_STATE(); + case 461: + if (lookahead == 'v') ADVANCE(474); + END_STATE(); + case 462: + if (lookahead == 'r') ADVANCE(475); + END_STATE(); + case 463: + if (lookahead == 't') ADVANCE(476); + END_STATE(); + case 464: + if (lookahead == 'e') ADVANCE(477); + END_STATE(); + case 465: + if (lookahead == 'm') ADVANCE(478); + END_STATE(); + case 466: + ACCEPT_TOKEN(anon_sym_should_panic); + END_STATE(); + case 467: + if (lookahead == 'r') ADVANCE(479); + END_STATE(); + case 468: + ACCEPT_TOKEN(anon_sym_track_caller); + END_STATE(); + case 469: + if (lookahead == 'l') ADVANCE(480); + END_STATE(); + case 470: + if (lookahead == 'y') ADVANCE(481); + END_STATE(); + case 471: + if (lookahead == '_') ADVANCE(482); + END_STATE(); + case 472: + if (lookahead == 't') ADVANCE(483); + END_STATE(); + case 473: + if (lookahead == 'r') ADVANCE(484); + END_STATE(); + case 474: + if (lookahead == 'e') ADVANCE(485); + END_STATE(); + case 475: + ACCEPT_TOKEN(anon_sym_panic_handler); + END_STATE(); + case 476: + if (lookahead == 't') ADVANCE(486); + END_STATE(); + case 477: + if (lookahead == 'r') ADVANCE(487); + END_STATE(); + case 478: + if (lookahead == 'i') ADVANCE(488); + END_STATE(); + case 479: + if (lookahead == 'e') ADVANCE(489); + END_STATE(); + case 480: + if (lookahead == 'i') ADVANCE(490); + END_STATE(); + case 481: + if (lookahead == 's') ADVANCE(491); + END_STATE(); + case 482: + if (lookahead == 'd') ADVANCE(492); + END_STATE(); + case 483: + if (lookahead == 'o') ADVANCE(493); + END_STATE(); + case 484: + if (lookahead == 'e') ADVANCE(494); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym_non_exhaustive); + END_STATE(); + case 486: + if (lookahead == 'r') ADVANCE(495); + END_STATE(); + case 487: + if (lookahead == 'i') ADVANCE(496); + END_STATE(); + case 488: + if (lookahead == 't') ADVANCE(497); + END_STATE(); + case 489: + ACCEPT_TOKEN(anon_sym_target_feature); + END_STATE(); + case 490: + if (lookahead == 'm') ADVANCE(498); + END_STATE(); + case 491: + if (lookahead == 't') ADVANCE(499); + END_STATE(); + case 492: + if (lookahead == 'e') ADVANCE(500); + END_STATE(); + case 493: + if (lookahead == 'r') ADVANCE(501); + END_STATE(); + case 494: + if (lookahead == 'l') ADVANCE(502); + END_STATE(); + case 495: + if (lookahead == 'i') ADVANCE(503); + END_STATE(); + case 496: + if (lookahead == 'v') ADVANCE(504); + END_STATE(); + case 497: + ACCEPT_TOKEN(anon_sym_recursion_limit); + END_STATE(); + case 498: + if (lookahead == 'i') ADVANCE(505); + END_STATE(); + case 499: + if (lookahead == 'e') ADVANCE(506); + END_STATE(); + case 500: + if (lookahead == 'r') ADVANCE(507); + END_STATE(); + case 501: + ACCEPT_TOKEN(anon_sym_global_allocator); + END_STATE(); + case 502: + if (lookahead == 'u') ADVANCE(508); + END_STATE(); + case 503: + if (lookahead == 'b') ADVANCE(509); + END_STATE(); + case 504: + if (lookahead == 'e') ADVANCE(510); + END_STATE(); + case 505: + if (lookahead == 't') ADVANCE(511); + END_STATE(); + case 506: + if (lookahead == 'm') ADVANCE(512); + END_STATE(); + case 507: + if (lookahead == 'i') ADVANCE(513); + END_STATE(); + case 508: + if (lookahead == 'd') ADVANCE(514); + END_STATE(); + case 509: + if (lookahead == 'u') ADVANCE(515); + END_STATE(); + case 510: + ACCEPT_TOKEN(anon_sym_proc_macro_derive); + END_STATE(); + case 511: + ACCEPT_TOKEN(anon_sym_type_length_limit); + END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym_windows_subsystem); + END_STATE(); + case 513: + if (lookahead == 'v') ADVANCE(516); + END_STATE(); + case 514: + if (lookahead == 'e') ADVANCE(517); + END_STATE(); + case 515: + if (lookahead == 't') ADVANCE(518); + END_STATE(); + case 516: + if (lookahead == 'e') ADVANCE(519); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym_no_implicit_prelude); + END_STATE(); + case 518: + if (lookahead == 'e') ADVANCE(520); + END_STATE(); + case 519: + if (lookahead == 'd') ADVANCE(521); + END_STATE(); + case 520: + ACCEPT_TOKEN(anon_sym_proc_macro_attribute); + END_STATE(); + case 521: + ACCEPT_TOKEN(anon_sym_automatically_derived); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 66, .external_lex_state = 2}, + [2] = {.lex_state = 66, .external_lex_state = 2}, + [3] = {.lex_state = 66, .external_lex_state = 2}, + [4] = {.lex_state = 66, .external_lex_state = 2}, + [5] = {.lex_state = 66, .external_lex_state = 2}, + [6] = {.lex_state = 66, .external_lex_state = 2}, + [7] = {.lex_state = 66, .external_lex_state = 2}, + [8] = {.lex_state = 66, .external_lex_state = 2}, + [9] = {.lex_state = 66, .external_lex_state = 2}, + [10] = {.lex_state = 66, .external_lex_state = 2}, + [11] = {.lex_state = 66, .external_lex_state = 2}, + [12] = {.lex_state = 66, .external_lex_state = 2}, + [13] = {.lex_state = 66, .external_lex_state = 2}, + [14] = {.lex_state = 66, .external_lex_state = 2}, + [15] = {.lex_state = 66, .external_lex_state = 2}, + [16] = {.lex_state = 66, .external_lex_state = 2}, + [17] = {.lex_state = 66, .external_lex_state = 2}, + [18] = {.lex_state = 66, .external_lex_state = 2}, + [19] = {.lex_state = 2, .external_lex_state = 2}, + [20] = {.lex_state = 2, .external_lex_state = 2}, + [21] = {.lex_state = 2, .external_lex_state = 2}, + [22] = {.lex_state = 2, .external_lex_state = 2}, + [23] = {.lex_state = 2, .external_lex_state = 2}, + [24] = {.lex_state = 2, .external_lex_state = 2}, + [25] = {.lex_state = 2, .external_lex_state = 2}, + [26] = {.lex_state = 2, .external_lex_state = 2}, + [27] = {.lex_state = 4, .external_lex_state = 2}, + [28] = {.lex_state = 4, .external_lex_state = 2}, + [29] = {.lex_state = 4, .external_lex_state = 2}, + [30] = {.lex_state = 4, .external_lex_state = 2}, + [31] = {.lex_state = 4, .external_lex_state = 2}, + [32] = {.lex_state = 4, .external_lex_state = 2}, + [33] = {.lex_state = 4, .external_lex_state = 2}, + [34] = {.lex_state = 4, .external_lex_state = 2}, + [35] = {.lex_state = 2, .external_lex_state = 2}, + [36] = {.lex_state = 2, .external_lex_state = 2}, + [37] = {.lex_state = 2, .external_lex_state = 2}, + [38] = {.lex_state = 2, .external_lex_state = 2}, + [39] = {.lex_state = 2, .external_lex_state = 2}, + [40] = {.lex_state = 2, .external_lex_state = 2}, + [41] = {.lex_state = 2, .external_lex_state = 2}, + [42] = {.lex_state = 2, .external_lex_state = 2}, + [43] = {.lex_state = 1, .external_lex_state = 2}, + [44] = {.lex_state = 1, .external_lex_state = 2}, + [45] = {.lex_state = 1, .external_lex_state = 2}, + [46] = {.lex_state = 1, .external_lex_state = 2}, + [47] = {.lex_state = 1, .external_lex_state = 2}, + [48] = {.lex_state = 1, .external_lex_state = 2}, + [49] = {.lex_state = 1, .external_lex_state = 2}, + [50] = {.lex_state = 1, .external_lex_state = 2}, + [51] = {.lex_state = 1, .external_lex_state = 2}, + [52] = {.lex_state = 1, .external_lex_state = 2}, + [53] = {.lex_state = 1, .external_lex_state = 2}, + [54] = {.lex_state = 1, .external_lex_state = 2}, + [55] = {.lex_state = 1, .external_lex_state = 2}, + [56] = {.lex_state = 1, .external_lex_state = 2}, + [57] = {.lex_state = 1, .external_lex_state = 2}, + [58] = {.lex_state = 3, .external_lex_state = 2}, + [59] = {.lex_state = 1, .external_lex_state = 2}, + [60] = {.lex_state = 3, .external_lex_state = 2}, + [61] = {.lex_state = 3, .external_lex_state = 2}, + [62] = {.lex_state = 3, .external_lex_state = 2}, + [63] = {.lex_state = 3, .external_lex_state = 2}, + [64] = {.lex_state = 1, .external_lex_state = 2}, + [65] = {.lex_state = 3, .external_lex_state = 2}, + [66] = {.lex_state = 1, .external_lex_state = 2}, + [67] = {.lex_state = 3, .external_lex_state = 2}, + [68] = {.lex_state = 3, .external_lex_state = 2}, + [69] = {.lex_state = 1, .external_lex_state = 2}, + [70] = {.lex_state = 3, .external_lex_state = 2}, + [71] = {.lex_state = 3, .external_lex_state = 2}, + [72] = {.lex_state = 3, .external_lex_state = 2}, + [73] = {.lex_state = 3, .external_lex_state = 2}, + [74] = {.lex_state = 3, .external_lex_state = 2}, + [75] = {.lex_state = 3, .external_lex_state = 2}, + [76] = {.lex_state = 3, .external_lex_state = 2}, + [77] = {.lex_state = 3, .external_lex_state = 2}, + [78] = {.lex_state = 3, .external_lex_state = 2}, + [79] = {.lex_state = 1, .external_lex_state = 2}, + [80] = {.lex_state = 3, .external_lex_state = 2}, + [81] = {.lex_state = 3, .external_lex_state = 2}, + [82] = {.lex_state = 1, .external_lex_state = 2}, + [83] = {.lex_state = 3, .external_lex_state = 2}, + [84] = {.lex_state = 3, .external_lex_state = 2}, + [85] = {.lex_state = 3, .external_lex_state = 2}, + [86] = {.lex_state = 3, .external_lex_state = 2}, + [87] = {.lex_state = 1, .external_lex_state = 2}, + [88] = {.lex_state = 3, .external_lex_state = 2}, + [89] = {.lex_state = 3, .external_lex_state = 2}, + [90] = {.lex_state = 3, .external_lex_state = 2}, + [91] = {.lex_state = 3, .external_lex_state = 2}, + [92] = {.lex_state = 1, .external_lex_state = 2}, + [93] = {.lex_state = 3, .external_lex_state = 2}, + [94] = {.lex_state = 1, .external_lex_state = 2}, + [95] = {.lex_state = 3, .external_lex_state = 2}, + [96] = {.lex_state = 3, .external_lex_state = 2}, + [97] = {.lex_state = 3, .external_lex_state = 2}, + [98] = {.lex_state = 3, .external_lex_state = 2}, + [99] = {.lex_state = 3, .external_lex_state = 2}, + [100] = {.lex_state = 3, .external_lex_state = 2}, + [101] = {.lex_state = 3, .external_lex_state = 2}, + [102] = {.lex_state = 1, .external_lex_state = 2}, + [103] = {.lex_state = 3, .external_lex_state = 2}, + [104] = {.lex_state = 1, .external_lex_state = 2}, + [105] = {.lex_state = 3, .external_lex_state = 2}, + [106] = {.lex_state = 1, .external_lex_state = 2}, + [107] = {.lex_state = 1, .external_lex_state = 2}, + [108] = {.lex_state = 1, .external_lex_state = 2}, + [109] = {.lex_state = 1, .external_lex_state = 2}, + [110] = {.lex_state = 1, .external_lex_state = 2}, + [111] = {.lex_state = 1, .external_lex_state = 2}, + [112] = {.lex_state = 1, .external_lex_state = 2}, + [113] = {.lex_state = 1, .external_lex_state = 2}, + [114] = {.lex_state = 1, .external_lex_state = 2}, + [115] = {.lex_state = 1, .external_lex_state = 2}, + [116] = {.lex_state = 1, .external_lex_state = 2}, + [117] = {.lex_state = 1, .external_lex_state = 2}, + [118] = {.lex_state = 1, .external_lex_state = 2}, + [119] = {.lex_state = 1, .external_lex_state = 2}, + [120] = {.lex_state = 1, .external_lex_state = 2}, + [121] = {.lex_state = 1, .external_lex_state = 2}, + [122] = {.lex_state = 1, .external_lex_state = 2}, + [123] = {.lex_state = 1, .external_lex_state = 2}, + [124] = {.lex_state = 1, .external_lex_state = 2}, + [125] = {.lex_state = 1, .external_lex_state = 2}, + [126] = {.lex_state = 1, .external_lex_state = 2}, + [127] = {.lex_state = 1, .external_lex_state = 2}, + [128] = {.lex_state = 3, .external_lex_state = 2}, + [129] = {.lex_state = 3, .external_lex_state = 2}, + [130] = {.lex_state = 3, .external_lex_state = 2}, + [131] = {.lex_state = 3, .external_lex_state = 2}, + [132] = {.lex_state = 3, .external_lex_state = 2}, + [133] = {.lex_state = 3, .external_lex_state = 2}, + [134] = {.lex_state = 3, .external_lex_state = 2}, + [135] = {.lex_state = 10, .external_lex_state = 2}, + [136] = {.lex_state = 10, .external_lex_state = 2}, + [137] = {.lex_state = 10, .external_lex_state = 2}, + [138] = {.lex_state = 10, .external_lex_state = 2}, + [139] = {.lex_state = 10, .external_lex_state = 2}, + [140] = {.lex_state = 10, .external_lex_state = 2}, + [141] = {.lex_state = 10, .external_lex_state = 2}, + [142] = {.lex_state = 10, .external_lex_state = 2}, + [143] = {.lex_state = 10, .external_lex_state = 2}, + [144] = {.lex_state = 10, .external_lex_state = 2}, + [145] = {.lex_state = 10, .external_lex_state = 2}, + [146] = {.lex_state = 10, .external_lex_state = 2}, + [147] = {.lex_state = 10, .external_lex_state = 2}, + [148] = {.lex_state = 10, .external_lex_state = 2}, + [149] = {.lex_state = 10, .external_lex_state = 2}, + [150] = {.lex_state = 10, .external_lex_state = 2}, + [151] = {.lex_state = 10, .external_lex_state = 2}, + [152] = {.lex_state = 10, .external_lex_state = 2}, + [153] = {.lex_state = 10, .external_lex_state = 2}, + [154] = {.lex_state = 10, .external_lex_state = 2}, + [155] = {.lex_state = 10, .external_lex_state = 2}, + [156] = {.lex_state = 10, .external_lex_state = 2}, + [157] = {.lex_state = 10, .external_lex_state = 2}, + [158] = {.lex_state = 10, .external_lex_state = 2}, + [159] = {.lex_state = 10, .external_lex_state = 2}, + [160] = {.lex_state = 65, .external_lex_state = 2}, + [161] = {.lex_state = 65, .external_lex_state = 2}, + [162] = {.lex_state = 10, .external_lex_state = 2}, + [163] = {.lex_state = 10, .external_lex_state = 2}, + [164] = {.lex_state = 10, .external_lex_state = 2}, + [165] = {.lex_state = 10, .external_lex_state = 2}, + [166] = {.lex_state = 10, .external_lex_state = 2}, + [167] = {.lex_state = 12, .external_lex_state = 2}, + [168] = {.lex_state = 10, .external_lex_state = 2}, + [169] = {.lex_state = 10, .external_lex_state = 2}, + [170] = {.lex_state = 10, .external_lex_state = 2}, + [171] = {.lex_state = 10, .external_lex_state = 2}, + [172] = {.lex_state = 10, .external_lex_state = 2}, + [173] = {.lex_state = 10, .external_lex_state = 2}, + [174] = {.lex_state = 10, .external_lex_state = 2}, + [175] = {.lex_state = 10, .external_lex_state = 2}, + [176] = {.lex_state = 10, .external_lex_state = 2}, + [177] = {.lex_state = 10, .external_lex_state = 2}, + [178] = {.lex_state = 12, .external_lex_state = 2}, + [179] = {.lex_state = 12, .external_lex_state = 2}, + [180] = {.lex_state = 12, .external_lex_state = 2}, + [181] = {.lex_state = 10, .external_lex_state = 2}, + [182] = {.lex_state = 10, .external_lex_state = 2}, + [183] = {.lex_state = 10, .external_lex_state = 2}, + [184] = {.lex_state = 65, .external_lex_state = 2}, + [185] = {.lex_state = 10, .external_lex_state = 2}, + [186] = {.lex_state = 10, .external_lex_state = 2}, + [187] = {.lex_state = 10, .external_lex_state = 2}, + [188] = {.lex_state = 65, .external_lex_state = 2}, + [189] = {.lex_state = 10, .external_lex_state = 2}, + [190] = {.lex_state = 10, .external_lex_state = 2}, + [191] = {.lex_state = 12, .external_lex_state = 2}, + [192] = {.lex_state = 65, .external_lex_state = 2}, + [193] = {.lex_state = 10, .external_lex_state = 2}, + [194] = {.lex_state = 10, .external_lex_state = 2}, + [195] = {.lex_state = 12, .external_lex_state = 2}, + [196] = {.lex_state = 10, .external_lex_state = 2}, + [197] = {.lex_state = 10, .external_lex_state = 2}, + [198] = {.lex_state = 10, .external_lex_state = 2}, + [199] = {.lex_state = 10, .external_lex_state = 2}, + [200] = {.lex_state = 10, .external_lex_state = 2}, + [201] = {.lex_state = 65, .external_lex_state = 2}, + [202] = {.lex_state = 10, .external_lex_state = 2}, + [203] = {.lex_state = 65, .external_lex_state = 2}, + [204] = {.lex_state = 10, .external_lex_state = 2}, + [205] = {.lex_state = 65, .external_lex_state = 2}, + [206] = {.lex_state = 10, .external_lex_state = 2}, + [207] = {.lex_state = 10, .external_lex_state = 2}, + [208] = {.lex_state = 10, .external_lex_state = 2}, + [209] = {.lex_state = 65, .external_lex_state = 2}, + [210] = {.lex_state = 65, .external_lex_state = 2}, + [211] = {.lex_state = 10, .external_lex_state = 2}, + [212] = {.lex_state = 65, .external_lex_state = 2}, + [213] = {.lex_state = 65, .external_lex_state = 2}, + [214] = {.lex_state = 10, .external_lex_state = 2}, + [215] = {.lex_state = 10, .external_lex_state = 2}, + [216] = {.lex_state = 10, .external_lex_state = 2}, + [217] = {.lex_state = 10, .external_lex_state = 2}, + [218] = {.lex_state = 10, .external_lex_state = 2}, + [219] = {.lex_state = 65, .external_lex_state = 2}, + [220] = {.lex_state = 10, .external_lex_state = 2}, + [221] = {.lex_state = 10, .external_lex_state = 2}, + [222] = {.lex_state = 10, .external_lex_state = 2}, + [223] = {.lex_state = 10, .external_lex_state = 2}, + [224] = {.lex_state = 10, .external_lex_state = 2}, + [225] = {.lex_state = 10, .external_lex_state = 2}, + [226] = {.lex_state = 10, .external_lex_state = 2}, + [227] = {.lex_state = 10, .external_lex_state = 2}, + [228] = {.lex_state = 10, .external_lex_state = 2}, + [229] = {.lex_state = 10, .external_lex_state = 2}, + [230] = {.lex_state = 10, .external_lex_state = 2}, + [231] = {.lex_state = 65, .external_lex_state = 2}, + [232] = {.lex_state = 10, .external_lex_state = 2}, + [233] = {.lex_state = 10, .external_lex_state = 2}, + [234] = {.lex_state = 10, .external_lex_state = 2}, + [235] = {.lex_state = 10, .external_lex_state = 2}, + [236] = {.lex_state = 10, .external_lex_state = 2}, + [237] = {.lex_state = 10, .external_lex_state = 2}, + [238] = {.lex_state = 10, .external_lex_state = 2}, + [239] = {.lex_state = 10, .external_lex_state = 2}, + [240] = {.lex_state = 10, .external_lex_state = 2}, + [241] = {.lex_state = 65, .external_lex_state = 2}, + [242] = {.lex_state = 10, .external_lex_state = 2}, + [243] = {.lex_state = 10, .external_lex_state = 2}, + [244] = {.lex_state = 10, .external_lex_state = 2}, + [245] = {.lex_state = 10, .external_lex_state = 2}, + [246] = {.lex_state = 10, .external_lex_state = 2}, + [247] = {.lex_state = 10, .external_lex_state = 2}, + [248] = {.lex_state = 10, .external_lex_state = 2}, + [249] = {.lex_state = 10, .external_lex_state = 2}, + [250] = {.lex_state = 10, .external_lex_state = 2}, + [251] = {.lex_state = 10, .external_lex_state = 2}, + [252] = {.lex_state = 10, .external_lex_state = 2}, + [253] = {.lex_state = 10, .external_lex_state = 2}, + [254] = {.lex_state = 10, .external_lex_state = 2}, + [255] = {.lex_state = 10, .external_lex_state = 2}, + [256] = {.lex_state = 10, .external_lex_state = 2}, + [257] = {.lex_state = 10, .external_lex_state = 2}, + [258] = {.lex_state = 10, .external_lex_state = 2}, + [259] = {.lex_state = 10, .external_lex_state = 2}, + [260] = {.lex_state = 10, .external_lex_state = 2}, + [261] = {.lex_state = 65, .external_lex_state = 2}, + [262] = {.lex_state = 10, .external_lex_state = 2}, + [263] = {.lex_state = 65, .external_lex_state = 2}, + [264] = {.lex_state = 10, .external_lex_state = 2}, + [265] = {.lex_state = 10, .external_lex_state = 2}, + [266] = {.lex_state = 10, .external_lex_state = 2}, + [267] = {.lex_state = 10, .external_lex_state = 2}, + [268] = {.lex_state = 10, .external_lex_state = 2}, + [269] = {.lex_state = 10, .external_lex_state = 2}, + [270] = {.lex_state = 10, .external_lex_state = 2}, + [271] = {.lex_state = 10, .external_lex_state = 2}, + [272] = {.lex_state = 10, .external_lex_state = 2}, + [273] = {.lex_state = 10, .external_lex_state = 2}, + [274] = {.lex_state = 10, .external_lex_state = 2}, + [275] = {.lex_state = 65, .external_lex_state = 2}, + [276] = {.lex_state = 10, .external_lex_state = 2}, + [277] = {.lex_state = 10, .external_lex_state = 2}, + [278] = {.lex_state = 10, .external_lex_state = 2}, + [279] = {.lex_state = 65, .external_lex_state = 2}, + [280] = {.lex_state = 10, .external_lex_state = 2}, + [281] = {.lex_state = 10, .external_lex_state = 2}, + [282] = {.lex_state = 10, .external_lex_state = 2}, + [283] = {.lex_state = 65, .external_lex_state = 2}, + [284] = {.lex_state = 10, .external_lex_state = 2}, + [285] = {.lex_state = 10, .external_lex_state = 2}, + [286] = {.lex_state = 10, .external_lex_state = 2}, + [287] = {.lex_state = 10, .external_lex_state = 2}, + [288] = {.lex_state = 10, .external_lex_state = 2}, + [289] = {.lex_state = 65, .external_lex_state = 2}, + [290] = {.lex_state = 10, .external_lex_state = 2}, + [291] = {.lex_state = 10, .external_lex_state = 2}, + [292] = {.lex_state = 65, .external_lex_state = 2}, + [293] = {.lex_state = 10, .external_lex_state = 2}, + [294] = {.lex_state = 65, .external_lex_state = 2}, + [295] = {.lex_state = 65, .external_lex_state = 2}, + [296] = {.lex_state = 65, .external_lex_state = 2}, + [297] = {.lex_state = 10, .external_lex_state = 2}, + [298] = {.lex_state = 65, .external_lex_state = 2}, + [299] = {.lex_state = 10, .external_lex_state = 2}, + [300] = {.lex_state = 10, .external_lex_state = 2}, + [301] = {.lex_state = 10, .external_lex_state = 2}, + [302] = {.lex_state = 10, .external_lex_state = 2}, + [303] = {.lex_state = 10, .external_lex_state = 2}, + [304] = {.lex_state = 10, .external_lex_state = 2}, + [305] = {.lex_state = 10, .external_lex_state = 2}, + [306] = {.lex_state = 65, .external_lex_state = 2}, + [307] = {.lex_state = 10, .external_lex_state = 2}, + [308] = {.lex_state = 65, .external_lex_state = 2}, + [309] = {.lex_state = 10, .external_lex_state = 2}, + [310] = {.lex_state = 10, .external_lex_state = 2}, + [311] = {.lex_state = 65, .external_lex_state = 2}, + [312] = {.lex_state = 10, .external_lex_state = 2}, + [313] = {.lex_state = 10, .external_lex_state = 2}, + [314] = {.lex_state = 10, .external_lex_state = 2}, + [315] = {.lex_state = 10, .external_lex_state = 2}, + [316] = {.lex_state = 10, .external_lex_state = 2}, + [317] = {.lex_state = 10, .external_lex_state = 2}, + [318] = {.lex_state = 10, .external_lex_state = 2}, + [319] = {.lex_state = 10, .external_lex_state = 2}, + [320] = {.lex_state = 10, .external_lex_state = 2}, + [321] = {.lex_state = 10, .external_lex_state = 2}, + [322] = {.lex_state = 10, .external_lex_state = 2}, + [323] = {.lex_state = 10, .external_lex_state = 2}, + [324] = {.lex_state = 10, .external_lex_state = 2}, + [325] = {.lex_state = 65, .external_lex_state = 2}, + [326] = {.lex_state = 10, .external_lex_state = 2}, + [327] = {.lex_state = 10, .external_lex_state = 2}, + [328] = {.lex_state = 10, .external_lex_state = 2}, + [329] = {.lex_state = 10, .external_lex_state = 2}, + [330] = {.lex_state = 10, .external_lex_state = 2}, + [331] = {.lex_state = 10, .external_lex_state = 2}, + [332] = {.lex_state = 10, .external_lex_state = 2}, + [333] = {.lex_state = 10, .external_lex_state = 2}, + [334] = {.lex_state = 10, .external_lex_state = 2}, + [335] = {.lex_state = 10, .external_lex_state = 2}, + [336] = {.lex_state = 10, .external_lex_state = 2}, + [337] = {.lex_state = 65, .external_lex_state = 2}, + [338] = {.lex_state = 11, .external_lex_state = 2}, + [339] = {.lex_state = 11, .external_lex_state = 2}, + [340] = {.lex_state = 11, .external_lex_state = 2}, + [341] = {.lex_state = 11, .external_lex_state = 2}, + [342] = {.lex_state = 11, .external_lex_state = 2}, + [343] = {.lex_state = 11, .external_lex_state = 2}, + [344] = {.lex_state = 11, .external_lex_state = 2}, + [345] = {.lex_state = 11, .external_lex_state = 2}, + [346] = {.lex_state = 11, .external_lex_state = 2}, + [347] = {.lex_state = 11, .external_lex_state = 2}, + [348] = {.lex_state = 11, .external_lex_state = 2}, + [349] = {.lex_state = 11, .external_lex_state = 2}, + [350] = {.lex_state = 11, .external_lex_state = 2}, + [351] = {.lex_state = 11, .external_lex_state = 2}, + [352] = {.lex_state = 11, .external_lex_state = 2}, + [353] = {.lex_state = 11, .external_lex_state = 2}, + [354] = {.lex_state = 11, .external_lex_state = 2}, + [355] = {.lex_state = 11, .external_lex_state = 2}, + [356] = {.lex_state = 11, .external_lex_state = 2}, + [357] = {.lex_state = 11, .external_lex_state = 2}, + [358] = {.lex_state = 10, .external_lex_state = 2}, + [359] = {.lex_state = 10, .external_lex_state = 2}, + [360] = {.lex_state = 10, .external_lex_state = 2}, + [361] = {.lex_state = 10, .external_lex_state = 2}, + [362] = {.lex_state = 10, .external_lex_state = 2}, + [363] = {.lex_state = 10, .external_lex_state = 2}, + [364] = {.lex_state = 10, .external_lex_state = 2}, + [365] = {.lex_state = 10, .external_lex_state = 2}, + [366] = {.lex_state = 10, .external_lex_state = 2}, + [367] = {.lex_state = 10, .external_lex_state = 2}, + [368] = {.lex_state = 2, .external_lex_state = 2}, + [369] = {.lex_state = 10, .external_lex_state = 2}, + [370] = {.lex_state = 10, .external_lex_state = 2}, + [371] = {.lex_state = 10, .external_lex_state = 2}, + [372] = {.lex_state = 10, .external_lex_state = 2}, + [373] = {.lex_state = 4, .external_lex_state = 2}, + [374] = {.lex_state = 12, .external_lex_state = 2}, + [375] = {.lex_state = 9, .external_lex_state = 3}, + [376] = {.lex_state = 9, .external_lex_state = 3}, + [377] = {.lex_state = 9, .external_lex_state = 3}, + [378] = {.lex_state = 2, .external_lex_state = 2}, + [379] = {.lex_state = 2, .external_lex_state = 2}, + [380] = {.lex_state = 9, .external_lex_state = 3}, + [381] = {.lex_state = 9, .external_lex_state = 3}, + [382] = {.lex_state = 9, .external_lex_state = 3}, + [383] = {.lex_state = 9, .external_lex_state = 3}, + [384] = {.lex_state = 2, .external_lex_state = 2}, + [385] = {.lex_state = 2, .external_lex_state = 2}, + [386] = {.lex_state = 2, .external_lex_state = 2}, + [387] = {.lex_state = 10, .external_lex_state = 2}, + [388] = {.lex_state = 10, .external_lex_state = 2}, + [389] = {.lex_state = 2, .external_lex_state = 2}, + [390] = {.lex_state = 10, .external_lex_state = 2}, + [391] = {.lex_state = 2, .external_lex_state = 2}, + [392] = {.lex_state = 2, .external_lex_state = 2}, + [393] = {.lex_state = 2, .external_lex_state = 2}, + [394] = {.lex_state = 2, .external_lex_state = 2}, + [395] = {.lex_state = 2, .external_lex_state = 2}, + [396] = {.lex_state = 2, .external_lex_state = 2}, + [397] = {.lex_state = 2, .external_lex_state = 2}, + [398] = {.lex_state = 2, .external_lex_state = 2}, + [399] = {.lex_state = 10, .external_lex_state = 2}, + [400] = {.lex_state = 2, .external_lex_state = 2}, + [401] = {.lex_state = 2, .external_lex_state = 2}, + [402] = {.lex_state = 2, .external_lex_state = 2}, + [403] = {.lex_state = 10, .external_lex_state = 2}, + [404] = {.lex_state = 2, .external_lex_state = 2}, + [405] = {.lex_state = 2, .external_lex_state = 2}, + [406] = {.lex_state = 2, .external_lex_state = 2}, + [407] = {.lex_state = 2, .external_lex_state = 2}, + [408] = {.lex_state = 10, .external_lex_state = 2}, + [409] = {.lex_state = 2, .external_lex_state = 2}, + [410] = {.lex_state = 2, .external_lex_state = 2}, + [411] = {.lex_state = 2, .external_lex_state = 2}, + [412] = {.lex_state = 2, .external_lex_state = 2}, + [413] = {.lex_state = 2, .external_lex_state = 2}, + [414] = {.lex_state = 10, .external_lex_state = 2}, + [415] = {.lex_state = 10, .external_lex_state = 2}, + [416] = {.lex_state = 10, .external_lex_state = 2}, + [417] = {.lex_state = 10, .external_lex_state = 2}, + [418] = {.lex_state = 21, .external_lex_state = 3}, + [419] = {.lex_state = 21, .external_lex_state = 3}, + [420] = {.lex_state = 21, .external_lex_state = 3}, + [421] = {.lex_state = 21, .external_lex_state = 3}, + [422] = {.lex_state = 21, .external_lex_state = 3}, + [423] = {.lex_state = 66, .external_lex_state = 2}, + [424] = {.lex_state = 66, .external_lex_state = 2}, + [425] = {.lex_state = 66, .external_lex_state = 2}, + [426] = {.lex_state = 66, .external_lex_state = 2}, + [427] = {.lex_state = 66, .external_lex_state = 2}, + [428] = {.lex_state = 66, .external_lex_state = 2}, + [429] = {.lex_state = 66, .external_lex_state = 2}, + [430] = {.lex_state = 66, .external_lex_state = 2}, + [431] = {.lex_state = 66, .external_lex_state = 2}, + [432] = {.lex_state = 66, .external_lex_state = 2}, + [433] = {.lex_state = 66, .external_lex_state = 2}, + [434] = {.lex_state = 66, .external_lex_state = 2}, + [435] = {.lex_state = 66, .external_lex_state = 2}, + [436] = {.lex_state = 66, .external_lex_state = 2}, + [437] = {.lex_state = 66, .external_lex_state = 2}, + [438] = {.lex_state = 66, .external_lex_state = 2}, + [439] = {.lex_state = 66, .external_lex_state = 2}, + [440] = {.lex_state = 66, .external_lex_state = 2}, + [441] = {.lex_state = 66, .external_lex_state = 2}, + [442] = {.lex_state = 66, .external_lex_state = 2}, + [443] = {.lex_state = 66, .external_lex_state = 2}, + [444] = {.lex_state = 66, .external_lex_state = 2}, + [445] = {.lex_state = 66, .external_lex_state = 2}, + [446] = {.lex_state = 66, .external_lex_state = 2}, + [447] = {.lex_state = 66, .external_lex_state = 2}, + [448] = {.lex_state = 66, .external_lex_state = 2}, + [449] = {.lex_state = 66, .external_lex_state = 2}, + [450] = {.lex_state = 66, .external_lex_state = 2}, + [451] = {.lex_state = 66, .external_lex_state = 2}, + [452] = {.lex_state = 10, .external_lex_state = 2}, + [453] = {.lex_state = 66, .external_lex_state = 2}, + [454] = {.lex_state = 66, .external_lex_state = 2}, + [455] = {.lex_state = 66, .external_lex_state = 2}, + [456] = {.lex_state = 66, .external_lex_state = 2}, + [457] = {.lex_state = 66, .external_lex_state = 2}, + [458] = {.lex_state = 66, .external_lex_state = 2}, + [459] = {.lex_state = 66, .external_lex_state = 2}, + [460] = {.lex_state = 66, .external_lex_state = 2}, + [461] = {.lex_state = 66, .external_lex_state = 2}, + [462] = {.lex_state = 66, .external_lex_state = 2}, + [463] = {.lex_state = 66, .external_lex_state = 2}, + [464] = {.lex_state = 66, .external_lex_state = 2}, + [465] = {.lex_state = 66, .external_lex_state = 2}, + [466] = {.lex_state = 66, .external_lex_state = 2}, + [467] = {.lex_state = 66, .external_lex_state = 2}, + [468] = {.lex_state = 66, .external_lex_state = 2}, + [469] = {.lex_state = 66, .external_lex_state = 2}, + [470] = {.lex_state = 66, .external_lex_state = 2}, + [471] = {.lex_state = 66, .external_lex_state = 2}, + [472] = {.lex_state = 66, .external_lex_state = 2}, + [473] = {.lex_state = 66, .external_lex_state = 2}, + [474] = {.lex_state = 66, .external_lex_state = 2}, + [475] = {.lex_state = 66, .external_lex_state = 2}, + [476] = {.lex_state = 66, .external_lex_state = 2}, + [477] = {.lex_state = 66, .external_lex_state = 2}, + [478] = {.lex_state = 66, .external_lex_state = 2}, + [479] = {.lex_state = 66, .external_lex_state = 2}, + [480] = {.lex_state = 66, .external_lex_state = 2}, + [481] = {.lex_state = 66, .external_lex_state = 2}, + [482] = {.lex_state = 66, .external_lex_state = 2}, + [483] = {.lex_state = 66, .external_lex_state = 2}, + [484] = {.lex_state = 66, .external_lex_state = 2}, + [485] = {.lex_state = 66, .external_lex_state = 2}, + [486] = {.lex_state = 66, .external_lex_state = 2}, + [487] = {.lex_state = 66, .external_lex_state = 2}, + [488] = {.lex_state = 66, .external_lex_state = 2}, + [489] = {.lex_state = 66, .external_lex_state = 2}, + [490] = {.lex_state = 66, .external_lex_state = 2}, + [491] = {.lex_state = 66, .external_lex_state = 2}, + [492] = {.lex_state = 66, .external_lex_state = 2}, + [493] = {.lex_state = 66, .external_lex_state = 2}, + [494] = {.lex_state = 66, .external_lex_state = 2}, + [495] = {.lex_state = 66, .external_lex_state = 2}, + [496] = {.lex_state = 66, .external_lex_state = 2}, + [497] = {.lex_state = 66, .external_lex_state = 2}, + [498] = {.lex_state = 66, .external_lex_state = 2}, + [499] = {.lex_state = 66, .external_lex_state = 2}, + [500] = {.lex_state = 66, .external_lex_state = 2}, + [501] = {.lex_state = 66, .external_lex_state = 2}, + [502] = {.lex_state = 66, .external_lex_state = 2}, + [503] = {.lex_state = 66, .external_lex_state = 2}, + [504] = {.lex_state = 66, .external_lex_state = 2}, + [505] = {.lex_state = 66, .external_lex_state = 2}, + [506] = {.lex_state = 66, .external_lex_state = 2}, + [507] = {.lex_state = 66, .external_lex_state = 2}, + [508] = {.lex_state = 66, .external_lex_state = 2}, + [509] = {.lex_state = 66, .external_lex_state = 2}, + [510] = {.lex_state = 66, .external_lex_state = 2}, + [511] = {.lex_state = 66, .external_lex_state = 2}, + [512] = {.lex_state = 66, .external_lex_state = 2}, + [513] = {.lex_state = 66, .external_lex_state = 2}, + [514] = {.lex_state = 66, .external_lex_state = 2}, + [515] = {.lex_state = 66, .external_lex_state = 2}, + [516] = {.lex_state = 66, .external_lex_state = 2}, + [517] = {.lex_state = 66, .external_lex_state = 2}, + [518] = {.lex_state = 66, .external_lex_state = 2}, + [519] = {.lex_state = 66, .external_lex_state = 2}, + [520] = {.lex_state = 66, .external_lex_state = 2}, + [521] = {.lex_state = 66, .external_lex_state = 2}, + [522] = {.lex_state = 66, .external_lex_state = 2}, + [523] = {.lex_state = 66, .external_lex_state = 2}, + [524] = {.lex_state = 66, .external_lex_state = 2}, + [525] = {.lex_state = 66, .external_lex_state = 2}, + [526] = {.lex_state = 66, .external_lex_state = 2}, + [527] = {.lex_state = 66, .external_lex_state = 2}, + [528] = {.lex_state = 66, .external_lex_state = 2}, + [529] = {.lex_state = 66, .external_lex_state = 2}, + [530] = {.lex_state = 66, .external_lex_state = 2}, + [531] = {.lex_state = 66, .external_lex_state = 2}, + [532] = {.lex_state = 66, .external_lex_state = 2}, + [533] = {.lex_state = 66, .external_lex_state = 2}, + [534] = {.lex_state = 66, .external_lex_state = 2}, + [535] = {.lex_state = 66, .external_lex_state = 2}, + [536] = {.lex_state = 66, .external_lex_state = 2}, + [537] = {.lex_state = 66, .external_lex_state = 2}, + [538] = {.lex_state = 66, .external_lex_state = 2}, + [539] = {.lex_state = 66, .external_lex_state = 2}, + [540] = {.lex_state = 66, .external_lex_state = 2}, + [541] = {.lex_state = 66, .external_lex_state = 2}, + [542] = {.lex_state = 66, .external_lex_state = 2}, + [543] = {.lex_state = 66, .external_lex_state = 2}, + [544] = {.lex_state = 66, .external_lex_state = 2}, + [545] = {.lex_state = 66, .external_lex_state = 2}, + [546] = {.lex_state = 66, .external_lex_state = 2}, + [547] = {.lex_state = 66, .external_lex_state = 2}, + [548] = {.lex_state = 66, .external_lex_state = 2}, + [549] = {.lex_state = 66, .external_lex_state = 2}, + [550] = {.lex_state = 66, .external_lex_state = 2}, + [551] = {.lex_state = 66, .external_lex_state = 2}, + [552] = {.lex_state = 66, .external_lex_state = 2}, + [553] = {.lex_state = 66, .external_lex_state = 2}, + [554] = {.lex_state = 66, .external_lex_state = 2}, + [555] = {.lex_state = 66, .external_lex_state = 2}, + [556] = {.lex_state = 66, .external_lex_state = 2}, + [557] = {.lex_state = 66, .external_lex_state = 2}, + [558] = {.lex_state = 66, .external_lex_state = 2}, + [559] = {.lex_state = 66, .external_lex_state = 2}, + [560] = {.lex_state = 66, .external_lex_state = 2}, + [561] = {.lex_state = 66, .external_lex_state = 2}, + [562] = {.lex_state = 66, .external_lex_state = 2}, + [563] = {.lex_state = 66, .external_lex_state = 2}, + [564] = {.lex_state = 66, .external_lex_state = 2}, + [565] = {.lex_state = 10, .external_lex_state = 2}, + [566] = {.lex_state = 66, .external_lex_state = 2}, + [567] = {.lex_state = 66, .external_lex_state = 2}, + [568] = {.lex_state = 66, .external_lex_state = 2}, + [569] = {.lex_state = 66, .external_lex_state = 2}, + [570] = {.lex_state = 66, .external_lex_state = 2}, + [571] = {.lex_state = 66, .external_lex_state = 2}, + [572] = {.lex_state = 66, .external_lex_state = 2}, + [573] = {.lex_state = 66, .external_lex_state = 2}, + [574] = {.lex_state = 66, .external_lex_state = 2}, + [575] = {.lex_state = 66, .external_lex_state = 2}, + [576] = {.lex_state = 66, .external_lex_state = 2}, + [577] = {.lex_state = 66, .external_lex_state = 2}, + [578] = {.lex_state = 66, .external_lex_state = 2}, + [579] = {.lex_state = 66, .external_lex_state = 2}, + [580] = {.lex_state = 66, .external_lex_state = 2}, + [581] = {.lex_state = 66, .external_lex_state = 2}, + [582] = {.lex_state = 66, .external_lex_state = 2}, + [583] = {.lex_state = 66, .external_lex_state = 2}, + [584] = {.lex_state = 66, .external_lex_state = 2}, + [585] = {.lex_state = 66, .external_lex_state = 2}, + [586] = {.lex_state = 66, .external_lex_state = 2}, + [587] = {.lex_state = 66, .external_lex_state = 2}, + [588] = {.lex_state = 66, .external_lex_state = 2}, + [589] = {.lex_state = 66, .external_lex_state = 2}, + [590] = {.lex_state = 66, .external_lex_state = 2}, + [591] = {.lex_state = 66, .external_lex_state = 2}, + [592] = {.lex_state = 66, .external_lex_state = 2}, + [593] = {.lex_state = 66, .external_lex_state = 2}, + [594] = {.lex_state = 66, .external_lex_state = 2}, + [595] = {.lex_state = 66, .external_lex_state = 2}, + [596] = {.lex_state = 66, .external_lex_state = 2}, + [597] = {.lex_state = 66, .external_lex_state = 2}, + [598] = {.lex_state = 66, .external_lex_state = 2}, + [599] = {.lex_state = 66, .external_lex_state = 2}, + [600] = {.lex_state = 66, .external_lex_state = 2}, + [601] = {.lex_state = 66, .external_lex_state = 2}, + [602] = {.lex_state = 66, .external_lex_state = 2}, + [603] = {.lex_state = 66, .external_lex_state = 2}, + [604] = {.lex_state = 66, .external_lex_state = 2}, + [605] = {.lex_state = 66, .external_lex_state = 2}, + [606] = {.lex_state = 66, .external_lex_state = 2}, + [607] = {.lex_state = 66, .external_lex_state = 2}, + [608] = {.lex_state = 66, .external_lex_state = 2}, + [609] = {.lex_state = 66, .external_lex_state = 2}, + [610] = {.lex_state = 66, .external_lex_state = 2}, + [611] = {.lex_state = 66, .external_lex_state = 2}, + [612] = {.lex_state = 66, .external_lex_state = 2}, + [613] = {.lex_state = 66, .external_lex_state = 2}, + [614] = {.lex_state = 66, .external_lex_state = 2}, + [615] = {.lex_state = 66, .external_lex_state = 2}, + [616] = {.lex_state = 66, .external_lex_state = 2}, + [617] = {.lex_state = 66, .external_lex_state = 2}, + [618] = {.lex_state = 66, .external_lex_state = 2}, + [619] = {.lex_state = 66, .external_lex_state = 2}, + [620] = {.lex_state = 66, .external_lex_state = 2}, + [621] = {.lex_state = 66, .external_lex_state = 2}, + [622] = {.lex_state = 66, .external_lex_state = 2}, + [623] = {.lex_state = 66, .external_lex_state = 2}, + [624] = {.lex_state = 66, .external_lex_state = 2}, + [625] = {.lex_state = 66, .external_lex_state = 2}, + [626] = {.lex_state = 66, .external_lex_state = 2}, + [627] = {.lex_state = 66, .external_lex_state = 2}, + [628] = {.lex_state = 66, .external_lex_state = 2}, + [629] = {.lex_state = 66, .external_lex_state = 2}, + [630] = {.lex_state = 10, .external_lex_state = 2}, + [631] = {.lex_state = 66, .external_lex_state = 2}, + [632] = {.lex_state = 66, .external_lex_state = 2}, + [633] = {.lex_state = 66, .external_lex_state = 2}, + [634] = {.lex_state = 66, .external_lex_state = 2}, + [635] = {.lex_state = 66, .external_lex_state = 2}, + [636] = {.lex_state = 66, .external_lex_state = 2}, + [637] = {.lex_state = 66, .external_lex_state = 2}, + [638] = {.lex_state = 66, .external_lex_state = 2}, + [639] = {.lex_state = 66, .external_lex_state = 2}, + [640] = {.lex_state = 66, .external_lex_state = 2}, + [641] = {.lex_state = 66, .external_lex_state = 2}, + [642] = {.lex_state = 66, .external_lex_state = 2}, + [643] = {.lex_state = 66, .external_lex_state = 2}, + [644] = {.lex_state = 66, .external_lex_state = 2}, + [645] = {.lex_state = 66, .external_lex_state = 2}, + [646] = {.lex_state = 66, .external_lex_state = 2}, + [647] = {.lex_state = 66, .external_lex_state = 2}, + [648] = {.lex_state = 66, .external_lex_state = 2}, + [649] = {.lex_state = 66, .external_lex_state = 2}, + [650] = {.lex_state = 66, .external_lex_state = 2}, + [651] = {.lex_state = 10, .external_lex_state = 2}, + [652] = {.lex_state = 10, .external_lex_state = 2}, + [653] = {.lex_state = 10, .external_lex_state = 2}, + [654] = {.lex_state = 10, .external_lex_state = 2}, + [655] = {.lex_state = 10, .external_lex_state = 2}, + [656] = {.lex_state = 10, .external_lex_state = 2}, + [657] = {.lex_state = 10, .external_lex_state = 2}, + [658] = {.lex_state = 9, .external_lex_state = 3}, + [659] = {.lex_state = 10, .external_lex_state = 2}, + [660] = {.lex_state = 9, .external_lex_state = 3}, + [661] = {.lex_state = 9, .external_lex_state = 3}, + [662] = {.lex_state = 9, .external_lex_state = 3}, + [663] = {.lex_state = 9, .external_lex_state = 3}, + [664] = {.lex_state = 9, .external_lex_state = 3}, + [665] = {.lex_state = 9, .external_lex_state = 3}, + [666] = {.lex_state = 9, .external_lex_state = 3}, + [667] = {.lex_state = 9, .external_lex_state = 3}, + [668] = {.lex_state = 9, .external_lex_state = 3}, + [669] = {.lex_state = 9, .external_lex_state = 3}, + [670] = {.lex_state = 10, .external_lex_state = 2}, + [671] = {.lex_state = 10, .external_lex_state = 2}, + [672] = {.lex_state = 10, .external_lex_state = 2}, + [673] = {.lex_state = 10, .external_lex_state = 2}, + [674] = {.lex_state = 10, .external_lex_state = 2}, + [675] = {.lex_state = 10, .external_lex_state = 2}, + [676] = {.lex_state = 10, .external_lex_state = 2}, + [677] = {.lex_state = 10, .external_lex_state = 2}, + [678] = {.lex_state = 10, .external_lex_state = 2}, + [679] = {.lex_state = 10, .external_lex_state = 2}, + [680] = {.lex_state = 10, .external_lex_state = 2}, + [681] = {.lex_state = 10, .external_lex_state = 2}, + [682] = {.lex_state = 9, .external_lex_state = 3}, + [683] = {.lex_state = 10, .external_lex_state = 2}, + [684] = {.lex_state = 10, .external_lex_state = 2}, + [685] = {.lex_state = 10, .external_lex_state = 2}, + [686] = {.lex_state = 10, .external_lex_state = 2}, + [687] = {.lex_state = 10, .external_lex_state = 2}, + [688] = {.lex_state = 10, .external_lex_state = 2}, + [689] = {.lex_state = 10, .external_lex_state = 2}, + [690] = {.lex_state = 9, .external_lex_state = 3}, + [691] = {.lex_state = 9, .external_lex_state = 3}, + [692] = {.lex_state = 9, .external_lex_state = 3}, + [693] = {.lex_state = 10, .external_lex_state = 2}, + [694] = {.lex_state = 10, .external_lex_state = 2}, + [695] = {.lex_state = 10, .external_lex_state = 2}, + [696] = {.lex_state = 10, .external_lex_state = 2}, + [697] = {.lex_state = 10, .external_lex_state = 2}, + [698] = {.lex_state = 9, .external_lex_state = 3}, + [699] = {.lex_state = 10, .external_lex_state = 2}, + [700] = {.lex_state = 10, .external_lex_state = 2}, + [701] = {.lex_state = 10, .external_lex_state = 2}, + [702] = {.lex_state = 9, .external_lex_state = 3}, + [703] = {.lex_state = 10, .external_lex_state = 2}, + [704] = {.lex_state = 9, .external_lex_state = 3}, + [705] = {.lex_state = 10, .external_lex_state = 2}, + [706] = {.lex_state = 10, .external_lex_state = 2}, + [707] = {.lex_state = 10, .external_lex_state = 2}, + [708] = {.lex_state = 10, .external_lex_state = 2}, + [709] = {.lex_state = 10, .external_lex_state = 2}, + [710] = {.lex_state = 10, .external_lex_state = 2}, + [711] = {.lex_state = 10, .external_lex_state = 2}, + [712] = {.lex_state = 10, .external_lex_state = 2}, + [713] = {.lex_state = 10, .external_lex_state = 2}, + [714] = {.lex_state = 10, .external_lex_state = 2}, + [715] = {.lex_state = 9, .external_lex_state = 3}, + [716] = {.lex_state = 10, .external_lex_state = 2}, + [717] = {.lex_state = 10, .external_lex_state = 2}, + [718] = {.lex_state = 10, .external_lex_state = 2}, + [719] = {.lex_state = 10, .external_lex_state = 2}, + [720] = {.lex_state = 10, .external_lex_state = 2}, + [721] = {.lex_state = 10, .external_lex_state = 2}, + [722] = {.lex_state = 10, .external_lex_state = 2}, + [723] = {.lex_state = 10, .external_lex_state = 2}, + [724] = {.lex_state = 10, .external_lex_state = 2}, + [725] = {.lex_state = 10, .external_lex_state = 2}, + [726] = {.lex_state = 10, .external_lex_state = 2}, + [727] = {.lex_state = 10, .external_lex_state = 2}, + [728] = {.lex_state = 10, .external_lex_state = 2}, + [729] = {.lex_state = 10, .external_lex_state = 2}, + [730] = {.lex_state = 10, .external_lex_state = 2}, + [731] = {.lex_state = 10, .external_lex_state = 2}, + [732] = {.lex_state = 10, .external_lex_state = 2}, + [733] = {.lex_state = 10, .external_lex_state = 2}, + [734] = {.lex_state = 9, .external_lex_state = 3}, + [735] = {.lex_state = 10, .external_lex_state = 2}, + [736] = {.lex_state = 10, .external_lex_state = 2}, + [737] = {.lex_state = 10, .external_lex_state = 2}, + [738] = {.lex_state = 10, .external_lex_state = 2}, + [739] = {.lex_state = 10, .external_lex_state = 2}, + [740] = {.lex_state = 10, .external_lex_state = 2}, + [741] = {.lex_state = 10, .external_lex_state = 2}, + [742] = {.lex_state = 9, .external_lex_state = 3}, + [743] = {.lex_state = 9, .external_lex_state = 3}, + [744] = {.lex_state = 9, .external_lex_state = 3}, + [745] = {.lex_state = 9, .external_lex_state = 3}, + [746] = {.lex_state = 9, .external_lex_state = 3}, + [747] = {.lex_state = 9, .external_lex_state = 3}, + [748] = {.lex_state = 9, .external_lex_state = 3}, + [749] = {.lex_state = 9, .external_lex_state = 3}, + [750] = {.lex_state = 9, .external_lex_state = 3}, + [751] = {.lex_state = 9, .external_lex_state = 3}, + [752] = {.lex_state = 9, .external_lex_state = 3}, + [753] = {.lex_state = 9, .external_lex_state = 3}, + [754] = {.lex_state = 9, .external_lex_state = 3}, + [755] = {.lex_state = 9, .external_lex_state = 3}, + [756] = {.lex_state = 9, .external_lex_state = 3}, + [757] = {.lex_state = 9, .external_lex_state = 3}, + [758] = {.lex_state = 9, .external_lex_state = 3}, + [759] = {.lex_state = 9, .external_lex_state = 3}, + [760] = {.lex_state = 9, .external_lex_state = 3}, + [761] = {.lex_state = 9, .external_lex_state = 3}, + [762] = {.lex_state = 9, .external_lex_state = 3}, + [763] = {.lex_state = 9, .external_lex_state = 3}, + [764] = {.lex_state = 9, .external_lex_state = 3}, + [765] = {.lex_state = 9, .external_lex_state = 3}, + [766] = {.lex_state = 9, .external_lex_state = 3}, + [767] = {.lex_state = 9, .external_lex_state = 3}, + [768] = {.lex_state = 9, .external_lex_state = 3}, + [769] = {.lex_state = 9, .external_lex_state = 3}, + [770] = {.lex_state = 9, .external_lex_state = 3}, + [771] = {.lex_state = 9, .external_lex_state = 3}, + [772] = {.lex_state = 9, .external_lex_state = 3}, + [773] = {.lex_state = 9, .external_lex_state = 3}, + [774] = {.lex_state = 9, .external_lex_state = 3}, + [775] = {.lex_state = 9, .external_lex_state = 3}, + [776] = {.lex_state = 9, .external_lex_state = 3}, + [777] = {.lex_state = 9, .external_lex_state = 3}, + [778] = {.lex_state = 9, .external_lex_state = 3}, + [779] = {.lex_state = 9, .external_lex_state = 3}, + [780] = {.lex_state = 9, .external_lex_state = 3}, + [781] = {.lex_state = 9, .external_lex_state = 3}, + [782] = {.lex_state = 9, .external_lex_state = 3}, + [783] = {.lex_state = 9, .external_lex_state = 3}, + [784] = {.lex_state = 9, .external_lex_state = 3}, + [785] = {.lex_state = 9, .external_lex_state = 3}, + [786] = {.lex_state = 9, .external_lex_state = 3}, + [787] = {.lex_state = 9, .external_lex_state = 3}, + [788] = {.lex_state = 9, .external_lex_state = 3}, + [789] = {.lex_state = 9, .external_lex_state = 3}, + [790] = {.lex_state = 9, .external_lex_state = 3}, + [791] = {.lex_state = 9, .external_lex_state = 3}, + [792] = {.lex_state = 9, .external_lex_state = 3}, + [793] = {.lex_state = 9, .external_lex_state = 3}, + [794] = {.lex_state = 9, .external_lex_state = 3}, + [795] = {.lex_state = 9, .external_lex_state = 3}, + [796] = {.lex_state = 9, .external_lex_state = 3}, + [797] = {.lex_state = 9, .external_lex_state = 3}, + [798] = {.lex_state = 9, .external_lex_state = 3}, + [799] = {.lex_state = 9, .external_lex_state = 3}, + [800] = {.lex_state = 9, .external_lex_state = 3}, + [801] = {.lex_state = 9, .external_lex_state = 3}, + [802] = {.lex_state = 9, .external_lex_state = 3}, + [803] = {.lex_state = 9, .external_lex_state = 3}, + [804] = {.lex_state = 9, .external_lex_state = 3}, + [805] = {.lex_state = 9, .external_lex_state = 3}, + [806] = {.lex_state = 9, .external_lex_state = 3}, + [807] = {.lex_state = 9, .external_lex_state = 3}, + [808] = {.lex_state = 9, .external_lex_state = 3}, + [809] = {.lex_state = 9, .external_lex_state = 3}, + [810] = {.lex_state = 9, .external_lex_state = 3}, + [811] = {.lex_state = 9, .external_lex_state = 3}, + [812] = {.lex_state = 9, .external_lex_state = 3}, + [813] = {.lex_state = 9, .external_lex_state = 3}, + [814] = {.lex_state = 9, .external_lex_state = 3}, + [815] = {.lex_state = 9, .external_lex_state = 3}, + [816] = {.lex_state = 9, .external_lex_state = 3}, + [817] = {.lex_state = 9, .external_lex_state = 3}, + [818] = {.lex_state = 9, .external_lex_state = 3}, + [819] = {.lex_state = 9, .external_lex_state = 3}, + [820] = {.lex_state = 9, .external_lex_state = 3}, + [821] = {.lex_state = 9, .external_lex_state = 3}, + [822] = {.lex_state = 9, .external_lex_state = 3}, + [823] = {.lex_state = 9, .external_lex_state = 3}, + [824] = {.lex_state = 9, .external_lex_state = 3}, + [825] = {.lex_state = 9, .external_lex_state = 3}, + [826] = {.lex_state = 9, .external_lex_state = 3}, + [827] = {.lex_state = 9, .external_lex_state = 3}, + [828] = {.lex_state = 9, .external_lex_state = 3}, + [829] = {.lex_state = 9, .external_lex_state = 3}, + [830] = {.lex_state = 9, .external_lex_state = 3}, + [831] = {.lex_state = 9, .external_lex_state = 3}, + [832] = {.lex_state = 9, .external_lex_state = 3}, + [833] = {.lex_state = 9, .external_lex_state = 3}, + [834] = {.lex_state = 9, .external_lex_state = 3}, + [835] = {.lex_state = 9, .external_lex_state = 3}, + [836] = {.lex_state = 9, .external_lex_state = 3}, + [837] = {.lex_state = 9, .external_lex_state = 3}, + [838] = {.lex_state = 9, .external_lex_state = 3}, + [839] = {.lex_state = 9, .external_lex_state = 3}, + [840] = {.lex_state = 9, .external_lex_state = 3}, + [841] = {.lex_state = 9, .external_lex_state = 3}, + [842] = {.lex_state = 9, .external_lex_state = 3}, + [843] = {.lex_state = 9, .external_lex_state = 3}, + [844] = {.lex_state = 9, .external_lex_state = 3}, + [845] = {.lex_state = 9, .external_lex_state = 3}, + [846] = {.lex_state = 9, .external_lex_state = 3}, + [847] = {.lex_state = 9, .external_lex_state = 3}, + [848] = {.lex_state = 9, .external_lex_state = 3}, + [849] = {.lex_state = 9, .external_lex_state = 3}, + [850] = {.lex_state = 9, .external_lex_state = 3}, + [851] = {.lex_state = 9, .external_lex_state = 3}, + [852] = {.lex_state = 9, .external_lex_state = 3}, + [853] = {.lex_state = 9, .external_lex_state = 3}, + [854] = {.lex_state = 9, .external_lex_state = 3}, + [855] = {.lex_state = 9, .external_lex_state = 3}, + [856] = {.lex_state = 9, .external_lex_state = 3}, + [857] = {.lex_state = 9, .external_lex_state = 3}, + [858] = {.lex_state = 9, .external_lex_state = 3}, + [859] = {.lex_state = 9, .external_lex_state = 3}, + [860] = {.lex_state = 9, .external_lex_state = 3}, + [861] = {.lex_state = 9, .external_lex_state = 3}, + [862] = {.lex_state = 9, .external_lex_state = 3}, + [863] = {.lex_state = 9, .external_lex_state = 3}, + [864] = {.lex_state = 9, .external_lex_state = 3}, + [865] = {.lex_state = 9, .external_lex_state = 3}, + [866] = {.lex_state = 9, .external_lex_state = 3}, + [867] = {.lex_state = 9, .external_lex_state = 3}, + [868] = {.lex_state = 9, .external_lex_state = 3}, + [869] = {.lex_state = 9, .external_lex_state = 3}, + [870] = {.lex_state = 9, .external_lex_state = 3}, + [871] = {.lex_state = 9, .external_lex_state = 3}, + [872] = {.lex_state = 9, .external_lex_state = 3}, + [873] = {.lex_state = 9, .external_lex_state = 3}, + [874] = {.lex_state = 9, .external_lex_state = 3}, + [875] = {.lex_state = 9, .external_lex_state = 3}, + [876] = {.lex_state = 10, .external_lex_state = 2}, + [877] = {.lex_state = 9, .external_lex_state = 3}, + [878] = {.lex_state = 9, .external_lex_state = 3}, + [879] = {.lex_state = 9, .external_lex_state = 3}, + [880] = {.lex_state = 9, .external_lex_state = 3}, + [881] = {.lex_state = 9, .external_lex_state = 3}, + [882] = {.lex_state = 9, .external_lex_state = 3}, + [883] = {.lex_state = 9, .external_lex_state = 3}, + [884] = {.lex_state = 9, .external_lex_state = 3}, + [885] = {.lex_state = 9, .external_lex_state = 3}, + [886] = {.lex_state = 12, .external_lex_state = 2}, + [887] = {.lex_state = 12, .external_lex_state = 2}, + [888] = {.lex_state = 12, .external_lex_state = 2}, + [889] = {.lex_state = 10, .external_lex_state = 2}, + [890] = {.lex_state = 11, .external_lex_state = 2}, + [891] = {.lex_state = 9, .external_lex_state = 3}, + [892] = {.lex_state = 21, .external_lex_state = 3}, + [893] = {.lex_state = 21, .external_lex_state = 3}, + [894] = {.lex_state = 21, .external_lex_state = 3}, + [895] = {.lex_state = 7, .external_lex_state = 3}, + [896] = {.lex_state = 5, .external_lex_state = 3}, + [897] = {.lex_state = 7, .external_lex_state = 3}, + [898] = {.lex_state = 20, .external_lex_state = 3}, + [899] = {.lex_state = 7, .external_lex_state = 3}, + [900] = {.lex_state = 20, .external_lex_state = 3}, + [901] = {.lex_state = 20, .external_lex_state = 3}, + [902] = {.lex_state = 20, .external_lex_state = 3}, + [903] = {.lex_state = 20, .external_lex_state = 3}, + [904] = {.lex_state = 7, .external_lex_state = 3}, + [905] = {.lex_state = 7, .external_lex_state = 3}, + [906] = {.lex_state = 7, .external_lex_state = 3}, + [907] = {.lex_state = 21, .external_lex_state = 3}, + [908] = {.lex_state = 21, .external_lex_state = 3}, + [909] = {.lex_state = 21, .external_lex_state = 3}, + [910] = {.lex_state = 21, .external_lex_state = 3}, + [911] = {.lex_state = 7, .external_lex_state = 3}, + [912] = {.lex_state = 7, .external_lex_state = 3}, + [913] = {.lex_state = 5, .external_lex_state = 3}, + [914] = {.lex_state = 7, .external_lex_state = 3}, + [915] = {.lex_state = 7, .external_lex_state = 3}, + [916] = {.lex_state = 21, .external_lex_state = 3}, + [917] = {.lex_state = 21, .external_lex_state = 3}, + [918] = {.lex_state = 21, .external_lex_state = 3}, + [919] = {.lex_state = 21, .external_lex_state = 3}, + [920] = {.lex_state = 21, .external_lex_state = 3}, + [921] = {.lex_state = 21, .external_lex_state = 3}, + [922] = {.lex_state = 21, .external_lex_state = 3}, + [923] = {.lex_state = 21, .external_lex_state = 3}, + [924] = {.lex_state = 21, .external_lex_state = 3}, + [925] = {.lex_state = 21, .external_lex_state = 3}, + [926] = {.lex_state = 21, .external_lex_state = 3}, + [927] = {.lex_state = 5, .external_lex_state = 3}, + [928] = {.lex_state = 21, .external_lex_state = 3}, + [929] = {.lex_state = 21, .external_lex_state = 3}, + [930] = {.lex_state = 21, .external_lex_state = 3}, + [931] = {.lex_state = 21, .external_lex_state = 3}, + [932] = {.lex_state = 21, .external_lex_state = 3}, + [933] = {.lex_state = 21, .external_lex_state = 3}, + [934] = {.lex_state = 21, .external_lex_state = 3}, + [935] = {.lex_state = 21, .external_lex_state = 3}, + [936] = {.lex_state = 21, .external_lex_state = 3}, + [937] = {.lex_state = 21, .external_lex_state = 3}, + [938] = {.lex_state = 21, .external_lex_state = 3}, + [939] = {.lex_state = 21, .external_lex_state = 3}, + [940] = {.lex_state = 21, .external_lex_state = 3}, + [941] = {.lex_state = 21, .external_lex_state = 3}, + [942] = {.lex_state = 21, .external_lex_state = 3}, + [943] = {.lex_state = 21, .external_lex_state = 3}, + [944] = {.lex_state = 21, .external_lex_state = 3}, + [945] = {.lex_state = 21, .external_lex_state = 3}, + [946] = {.lex_state = 21, .external_lex_state = 3}, + [947] = {.lex_state = 21, .external_lex_state = 3}, + [948] = {.lex_state = 21, .external_lex_state = 3}, + [949] = {.lex_state = 21, .external_lex_state = 3}, + [950] = {.lex_state = 21, .external_lex_state = 3}, + [951] = {.lex_state = 21, .external_lex_state = 3}, + [952] = {.lex_state = 21, .external_lex_state = 3}, + [953] = {.lex_state = 21, .external_lex_state = 3}, + [954] = {.lex_state = 21, .external_lex_state = 3}, + [955] = {.lex_state = 21, .external_lex_state = 3}, + [956] = {.lex_state = 21, .external_lex_state = 3}, + [957] = {.lex_state = 21, .external_lex_state = 3}, + [958] = {.lex_state = 21, .external_lex_state = 3}, + [959] = {.lex_state = 21, .external_lex_state = 3}, + [960] = {.lex_state = 21, .external_lex_state = 3}, + [961] = {.lex_state = 21, .external_lex_state = 3}, + [962] = {.lex_state = 21, .external_lex_state = 3}, + [963] = {.lex_state = 21, .external_lex_state = 3}, + [964] = {.lex_state = 21, .external_lex_state = 3}, + [965] = {.lex_state = 21, .external_lex_state = 3}, + [966] = {.lex_state = 21, .external_lex_state = 3}, + [967] = {.lex_state = 21, .external_lex_state = 3}, + [968] = {.lex_state = 21, .external_lex_state = 3}, + [969] = {.lex_state = 21, .external_lex_state = 3}, + [970] = {.lex_state = 21, .external_lex_state = 3}, + [971] = {.lex_state = 21, .external_lex_state = 3}, + [972] = {.lex_state = 21, .external_lex_state = 3}, + [973] = {.lex_state = 21, .external_lex_state = 3}, + [974] = {.lex_state = 21, .external_lex_state = 3}, + [975] = {.lex_state = 21, .external_lex_state = 3}, + [976] = {.lex_state = 21, .external_lex_state = 3}, + [977] = {.lex_state = 21, .external_lex_state = 3}, + [978] = {.lex_state = 21, .external_lex_state = 3}, + [979] = {.lex_state = 21, .external_lex_state = 3}, + [980] = {.lex_state = 21, .external_lex_state = 3}, + [981] = {.lex_state = 21, .external_lex_state = 3}, + [982] = {.lex_state = 21, .external_lex_state = 3}, + [983] = {.lex_state = 21, .external_lex_state = 3}, + [984] = {.lex_state = 21, .external_lex_state = 3}, + [985] = {.lex_state = 21, .external_lex_state = 3}, + [986] = {.lex_state = 21, .external_lex_state = 3}, + [987] = {.lex_state = 21, .external_lex_state = 3}, + [988] = {.lex_state = 21, .external_lex_state = 3}, + [989] = {.lex_state = 21, .external_lex_state = 3}, + [990] = {.lex_state = 21, .external_lex_state = 3}, + [991] = {.lex_state = 21, .external_lex_state = 3}, + [992] = {.lex_state = 21, .external_lex_state = 3}, + [993] = {.lex_state = 21, .external_lex_state = 3}, + [994] = {.lex_state = 21, .external_lex_state = 3}, + [995] = {.lex_state = 21, .external_lex_state = 3}, + [996] = {.lex_state = 21, .external_lex_state = 3}, + [997] = {.lex_state = 21, .external_lex_state = 3}, + [998] = {.lex_state = 21, .external_lex_state = 3}, + [999] = {.lex_state = 21, .external_lex_state = 3}, + [1000] = {.lex_state = 21, .external_lex_state = 3}, + [1001] = {.lex_state = 21, .external_lex_state = 3}, + [1002] = {.lex_state = 21, .external_lex_state = 3}, + [1003] = {.lex_state = 21, .external_lex_state = 3}, + [1004] = {.lex_state = 21, .external_lex_state = 3}, + [1005] = {.lex_state = 21, .external_lex_state = 3}, + [1006] = {.lex_state = 21, .external_lex_state = 3}, + [1007] = {.lex_state = 21, .external_lex_state = 3}, + [1008] = {.lex_state = 21, .external_lex_state = 3}, + [1009] = {.lex_state = 5, .external_lex_state = 3}, + [1010] = {.lex_state = 21, .external_lex_state = 3}, + [1011] = {.lex_state = 21, .external_lex_state = 3}, + [1012] = {.lex_state = 21, .external_lex_state = 3}, + [1013] = {.lex_state = 21, .external_lex_state = 3}, + [1014] = {.lex_state = 21, .external_lex_state = 3}, + [1015] = {.lex_state = 21, .external_lex_state = 3}, + [1016] = {.lex_state = 21, .external_lex_state = 3}, + [1017] = {.lex_state = 21, .external_lex_state = 3}, + [1018] = {.lex_state = 21, .external_lex_state = 3}, + [1019] = {.lex_state = 21, .external_lex_state = 3}, + [1020] = {.lex_state = 21, .external_lex_state = 3}, + [1021] = {.lex_state = 5, .external_lex_state = 3}, + [1022] = {.lex_state = 21, .external_lex_state = 3}, + [1023] = {.lex_state = 21, .external_lex_state = 3}, + [1024] = {.lex_state = 21, .external_lex_state = 3}, + [1025] = {.lex_state = 21, .external_lex_state = 3}, + [1026] = {.lex_state = 21, .external_lex_state = 3}, + [1027] = {.lex_state = 21, .external_lex_state = 3}, + [1028] = {.lex_state = 21, .external_lex_state = 3}, + [1029] = {.lex_state = 21, .external_lex_state = 3}, + [1030] = {.lex_state = 21, .external_lex_state = 3}, + [1031] = {.lex_state = 21, .external_lex_state = 3}, + [1032] = {.lex_state = 21, .external_lex_state = 3}, + [1033] = {.lex_state = 5, .external_lex_state = 3}, + [1034] = {.lex_state = 21, .external_lex_state = 3}, + [1035] = {.lex_state = 21, .external_lex_state = 3}, + [1036] = {.lex_state = 21, .external_lex_state = 3}, + [1037] = {.lex_state = 5, .external_lex_state = 3}, + [1038] = {.lex_state = 21, .external_lex_state = 3}, + [1039] = {.lex_state = 21, .external_lex_state = 3}, + [1040] = {.lex_state = 21, .external_lex_state = 3}, + [1041] = {.lex_state = 21, .external_lex_state = 3}, + [1042] = {.lex_state = 21, .external_lex_state = 3}, + [1043] = {.lex_state = 21, .external_lex_state = 3}, + [1044] = {.lex_state = 21, .external_lex_state = 3}, + [1045] = {.lex_state = 21, .external_lex_state = 3}, + [1046] = {.lex_state = 5, .external_lex_state = 3}, + [1047] = {.lex_state = 21, .external_lex_state = 3}, + [1048] = {.lex_state = 21, .external_lex_state = 3}, + [1049] = {.lex_state = 21, .external_lex_state = 3}, + [1050] = {.lex_state = 21, .external_lex_state = 3}, + [1051] = {.lex_state = 21, .external_lex_state = 3}, + [1052] = {.lex_state = 21, .external_lex_state = 3}, + [1053] = {.lex_state = 21, .external_lex_state = 3}, + [1054] = {.lex_state = 21, .external_lex_state = 3}, + [1055] = {.lex_state = 21, .external_lex_state = 3}, + [1056] = {.lex_state = 21, .external_lex_state = 3}, + [1057] = {.lex_state = 21, .external_lex_state = 3}, + [1058] = {.lex_state = 21, .external_lex_state = 3}, + [1059] = {.lex_state = 21, .external_lex_state = 3}, + [1060] = {.lex_state = 21, .external_lex_state = 3}, + [1061] = {.lex_state = 5, .external_lex_state = 3}, + [1062] = {.lex_state = 21, .external_lex_state = 3}, + [1063] = {.lex_state = 21, .external_lex_state = 3}, + [1064] = {.lex_state = 21, .external_lex_state = 3}, + [1065] = {.lex_state = 21, .external_lex_state = 3}, + [1066] = {.lex_state = 21, .external_lex_state = 3}, + [1067] = {.lex_state = 21, .external_lex_state = 3}, + [1068] = {.lex_state = 21, .external_lex_state = 3}, + [1069] = {.lex_state = 21, .external_lex_state = 3}, + [1070] = {.lex_state = 21, .external_lex_state = 3}, + [1071] = {.lex_state = 21, .external_lex_state = 3}, + [1072] = {.lex_state = 21, .external_lex_state = 3}, + [1073] = {.lex_state = 21, .external_lex_state = 3}, + [1074] = {.lex_state = 21, .external_lex_state = 3}, + [1075] = {.lex_state = 21, .external_lex_state = 3}, + [1076] = {.lex_state = 21, .external_lex_state = 3}, + [1077] = {.lex_state = 21, .external_lex_state = 3}, + [1078] = {.lex_state = 21, .external_lex_state = 3}, + [1079] = {.lex_state = 21, .external_lex_state = 3}, + [1080] = {.lex_state = 21, .external_lex_state = 3}, + [1081] = {.lex_state = 21, .external_lex_state = 3}, + [1082] = {.lex_state = 21, .external_lex_state = 3}, + [1083] = {.lex_state = 21, .external_lex_state = 3}, + [1084] = {.lex_state = 21, .external_lex_state = 3}, + [1085] = {.lex_state = 21, .external_lex_state = 3}, + [1086] = {.lex_state = 21, .external_lex_state = 3}, + [1087] = {.lex_state = 21, .external_lex_state = 3}, + [1088] = {.lex_state = 21, .external_lex_state = 3}, + [1089] = {.lex_state = 21, .external_lex_state = 3}, + [1090] = {.lex_state = 21, .external_lex_state = 3}, + [1091] = {.lex_state = 21, .external_lex_state = 3}, + [1092] = {.lex_state = 21, .external_lex_state = 3}, + [1093] = {.lex_state = 21, .external_lex_state = 3}, + [1094] = {.lex_state = 21, .external_lex_state = 3}, + [1095] = {.lex_state = 21, .external_lex_state = 3}, + [1096] = {.lex_state = 5, .external_lex_state = 3}, + [1097] = {.lex_state = 21, .external_lex_state = 3}, + [1098] = {.lex_state = 21, .external_lex_state = 3}, + [1099] = {.lex_state = 21, .external_lex_state = 3}, + [1100] = {.lex_state = 21, .external_lex_state = 3}, + [1101] = {.lex_state = 21, .external_lex_state = 3}, + [1102] = {.lex_state = 21, .external_lex_state = 3}, + [1103] = {.lex_state = 21, .external_lex_state = 3}, + [1104] = {.lex_state = 21, .external_lex_state = 3}, + [1105] = {.lex_state = 21, .external_lex_state = 3}, + [1106] = {.lex_state = 21, .external_lex_state = 3}, + [1107] = {.lex_state = 21, .external_lex_state = 3}, + [1108] = {.lex_state = 21, .external_lex_state = 3}, + [1109] = {.lex_state = 21, .external_lex_state = 3}, + [1110] = {.lex_state = 21, .external_lex_state = 3}, + [1111] = {.lex_state = 21, .external_lex_state = 3}, + [1112] = {.lex_state = 21, .external_lex_state = 3}, + [1113] = {.lex_state = 21, .external_lex_state = 3}, + [1114] = {.lex_state = 21, .external_lex_state = 3}, + [1115] = {.lex_state = 21, .external_lex_state = 3}, + [1116] = {.lex_state = 21, .external_lex_state = 3}, + [1117] = {.lex_state = 21, .external_lex_state = 3}, + [1118] = {.lex_state = 21, .external_lex_state = 3}, + [1119] = {.lex_state = 21, .external_lex_state = 3}, + [1120] = {.lex_state = 21, .external_lex_state = 3}, + [1121] = {.lex_state = 21, .external_lex_state = 3}, + [1122] = {.lex_state = 21, .external_lex_state = 3}, + [1123] = {.lex_state = 21, .external_lex_state = 3}, + [1124] = {.lex_state = 21, .external_lex_state = 3}, + [1125] = {.lex_state = 21, .external_lex_state = 3}, + [1126] = {.lex_state = 21, .external_lex_state = 3}, + [1127] = {.lex_state = 21, .external_lex_state = 3}, + [1128] = {.lex_state = 21, .external_lex_state = 3}, + [1129] = {.lex_state = 21, .external_lex_state = 3}, + [1130] = {.lex_state = 21, .external_lex_state = 3}, + [1131] = {.lex_state = 21, .external_lex_state = 3}, + [1132] = {.lex_state = 21, .external_lex_state = 3}, + [1133] = {.lex_state = 21, .external_lex_state = 3}, + [1134] = {.lex_state = 21, .external_lex_state = 3}, + [1135] = {.lex_state = 21, .external_lex_state = 3}, + [1136] = {.lex_state = 21, .external_lex_state = 3}, + [1137] = {.lex_state = 21, .external_lex_state = 3}, + [1138] = {.lex_state = 21, .external_lex_state = 3}, + [1139] = {.lex_state = 21, .external_lex_state = 3}, + [1140] = {.lex_state = 5, .external_lex_state = 3}, + [1141] = {.lex_state = 9, .external_lex_state = 3}, + [1142] = {.lex_state = 16, .external_lex_state = 3}, + [1143] = {.lex_state = 5, .external_lex_state = 3}, + [1144] = {.lex_state = 10, .external_lex_state = 2}, + [1145] = {.lex_state = 5, .external_lex_state = 3}, + [1146] = {.lex_state = 17, .external_lex_state = 3}, + [1147] = {.lex_state = 5, .external_lex_state = 3}, + [1148] = {.lex_state = 5, .external_lex_state = 3}, + [1149] = {.lex_state = 16, .external_lex_state = 3}, + [1150] = {.lex_state = 5, .external_lex_state = 3}, + [1151] = {.lex_state = 5, .external_lex_state = 3}, + [1152] = {.lex_state = 5, .external_lex_state = 3}, + [1153] = {.lex_state = 16, .external_lex_state = 3}, + [1154] = {.lex_state = 5, .external_lex_state = 3}, + [1155] = {.lex_state = 5, .external_lex_state = 3}, + [1156] = {.lex_state = 5, .external_lex_state = 3}, + [1157] = {.lex_state = 5, .external_lex_state = 3}, + [1158] = {.lex_state = 16, .external_lex_state = 3}, + [1159] = {.lex_state = 16, .external_lex_state = 3}, + [1160] = {.lex_state = 9, .external_lex_state = 3}, + [1161] = {.lex_state = 5, .external_lex_state = 3}, + [1162] = {.lex_state = 16, .external_lex_state = 3}, + [1163] = {.lex_state = 9, .external_lex_state = 3}, + [1164] = {.lex_state = 17, .external_lex_state = 3}, + [1165] = {.lex_state = 5, .external_lex_state = 3}, + [1166] = {.lex_state = 16, .external_lex_state = 3}, + [1167] = {.lex_state = 7, .external_lex_state = 3}, + [1168] = {.lex_state = 5, .external_lex_state = 3}, + [1169] = {.lex_state = 16, .external_lex_state = 3}, + [1170] = {.lex_state = 9, .external_lex_state = 3}, + [1171] = {.lex_state = 5, .external_lex_state = 3}, + [1172] = {.lex_state = 9, .external_lex_state = 3}, + [1173] = {.lex_state = 16, .external_lex_state = 3}, + [1174] = {.lex_state = 16, .external_lex_state = 3}, + [1175] = {.lex_state = 16, .external_lex_state = 3}, + [1176] = {.lex_state = 5, .external_lex_state = 3}, + [1177] = {.lex_state = 5, .external_lex_state = 3}, + [1178] = {.lex_state = 5, .external_lex_state = 3}, + [1179] = {.lex_state = 5, .external_lex_state = 3}, + [1180] = {.lex_state = 16, .external_lex_state = 3}, + [1181] = {.lex_state = 10, .external_lex_state = 2}, + [1182] = {.lex_state = 9, .external_lex_state = 3}, + [1183] = {.lex_state = 9, .external_lex_state = 3}, + [1184] = {.lex_state = 5, .external_lex_state = 3}, + [1185] = {.lex_state = 9, .external_lex_state = 3}, + [1186] = {.lex_state = 9, .external_lex_state = 3}, + [1187] = {.lex_state = 5, .external_lex_state = 3}, + [1188] = {.lex_state = 5, .external_lex_state = 3}, + [1189] = {.lex_state = 5, .external_lex_state = 3}, + [1190] = {.lex_state = 5, .external_lex_state = 3}, + [1191] = {.lex_state = 5, .external_lex_state = 3}, + [1192] = {.lex_state = 5, .external_lex_state = 3}, + [1193] = {.lex_state = 5, .external_lex_state = 3}, + [1194] = {.lex_state = 5, .external_lex_state = 3}, + [1195] = {.lex_state = 5, .external_lex_state = 3}, + [1196] = {.lex_state = 5, .external_lex_state = 3}, + [1197] = {.lex_state = 5, .external_lex_state = 3}, + [1198] = {.lex_state = 5, .external_lex_state = 3}, + [1199] = {.lex_state = 5, .external_lex_state = 3}, + [1200] = {.lex_state = 5, .external_lex_state = 3}, + [1201] = {.lex_state = 5, .external_lex_state = 3}, + [1202] = {.lex_state = 5, .external_lex_state = 3}, + [1203] = {.lex_state = 5, .external_lex_state = 3}, + [1204] = {.lex_state = 10, .external_lex_state = 2}, + [1205] = {.lex_state = 5, .external_lex_state = 3}, + [1206] = {.lex_state = 5, .external_lex_state = 3}, + [1207] = {.lex_state = 5, .external_lex_state = 3}, + [1208] = {.lex_state = 5, .external_lex_state = 3}, + [1209] = {.lex_state = 5, .external_lex_state = 3}, + [1210] = {.lex_state = 5, .external_lex_state = 3}, + [1211] = {.lex_state = 5, .external_lex_state = 3}, + [1212] = {.lex_state = 5, .external_lex_state = 3}, + [1213] = {.lex_state = 5, .external_lex_state = 3}, + [1214] = {.lex_state = 5, .external_lex_state = 3}, + [1215] = {.lex_state = 5, .external_lex_state = 3}, + [1216] = {.lex_state = 5, .external_lex_state = 3}, + [1217] = {.lex_state = 5, .external_lex_state = 3}, + [1218] = {.lex_state = 5, .external_lex_state = 3}, + [1219] = {.lex_state = 5, .external_lex_state = 3}, + [1220] = {.lex_state = 5, .external_lex_state = 3}, + [1221] = {.lex_state = 5, .external_lex_state = 3}, + [1222] = {.lex_state = 5, .external_lex_state = 3}, + [1223] = {.lex_state = 5, .external_lex_state = 3}, + [1224] = {.lex_state = 5, .external_lex_state = 3}, + [1225] = {.lex_state = 5, .external_lex_state = 3}, + [1226] = {.lex_state = 8, .external_lex_state = 3}, + [1227] = {.lex_state = 5, .external_lex_state = 3}, + [1228] = {.lex_state = 5, .external_lex_state = 3}, + [1229] = {.lex_state = 5, .external_lex_state = 3}, + [1230] = {.lex_state = 5, .external_lex_state = 3}, + [1231] = {.lex_state = 5, .external_lex_state = 3}, + [1232] = {.lex_state = 5, .external_lex_state = 3}, + [1233] = {.lex_state = 5, .external_lex_state = 3}, + [1234] = {.lex_state = 5, .external_lex_state = 3}, + [1235] = {.lex_state = 5, .external_lex_state = 3}, + [1236] = {.lex_state = 5, .external_lex_state = 3}, + [1237] = {.lex_state = 5, .external_lex_state = 3}, + [1238] = {.lex_state = 10, .external_lex_state = 2}, + [1239] = {.lex_state = 5, .external_lex_state = 3}, + [1240] = {.lex_state = 5, .external_lex_state = 3}, + [1241] = {.lex_state = 5, .external_lex_state = 3}, + [1242] = {.lex_state = 5, .external_lex_state = 3}, + [1243] = {.lex_state = 5, .external_lex_state = 3}, + [1244] = {.lex_state = 5, .external_lex_state = 3}, + [1245] = {.lex_state = 5, .external_lex_state = 3}, + [1246] = {.lex_state = 5, .external_lex_state = 3}, + [1247] = {.lex_state = 5, .external_lex_state = 3}, + [1248] = {.lex_state = 5, .external_lex_state = 3}, + [1249] = {.lex_state = 5, .external_lex_state = 3}, + [1250] = {.lex_state = 5, .external_lex_state = 3}, + [1251] = {.lex_state = 5, .external_lex_state = 3}, + [1252] = {.lex_state = 5, .external_lex_state = 3}, + [1253] = {.lex_state = 5, .external_lex_state = 3}, + [1254] = {.lex_state = 5, .external_lex_state = 3}, + [1255] = {.lex_state = 5, .external_lex_state = 3}, + [1256] = {.lex_state = 5, .external_lex_state = 3}, + [1257] = {.lex_state = 5, .external_lex_state = 3}, + [1258] = {.lex_state = 5, .external_lex_state = 3}, + [1259] = {.lex_state = 5, .external_lex_state = 3}, + [1260] = {.lex_state = 5, .external_lex_state = 3}, + [1261] = {.lex_state = 5, .external_lex_state = 3}, + [1262] = {.lex_state = 5, .external_lex_state = 3}, + [1263] = {.lex_state = 5, .external_lex_state = 3}, + [1264] = {.lex_state = 5, .external_lex_state = 3}, + [1265] = {.lex_state = 5, .external_lex_state = 3}, + [1266] = {.lex_state = 5, .external_lex_state = 3}, + [1267] = {.lex_state = 5, .external_lex_state = 3}, + [1268] = {.lex_state = 5, .external_lex_state = 3}, + [1269] = {.lex_state = 5, .external_lex_state = 3}, + [1270] = {.lex_state = 5, .external_lex_state = 3}, + [1271] = {.lex_state = 5, .external_lex_state = 3}, + [1272] = {.lex_state = 5, .external_lex_state = 3}, + [1273] = {.lex_state = 5, .external_lex_state = 3}, + [1274] = {.lex_state = 5, .external_lex_state = 3}, + [1275] = {.lex_state = 5, .external_lex_state = 3}, + [1276] = {.lex_state = 5, .external_lex_state = 3}, + [1277] = {.lex_state = 5, .external_lex_state = 3}, + [1278] = {.lex_state = 5, .external_lex_state = 3}, + [1279] = {.lex_state = 5, .external_lex_state = 3}, + [1280] = {.lex_state = 5, .external_lex_state = 3}, + [1281] = {.lex_state = 5, .external_lex_state = 3}, + [1282] = {.lex_state = 5, .external_lex_state = 3}, + [1283] = {.lex_state = 5, .external_lex_state = 3}, + [1284] = {.lex_state = 9, .external_lex_state = 3}, + [1285] = {.lex_state = 5, .external_lex_state = 3}, + [1286] = {.lex_state = 9, .external_lex_state = 3}, + [1287] = {.lex_state = 5, .external_lex_state = 3}, + [1288] = {.lex_state = 9, .external_lex_state = 3}, + [1289] = {.lex_state = 10, .external_lex_state = 2}, + [1290] = {.lex_state = 5, .external_lex_state = 3}, + [1291] = {.lex_state = 5, .external_lex_state = 3}, + [1292] = {.lex_state = 5, .external_lex_state = 3}, + [1293] = {.lex_state = 5, .external_lex_state = 3}, + [1294] = {.lex_state = 6, .external_lex_state = 3}, + [1295] = {.lex_state = 9, .external_lex_state = 3}, + [1296] = {.lex_state = 5, .external_lex_state = 3}, + [1297] = {.lex_state = 5, .external_lex_state = 3}, + [1298] = {.lex_state = 5, .external_lex_state = 3}, + [1299] = {.lex_state = 5, .external_lex_state = 3}, + [1300] = {.lex_state = 9, .external_lex_state = 3}, + [1301] = {.lex_state = 9, .external_lex_state = 3}, + [1302] = {.lex_state = 5, .external_lex_state = 3}, + [1303] = {.lex_state = 5, .external_lex_state = 3}, + [1304] = {.lex_state = 5, .external_lex_state = 3}, + [1305] = {.lex_state = 9, .external_lex_state = 3}, + [1306] = {.lex_state = 5, .external_lex_state = 3}, + [1307] = {.lex_state = 9, .external_lex_state = 3}, + [1308] = {.lex_state = 5, .external_lex_state = 3}, + [1309] = {.lex_state = 8, .external_lex_state = 3}, + [1310] = {.lex_state = 5, .external_lex_state = 3}, + [1311] = {.lex_state = 9, .external_lex_state = 3}, + [1312] = {.lex_state = 8, .external_lex_state = 3}, + [1313] = {.lex_state = 8, .external_lex_state = 3}, + [1314] = {.lex_state = 5, .external_lex_state = 3}, + [1315] = {.lex_state = 8, .external_lex_state = 3}, + [1316] = {.lex_state = 8, .external_lex_state = 3}, + [1317] = {.lex_state = 8, .external_lex_state = 3}, + [1318] = {.lex_state = 8, .external_lex_state = 3}, + [1319] = {.lex_state = 6, .external_lex_state = 3}, + [1320] = {.lex_state = 6, .external_lex_state = 3}, + [1321] = {.lex_state = 10, .external_lex_state = 2}, + [1322] = {.lex_state = 5, .external_lex_state = 3}, + [1323] = {.lex_state = 10, .external_lex_state = 2}, + [1324] = {.lex_state = 10, .external_lex_state = 2}, + [1325] = {.lex_state = 10, .external_lex_state = 2}, + [1326] = {.lex_state = 8, .external_lex_state = 3}, + [1327] = {.lex_state = 6, .external_lex_state = 3}, + [1328] = {.lex_state = 8, .external_lex_state = 3}, + [1329] = {.lex_state = 6, .external_lex_state = 3}, + [1330] = {.lex_state = 10, .external_lex_state = 2}, + [1331] = {.lex_state = 10, .external_lex_state = 2}, + [1332] = {.lex_state = 5, .external_lex_state = 3}, + [1333] = {.lex_state = 5, .external_lex_state = 3}, + [1334] = {.lex_state = 6, .external_lex_state = 3}, + [1335] = {.lex_state = 9, .external_lex_state = 3}, + [1336] = {.lex_state = 9, .external_lex_state = 3}, + [1337] = {.lex_state = 5, .external_lex_state = 3}, + [1338] = {.lex_state = 6, .external_lex_state = 3}, + [1339] = {.lex_state = 6, .external_lex_state = 3}, + [1340] = {.lex_state = 10, .external_lex_state = 2}, + [1341] = {.lex_state = 6, .external_lex_state = 3}, + [1342] = {.lex_state = 5, .external_lex_state = 3}, + [1343] = {.lex_state = 5, .external_lex_state = 3}, + [1344] = {.lex_state = 9, .external_lex_state = 3}, + [1345] = {.lex_state = 6, .external_lex_state = 3}, + [1346] = {.lex_state = 6, .external_lex_state = 3}, + [1347] = {.lex_state = 6, .external_lex_state = 3}, + [1348] = {.lex_state = 5, .external_lex_state = 3}, + [1349] = {.lex_state = 6, .external_lex_state = 3}, + [1350] = {.lex_state = 9, .external_lex_state = 3}, + [1351] = {.lex_state = 6, .external_lex_state = 3}, + [1352] = {.lex_state = 6, .external_lex_state = 3}, + [1353] = {.lex_state = 9, .external_lex_state = 3}, + [1354] = {.lex_state = 5, .external_lex_state = 3}, + [1355] = {.lex_state = 9, .external_lex_state = 3}, + [1356] = {.lex_state = 9, .external_lex_state = 3}, + [1357] = {.lex_state = 5, .external_lex_state = 3}, + [1358] = {.lex_state = 5, .external_lex_state = 3}, + [1359] = {.lex_state = 5, .external_lex_state = 3}, + [1360] = {.lex_state = 6, .external_lex_state = 3}, + [1361] = {.lex_state = 18, .external_lex_state = 3}, + [1362] = {.lex_state = 6, .external_lex_state = 3}, + [1363] = {.lex_state = 18, .external_lex_state = 3}, + [1364] = {.lex_state = 6, .external_lex_state = 3}, + [1365] = {.lex_state = 6, .external_lex_state = 3}, + [1366] = {.lex_state = 6, .external_lex_state = 3}, + [1367] = {.lex_state = 6, .external_lex_state = 3}, + [1368] = {.lex_state = 18, .external_lex_state = 3}, + [1369] = {.lex_state = 9, .external_lex_state = 3}, + [1370] = {.lex_state = 6, .external_lex_state = 3}, + [1371] = {.lex_state = 5, .external_lex_state = 3}, + [1372] = {.lex_state = 5, .external_lex_state = 3}, + [1373] = {.lex_state = 18, .external_lex_state = 3}, + [1374] = {.lex_state = 6, .external_lex_state = 3}, + [1375] = {.lex_state = 18, .external_lex_state = 3}, + [1376] = {.lex_state = 6, .external_lex_state = 3}, + [1377] = {.lex_state = 9, .external_lex_state = 3}, + [1378] = {.lex_state = 6, .external_lex_state = 3}, + [1379] = {.lex_state = 5, .external_lex_state = 3}, + [1380] = {.lex_state = 18, .external_lex_state = 3}, + [1381] = {.lex_state = 6, .external_lex_state = 3}, + [1382] = {.lex_state = 6, .external_lex_state = 3}, + [1383] = {.lex_state = 18, .external_lex_state = 3}, + [1384] = {.lex_state = 6, .external_lex_state = 3}, + [1385] = {.lex_state = 6, .external_lex_state = 3}, + [1386] = {.lex_state = 6, .external_lex_state = 3}, + [1387] = {.lex_state = 18, .external_lex_state = 3}, + [1388] = {.lex_state = 5, .external_lex_state = 3}, + [1389] = {.lex_state = 5, .external_lex_state = 3}, + [1390] = {.lex_state = 6, .external_lex_state = 3}, + [1391] = {.lex_state = 5, .external_lex_state = 3}, + [1392] = {.lex_state = 5, .external_lex_state = 3}, + [1393] = {.lex_state = 5, .external_lex_state = 3}, + [1394] = {.lex_state = 18, .external_lex_state = 3}, + [1395] = {.lex_state = 9, .external_lex_state = 3}, + [1396] = {.lex_state = 18, .external_lex_state = 3}, + [1397] = {.lex_state = 18, .external_lex_state = 3}, + [1398] = {.lex_state = 6, .external_lex_state = 3}, + [1399] = {.lex_state = 8, .external_lex_state = 3}, + [1400] = {.lex_state = 18, .external_lex_state = 3}, + [1401] = {.lex_state = 6, .external_lex_state = 3}, + [1402] = {.lex_state = 6, .external_lex_state = 3}, + [1403] = {.lex_state = 6, .external_lex_state = 3}, + [1404] = {.lex_state = 6, .external_lex_state = 3}, + [1405] = {.lex_state = 6, .external_lex_state = 3}, + [1406] = {.lex_state = 6, .external_lex_state = 3}, + [1407] = {.lex_state = 6, .external_lex_state = 3}, + [1408] = {.lex_state = 6, .external_lex_state = 3}, + [1409] = {.lex_state = 5, .external_lex_state = 3}, + [1410] = {.lex_state = 5, .external_lex_state = 3}, + [1411] = {.lex_state = 5, .external_lex_state = 3}, + [1412] = {.lex_state = 6, .external_lex_state = 3}, + [1413] = {.lex_state = 5, .external_lex_state = 3}, + [1414] = {.lex_state = 6, .external_lex_state = 3}, + [1415] = {.lex_state = 5, .external_lex_state = 3}, + [1416] = {.lex_state = 6, .external_lex_state = 3}, + [1417] = {.lex_state = 5, .external_lex_state = 3}, + [1418] = {.lex_state = 5, .external_lex_state = 3}, + [1419] = {.lex_state = 6, .external_lex_state = 3}, + [1420] = {.lex_state = 6, .external_lex_state = 3}, + [1421] = {.lex_state = 6, .external_lex_state = 3}, + [1422] = {.lex_state = 5, .external_lex_state = 3}, + [1423] = {.lex_state = 5, .external_lex_state = 3}, + [1424] = {.lex_state = 5, .external_lex_state = 3}, + [1425] = {.lex_state = 6, .external_lex_state = 3}, + [1426] = {.lex_state = 5, .external_lex_state = 3}, + [1427] = {.lex_state = 5, .external_lex_state = 3}, + [1428] = {.lex_state = 5, .external_lex_state = 3}, + [1429] = {.lex_state = 5, .external_lex_state = 3}, + [1430] = {.lex_state = 6, .external_lex_state = 3}, + [1431] = {.lex_state = 5, .external_lex_state = 3}, + [1432] = {.lex_state = 5, .external_lex_state = 3}, + [1433] = {.lex_state = 5, .external_lex_state = 3}, + [1434] = {.lex_state = 5, .external_lex_state = 3}, + [1435] = {.lex_state = 5, .external_lex_state = 3}, + [1436] = {.lex_state = 5, .external_lex_state = 3}, + [1437] = {.lex_state = 5, .external_lex_state = 3}, + [1438] = {.lex_state = 6, .external_lex_state = 3}, + [1439] = {.lex_state = 6, .external_lex_state = 3}, + [1440] = {.lex_state = 6, .external_lex_state = 3}, + [1441] = {.lex_state = 9, .external_lex_state = 3}, + [1442] = {.lex_state = 6, .external_lex_state = 3}, + [1443] = {.lex_state = 5, .external_lex_state = 3}, + [1444] = {.lex_state = 5, .external_lex_state = 3}, + [1445] = {.lex_state = 6, .external_lex_state = 3}, + [1446] = {.lex_state = 5, .external_lex_state = 3}, + [1447] = {.lex_state = 6, .external_lex_state = 3}, + [1448] = {.lex_state = 5, .external_lex_state = 3}, + [1449] = {.lex_state = 5, .external_lex_state = 3}, + [1450] = {.lex_state = 5, .external_lex_state = 3}, + [1451] = {.lex_state = 6, .external_lex_state = 3}, + [1452] = {.lex_state = 5, .external_lex_state = 3}, + [1453] = {.lex_state = 5, .external_lex_state = 3}, + [1454] = {.lex_state = 6, .external_lex_state = 3}, + [1455] = {.lex_state = 6, .external_lex_state = 3}, + [1456] = {.lex_state = 5, .external_lex_state = 3}, + [1457] = {.lex_state = 5, .external_lex_state = 3}, + [1458] = {.lex_state = 6, .external_lex_state = 3}, + [1459] = {.lex_state = 5, .external_lex_state = 3}, + [1460] = {.lex_state = 5, .external_lex_state = 3}, + [1461] = {.lex_state = 5, .external_lex_state = 3}, + [1462] = {.lex_state = 5, .external_lex_state = 3}, + [1463] = {.lex_state = 6, .external_lex_state = 3}, + [1464] = {.lex_state = 5, .external_lex_state = 3}, + [1465] = {.lex_state = 5, .external_lex_state = 3}, + [1466] = {.lex_state = 5, .external_lex_state = 3}, + [1467] = {.lex_state = 5, .external_lex_state = 3}, + [1468] = {.lex_state = 6, .external_lex_state = 3}, + [1469] = {.lex_state = 6, .external_lex_state = 3}, + [1470] = {.lex_state = 6, .external_lex_state = 3}, + [1471] = {.lex_state = 5, .external_lex_state = 3}, + [1472] = {.lex_state = 6, .external_lex_state = 3}, + [1473] = {.lex_state = 6, .external_lex_state = 3}, + [1474] = {.lex_state = 5, .external_lex_state = 3}, + [1475] = {.lex_state = 6, .external_lex_state = 3}, + [1476] = {.lex_state = 6, .external_lex_state = 3}, + [1477] = {.lex_state = 6, .external_lex_state = 3}, + [1478] = {.lex_state = 5, .external_lex_state = 3}, + [1479] = {.lex_state = 6, .external_lex_state = 3}, + [1480] = {.lex_state = 5, .external_lex_state = 3}, + [1481] = {.lex_state = 5, .external_lex_state = 3}, + [1482] = {.lex_state = 6, .external_lex_state = 3}, + [1483] = {.lex_state = 5, .external_lex_state = 3}, + [1484] = {.lex_state = 6, .external_lex_state = 3}, + [1485] = {.lex_state = 5, .external_lex_state = 3}, + [1486] = {.lex_state = 5, .external_lex_state = 3}, + [1487] = {.lex_state = 6, .external_lex_state = 3}, + [1488] = {.lex_state = 6, .external_lex_state = 3}, + [1489] = {.lex_state = 6, .external_lex_state = 3}, + [1490] = {.lex_state = 5, .external_lex_state = 3}, + [1491] = {.lex_state = 5, .external_lex_state = 3}, + [1492] = {.lex_state = 5, .external_lex_state = 3}, + [1493] = {.lex_state = 5, .external_lex_state = 3}, + [1494] = {.lex_state = 6, .external_lex_state = 3}, + [1495] = {.lex_state = 5, .external_lex_state = 3}, + [1496] = {.lex_state = 6, .external_lex_state = 3}, + [1497] = {.lex_state = 6, .external_lex_state = 3}, + [1498] = {.lex_state = 5, .external_lex_state = 3}, + [1499] = {.lex_state = 6, .external_lex_state = 3}, + [1500] = {.lex_state = 6, .external_lex_state = 3}, + [1501] = {.lex_state = 6, .external_lex_state = 3}, + [1502] = {.lex_state = 6, .external_lex_state = 3}, + [1503] = {.lex_state = 6, .external_lex_state = 3}, + [1504] = {.lex_state = 6, .external_lex_state = 3}, + [1505] = {.lex_state = 5, .external_lex_state = 3}, + [1506] = {.lex_state = 6, .external_lex_state = 3}, + [1507] = {.lex_state = 5, .external_lex_state = 3}, + [1508] = {.lex_state = 6, .external_lex_state = 3}, + [1509] = {.lex_state = 6, .external_lex_state = 3}, + [1510] = {.lex_state = 6, .external_lex_state = 3}, + [1511] = {.lex_state = 5, .external_lex_state = 3}, + [1512] = {.lex_state = 5, .external_lex_state = 3}, + [1513] = {.lex_state = 6, .external_lex_state = 3}, + [1514] = {.lex_state = 5, .external_lex_state = 3}, + [1515] = {.lex_state = 5, .external_lex_state = 3}, + [1516] = {.lex_state = 5, .external_lex_state = 3}, + [1517] = {.lex_state = 6, .external_lex_state = 3}, + [1518] = {.lex_state = 5, .external_lex_state = 3}, + [1519] = {.lex_state = 6, .external_lex_state = 3}, + [1520] = {.lex_state = 5, .external_lex_state = 3}, + [1521] = {.lex_state = 6, .external_lex_state = 3}, + [1522] = {.lex_state = 6, .external_lex_state = 3}, + [1523] = {.lex_state = 6, .external_lex_state = 3}, + [1524] = {.lex_state = 6, .external_lex_state = 3}, + [1525] = {.lex_state = 6, .external_lex_state = 3}, + [1526] = {.lex_state = 6, .external_lex_state = 3}, + [1527] = {.lex_state = 6, .external_lex_state = 3}, + [1528] = {.lex_state = 6, .external_lex_state = 3}, + [1529] = {.lex_state = 6, .external_lex_state = 3}, + [1530] = {.lex_state = 6, .external_lex_state = 3}, + [1531] = {.lex_state = 6, .external_lex_state = 3}, + [1532] = {.lex_state = 6, .external_lex_state = 3}, + [1533] = {.lex_state = 6, .external_lex_state = 3}, + [1534] = {.lex_state = 6, .external_lex_state = 3}, + [1535] = {.lex_state = 6, .external_lex_state = 3}, + [1536] = {.lex_state = 6, .external_lex_state = 3}, + [1537] = {.lex_state = 5, .external_lex_state = 3}, + [1538] = {.lex_state = 6, .external_lex_state = 3}, + [1539] = {.lex_state = 6, .external_lex_state = 3}, + [1540] = {.lex_state = 6, .external_lex_state = 3}, + [1541] = {.lex_state = 6, .external_lex_state = 3}, + [1542] = {.lex_state = 6, .external_lex_state = 3}, + [1543] = {.lex_state = 6, .external_lex_state = 3}, + [1544] = {.lex_state = 6, .external_lex_state = 3}, + [1545] = {.lex_state = 6, .external_lex_state = 3}, + [1546] = {.lex_state = 5, .external_lex_state = 3}, + [1547] = {.lex_state = 5, .external_lex_state = 3}, + [1548] = {.lex_state = 5, .external_lex_state = 3}, + [1549] = {.lex_state = 5, .external_lex_state = 3}, + [1550] = {.lex_state = 5, .external_lex_state = 3}, + [1551] = {.lex_state = 5, .external_lex_state = 3}, + [1552] = {.lex_state = 5, .external_lex_state = 3}, + [1553] = {.lex_state = 6, .external_lex_state = 3}, + [1554] = {.lex_state = 5, .external_lex_state = 3}, + [1555] = {.lex_state = 5, .external_lex_state = 3}, + [1556] = {.lex_state = 6, .external_lex_state = 3}, + [1557] = {.lex_state = 5, .external_lex_state = 3}, + [1558] = {.lex_state = 6, .external_lex_state = 3}, + [1559] = {.lex_state = 6, .external_lex_state = 3}, + [1560] = {.lex_state = 6, .external_lex_state = 3}, + [1561] = {.lex_state = 6, .external_lex_state = 3}, + [1562] = {.lex_state = 6, .external_lex_state = 3}, + [1563] = {.lex_state = 5, .external_lex_state = 3}, + [1564] = {.lex_state = 5, .external_lex_state = 3}, + [1565] = {.lex_state = 6, .external_lex_state = 3}, + [1566] = {.lex_state = 5, .external_lex_state = 3}, + [1567] = {.lex_state = 5, .external_lex_state = 3}, + [1568] = {.lex_state = 6, .external_lex_state = 3}, + [1569] = {.lex_state = 5, .external_lex_state = 3}, + [1570] = {.lex_state = 6, .external_lex_state = 3}, + [1571] = {.lex_state = 5, .external_lex_state = 3}, + [1572] = {.lex_state = 6, .external_lex_state = 3}, + [1573] = {.lex_state = 6, .external_lex_state = 3}, + [1574] = {.lex_state = 6, .external_lex_state = 3}, + [1575] = {.lex_state = 5, .external_lex_state = 3}, + [1576] = {.lex_state = 5, .external_lex_state = 3}, + [1577] = {.lex_state = 6, .external_lex_state = 3}, + [1578] = {.lex_state = 6, .external_lex_state = 3}, + [1579] = {.lex_state = 6, .external_lex_state = 3}, + [1580] = {.lex_state = 6, .external_lex_state = 3}, + [1581] = {.lex_state = 6, .external_lex_state = 3}, + [1582] = {.lex_state = 6, .external_lex_state = 3}, + [1583] = {.lex_state = 6, .external_lex_state = 3}, + [1584] = {.lex_state = 5, .external_lex_state = 3}, + [1585] = {.lex_state = 5, .external_lex_state = 3}, + [1586] = {.lex_state = 6, .external_lex_state = 3}, + [1587] = {.lex_state = 5, .external_lex_state = 3}, + [1588] = {.lex_state = 6, .external_lex_state = 3}, + [1589] = {.lex_state = 5, .external_lex_state = 3}, + [1590] = {.lex_state = 6, .external_lex_state = 3}, + [1591] = {.lex_state = 6, .external_lex_state = 3}, + [1592] = {.lex_state = 5, .external_lex_state = 3}, + [1593] = {.lex_state = 5, .external_lex_state = 3}, + [1594] = {.lex_state = 6, .external_lex_state = 3}, + [1595] = {.lex_state = 5, .external_lex_state = 3}, + [1596] = {.lex_state = 5, .external_lex_state = 3}, + [1597] = {.lex_state = 6, .external_lex_state = 3}, + [1598] = {.lex_state = 6, .external_lex_state = 3}, + [1599] = {.lex_state = 5, .external_lex_state = 3}, + [1600] = {.lex_state = 5, .external_lex_state = 3}, + [1601] = {.lex_state = 5, .external_lex_state = 3}, + [1602] = {.lex_state = 5, .external_lex_state = 3}, + [1603] = {.lex_state = 5, .external_lex_state = 3}, + [1604] = {.lex_state = 5, .external_lex_state = 3}, + [1605] = {.lex_state = 5, .external_lex_state = 3}, + [1606] = {.lex_state = 6, .external_lex_state = 3}, + [1607] = {.lex_state = 5, .external_lex_state = 3}, + [1608] = {.lex_state = 5, .external_lex_state = 3}, + [1609] = {.lex_state = 9, .external_lex_state = 3}, + [1610] = {.lex_state = 5, .external_lex_state = 3}, + [1611] = {.lex_state = 5, .external_lex_state = 3}, + [1612] = {.lex_state = 5, .external_lex_state = 3}, + [1613] = {.lex_state = 5, .external_lex_state = 3}, + [1614] = {.lex_state = 5, .external_lex_state = 3}, + [1615] = {.lex_state = 5, .external_lex_state = 3}, + [1616] = {.lex_state = 5, .external_lex_state = 3}, + [1617] = {.lex_state = 5, .external_lex_state = 3}, + [1618] = {.lex_state = 5, .external_lex_state = 3}, + [1619] = {.lex_state = 5, .external_lex_state = 3}, + [1620] = {.lex_state = 9, .external_lex_state = 3}, + [1621] = {.lex_state = 5, .external_lex_state = 3}, + [1622] = {.lex_state = 5, .external_lex_state = 3}, + [1623] = {.lex_state = 5, .external_lex_state = 3}, + [1624] = {.lex_state = 5, .external_lex_state = 3}, + [1625] = {.lex_state = 5, .external_lex_state = 3}, + [1626] = {.lex_state = 5, .external_lex_state = 3}, + [1627] = {.lex_state = 5, .external_lex_state = 3}, + [1628] = {.lex_state = 5, .external_lex_state = 3}, + [1629] = {.lex_state = 5, .external_lex_state = 3}, + [1630] = {.lex_state = 5, .external_lex_state = 3}, + [1631] = {.lex_state = 5, .external_lex_state = 3}, + [1632] = {.lex_state = 5, .external_lex_state = 3}, + [1633] = {.lex_state = 5, .external_lex_state = 3}, + [1634] = {.lex_state = 5, .external_lex_state = 3}, + [1635] = {.lex_state = 5, .external_lex_state = 3}, + [1636] = {.lex_state = 5, .external_lex_state = 3}, + [1637] = {.lex_state = 5, .external_lex_state = 3}, + [1638] = {.lex_state = 5, .external_lex_state = 3}, + [1639] = {.lex_state = 5, .external_lex_state = 3}, + [1640] = {.lex_state = 5, .external_lex_state = 3}, + [1641] = {.lex_state = 5, .external_lex_state = 3}, + [1642] = {.lex_state = 5, .external_lex_state = 3}, + [1643] = {.lex_state = 9, .external_lex_state = 3}, + [1644] = {.lex_state = 9, .external_lex_state = 3}, + [1645] = {.lex_state = 9, .external_lex_state = 3}, + [1646] = {.lex_state = 9, .external_lex_state = 3}, + [1647] = {.lex_state = 9, .external_lex_state = 3}, + [1648] = {.lex_state = 9, .external_lex_state = 3}, + [1649] = {.lex_state = 9, .external_lex_state = 3}, + [1650] = {.lex_state = 9, .external_lex_state = 3}, + [1651] = {.lex_state = 9, .external_lex_state = 3}, + [1652] = {.lex_state = 9, .external_lex_state = 3}, + [1653] = {.lex_state = 25, .external_lex_state = 3}, + [1654] = {.lex_state = 25, .external_lex_state = 3}, + [1655] = {.lex_state = 14, .external_lex_state = 3}, + [1656] = {.lex_state = 14, .external_lex_state = 3}, + [1657] = {.lex_state = 14, .external_lex_state = 3}, + [1658] = {.lex_state = 14, .external_lex_state = 3}, + [1659] = {.lex_state = 14, .external_lex_state = 3}, + [1660] = {.lex_state = 14, .external_lex_state = 3}, + [1661] = {.lex_state = 14, .external_lex_state = 3}, + [1662] = {.lex_state = 14, .external_lex_state = 3}, + [1663] = {.lex_state = 9, .external_lex_state = 3}, + [1664] = {.lex_state = 25, .external_lex_state = 3}, + [1665] = {.lex_state = 25, .external_lex_state = 3}, + [1666] = {.lex_state = 25, .external_lex_state = 3}, + [1667] = {.lex_state = 9, .external_lex_state = 3}, + [1668] = {.lex_state = 9, .external_lex_state = 3}, + [1669] = {.lex_state = 25, .external_lex_state = 3}, + [1670] = {.lex_state = 9, .external_lex_state = 3}, + [1671] = {.lex_state = 14, .external_lex_state = 3}, + [1672] = {.lex_state = 9, .external_lex_state = 3}, + [1673] = {.lex_state = 9, .external_lex_state = 3}, + [1674] = {.lex_state = 14, .external_lex_state = 3}, + [1675] = {.lex_state = 9, .external_lex_state = 3}, + [1676] = {.lex_state = 14, .external_lex_state = 3}, + [1677] = {.lex_state = 9, .external_lex_state = 3}, + [1678] = {.lex_state = 9, .external_lex_state = 3}, + [1679] = {.lex_state = 9, .external_lex_state = 3}, + [1680] = {.lex_state = 9, .external_lex_state = 3}, + [1681] = {.lex_state = 14, .external_lex_state = 3}, + [1682] = {.lex_state = 14, .external_lex_state = 3}, + [1683] = {.lex_state = 14, .external_lex_state = 3}, + [1684] = {.lex_state = 9, .external_lex_state = 3}, + [1685] = {.lex_state = 9, .external_lex_state = 3}, + [1686] = {.lex_state = 14, .external_lex_state = 3}, + [1687] = {.lex_state = 9, .external_lex_state = 3}, + [1688] = {.lex_state = 9, .external_lex_state = 3}, + [1689] = {.lex_state = 9, .external_lex_state = 3}, + [1690] = {.lex_state = 25, .external_lex_state = 3}, + [1691] = {.lex_state = 25, .external_lex_state = 3}, + [1692] = {.lex_state = 25, .external_lex_state = 3}, + [1693] = {.lex_state = 9, .external_lex_state = 3}, + [1694] = {.lex_state = 25, .external_lex_state = 3}, + [1695] = {.lex_state = 25, .external_lex_state = 3}, + [1696] = {.lex_state = 25, .external_lex_state = 3}, + [1697] = {.lex_state = 9, .external_lex_state = 3}, + [1698] = {.lex_state = 9, .external_lex_state = 3}, + [1699] = {.lex_state = 25, .external_lex_state = 3}, + [1700] = {.lex_state = 25, .external_lex_state = 3}, + [1701] = {.lex_state = 25, .external_lex_state = 3}, + [1702] = {.lex_state = 9, .external_lex_state = 3}, + [1703] = {.lex_state = 14, .external_lex_state = 3}, + [1704] = {.lex_state = 25, .external_lex_state = 3}, + [1705] = {.lex_state = 25, .external_lex_state = 3}, + [1706] = {.lex_state = 9, .external_lex_state = 3}, + [1707] = {.lex_state = 25, .external_lex_state = 3}, + [1708] = {.lex_state = 9, .external_lex_state = 3}, + [1709] = {.lex_state = 9, .external_lex_state = 3}, + [1710] = {.lex_state = 25, .external_lex_state = 3}, + [1711] = {.lex_state = 25, .external_lex_state = 3}, + [1712] = {.lex_state = 25, .external_lex_state = 3}, + [1713] = {.lex_state = 25, .external_lex_state = 3}, + [1714] = {.lex_state = 25, .external_lex_state = 3}, + [1715] = {.lex_state = 25, .external_lex_state = 3}, + [1716] = {.lex_state = 9, .external_lex_state = 3}, + [1717] = {.lex_state = 25, .external_lex_state = 3}, + [1718] = {.lex_state = 25, .external_lex_state = 3}, + [1719] = {.lex_state = 25, .external_lex_state = 3}, + [1720] = {.lex_state = 25, .external_lex_state = 3}, + [1721] = {.lex_state = 25, .external_lex_state = 3}, + [1722] = {.lex_state = 25, .external_lex_state = 3}, + [1723] = {.lex_state = 25, .external_lex_state = 3}, + [1724] = {.lex_state = 25, .external_lex_state = 3}, + [1725] = {.lex_state = 25, .external_lex_state = 3}, + [1726] = {.lex_state = 25, .external_lex_state = 3}, + [1727] = {.lex_state = 25, .external_lex_state = 3}, + [1728] = {.lex_state = 25, .external_lex_state = 3}, + [1729] = {.lex_state = 25, .external_lex_state = 3}, + [1730] = {.lex_state = 25, .external_lex_state = 3}, + [1731] = {.lex_state = 25, .external_lex_state = 3}, + [1732] = {.lex_state = 25, .external_lex_state = 3}, + [1733] = {.lex_state = 25, .external_lex_state = 3}, + [1734] = {.lex_state = 25, .external_lex_state = 3}, + [1735] = {.lex_state = 25, .external_lex_state = 3}, + [1736] = {.lex_state = 25, .external_lex_state = 3}, + [1737] = {.lex_state = 25, .external_lex_state = 3}, + [1738] = {.lex_state = 14, .external_lex_state = 3}, + [1739] = {.lex_state = 14, .external_lex_state = 3}, + [1740] = {.lex_state = 14, .external_lex_state = 3}, + [1741] = {.lex_state = 14, .external_lex_state = 3}, + [1742] = {.lex_state = 14, .external_lex_state = 3}, + [1743] = {.lex_state = 25, .external_lex_state = 3}, + [1744] = {.lex_state = 14, .external_lex_state = 3}, + [1745] = {.lex_state = 14, .external_lex_state = 3}, + [1746] = {.lex_state = 15, .external_lex_state = 3}, + [1747] = {.lex_state = 14, .external_lex_state = 3}, + [1748] = {.lex_state = 14, .external_lex_state = 3}, + [1749] = {.lex_state = 14, .external_lex_state = 3}, + [1750] = {.lex_state = 9, .external_lex_state = 3}, + [1751] = {.lex_state = 14, .external_lex_state = 3}, + [1752] = {.lex_state = 14, .external_lex_state = 3}, + [1753] = {.lex_state = 9, .external_lex_state = 3}, + [1754] = {.lex_state = 19, .external_lex_state = 3}, + [1755] = {.lex_state = 14, .external_lex_state = 3}, + [1756] = {.lex_state = 14, .external_lex_state = 3}, + [1757] = {.lex_state = 19, .external_lex_state = 3}, + [1758] = {.lex_state = 25, .external_lex_state = 3}, + [1759] = {.lex_state = 25, .external_lex_state = 3}, + [1760] = {.lex_state = 14, .external_lex_state = 3}, + [1761] = {.lex_state = 19, .external_lex_state = 3}, + [1762] = {.lex_state = 14, .external_lex_state = 3}, + [1763] = {.lex_state = 9, .external_lex_state = 3}, + [1764] = {.lex_state = 14, .external_lex_state = 3}, + [1765] = {.lex_state = 15, .external_lex_state = 3}, + [1766] = {.lex_state = 19, .external_lex_state = 3}, + [1767] = {.lex_state = 14, .external_lex_state = 3}, + [1768] = {.lex_state = 25, .external_lex_state = 3}, + [1769] = {.lex_state = 14, .external_lex_state = 3}, + [1770] = {.lex_state = 14, .external_lex_state = 3}, + [1771] = {.lex_state = 15, .external_lex_state = 3}, + [1772] = {.lex_state = 9, .external_lex_state = 3}, + [1773] = {.lex_state = 25, .external_lex_state = 3}, + [1774] = {.lex_state = 22, .external_lex_state = 3}, + [1775] = {.lex_state = 25, .external_lex_state = 3}, + [1776] = {.lex_state = 9, .external_lex_state = 3}, + [1777] = {.lex_state = 22, .external_lex_state = 3}, + [1778] = {.lex_state = 9, .external_lex_state = 3}, + [1779] = {.lex_state = 9, .external_lex_state = 3}, + [1780] = {.lex_state = 9, .external_lex_state = 3}, + [1781] = {.lex_state = 9, .external_lex_state = 3}, + [1782] = {.lex_state = 9, .external_lex_state = 3}, + [1783] = {.lex_state = 9, .external_lex_state = 3}, + [1784] = {.lex_state = 25, .external_lex_state = 3}, + [1785] = {.lex_state = 14, .external_lex_state = 3}, + [1786] = {.lex_state = 15, .external_lex_state = 3}, + [1787] = {.lex_state = 9, .external_lex_state = 3}, + [1788] = {.lex_state = 25, .external_lex_state = 3}, + [1789] = {.lex_state = 9, .external_lex_state = 3}, + [1790] = {.lex_state = 15, .external_lex_state = 3}, + [1791] = {.lex_state = 15, .external_lex_state = 3}, + [1792] = {.lex_state = 9, .external_lex_state = 3}, + [1793] = {.lex_state = 9, .external_lex_state = 3}, + [1794] = {.lex_state = 9, .external_lex_state = 3}, + [1795] = {.lex_state = 9, .external_lex_state = 3}, + [1796] = {.lex_state = 9, .external_lex_state = 3}, + [1797] = {.lex_state = 9, .external_lex_state = 3}, + [1798] = {.lex_state = 25, .external_lex_state = 3}, + [1799] = {.lex_state = 9, .external_lex_state = 3}, + [1800] = {.lex_state = 25, .external_lex_state = 3}, + [1801] = {.lex_state = 9, .external_lex_state = 3}, + [1802] = {.lex_state = 9, .external_lex_state = 3}, + [1803] = {.lex_state = 9, .external_lex_state = 3}, + [1804] = {.lex_state = 25, .external_lex_state = 3}, + [1805] = {.lex_state = 25, .external_lex_state = 3}, + [1806] = {.lex_state = 9, .external_lex_state = 3}, + [1807] = {.lex_state = 9, .external_lex_state = 3}, + [1808] = {.lex_state = 9, .external_lex_state = 3}, + [1809] = {.lex_state = 25, .external_lex_state = 3}, + [1810] = {.lex_state = 9, .external_lex_state = 3}, + [1811] = {.lex_state = 25, .external_lex_state = 3}, + [1812] = {.lex_state = 25, .external_lex_state = 3}, + [1813] = {.lex_state = 9, .external_lex_state = 3}, + [1814] = {.lex_state = 22, .external_lex_state = 3}, + [1815] = {.lex_state = 25, .external_lex_state = 3}, + [1816] = {.lex_state = 25, .external_lex_state = 3}, + [1817] = {.lex_state = 9, .external_lex_state = 3}, + [1818] = {.lex_state = 9, .external_lex_state = 3}, + [1819] = {.lex_state = 25, .external_lex_state = 3}, + [1820] = {.lex_state = 25, .external_lex_state = 3}, + [1821] = {.lex_state = 9, .external_lex_state = 3}, + [1822] = {.lex_state = 25, .external_lex_state = 3}, + [1823] = {.lex_state = 25, .external_lex_state = 3}, + [1824] = {.lex_state = 9, .external_lex_state = 3}, + [1825] = {.lex_state = 9, .external_lex_state = 3}, + [1826] = {.lex_state = 22, .external_lex_state = 3}, + [1827] = {.lex_state = 9, .external_lex_state = 3}, + [1828] = {.lex_state = 25, .external_lex_state = 3}, + [1829] = {.lex_state = 25, .external_lex_state = 3}, + [1830] = {.lex_state = 9, .external_lex_state = 3}, + [1831] = {.lex_state = 25, .external_lex_state = 3}, + [1832] = {.lex_state = 9, .external_lex_state = 3}, + [1833] = {.lex_state = 25, .external_lex_state = 3}, + [1834] = {.lex_state = 25, .external_lex_state = 3}, + [1835] = {.lex_state = 9, .external_lex_state = 3}, + [1836] = {.lex_state = 25, .external_lex_state = 3}, + [1837] = {.lex_state = 9, .external_lex_state = 3}, + [1838] = {.lex_state = 25, .external_lex_state = 3}, + [1839] = {.lex_state = 25, .external_lex_state = 3}, + [1840] = {.lex_state = 9, .external_lex_state = 3}, + [1841] = {.lex_state = 9, .external_lex_state = 3}, + [1842] = {.lex_state = 9, .external_lex_state = 3}, + [1843] = {.lex_state = 25, .external_lex_state = 3}, + [1844] = {.lex_state = 25, .external_lex_state = 3}, + [1845] = {.lex_state = 9, .external_lex_state = 3}, + [1846] = {.lex_state = 25, .external_lex_state = 3}, + [1847] = {.lex_state = 25, .external_lex_state = 3}, + [1848] = {.lex_state = 25, .external_lex_state = 3}, + [1849] = {.lex_state = 9, .external_lex_state = 3}, + [1850] = {.lex_state = 9, .external_lex_state = 3}, + [1851] = {.lex_state = 9, .external_lex_state = 3}, + [1852] = {.lex_state = 25, .external_lex_state = 3}, + [1853] = {.lex_state = 9, .external_lex_state = 3}, + [1854] = {.lex_state = 25, .external_lex_state = 3}, + [1855] = {.lex_state = 22, .external_lex_state = 3}, + [1856] = {.lex_state = 25, .external_lex_state = 3}, + [1857] = {.lex_state = 9, .external_lex_state = 3}, + [1858] = {.lex_state = 25, .external_lex_state = 3}, + [1859] = {.lex_state = 25, .external_lex_state = 3}, + [1860] = {.lex_state = 9, .external_lex_state = 3}, + [1861] = {.lex_state = 25, .external_lex_state = 3}, + [1862] = {.lex_state = 25, .external_lex_state = 3}, + [1863] = {.lex_state = 9, .external_lex_state = 3}, + [1864] = {.lex_state = 25, .external_lex_state = 3}, + [1865] = {.lex_state = 9, .external_lex_state = 3}, + [1866] = {.lex_state = 22, .external_lex_state = 3}, + [1867] = {.lex_state = 25, .external_lex_state = 3}, + [1868] = {.lex_state = 25, .external_lex_state = 3}, + [1869] = {.lex_state = 25, .external_lex_state = 3}, + [1870] = {.lex_state = 25, .external_lex_state = 3}, + [1871] = {.lex_state = 9, .external_lex_state = 3}, + [1872] = {.lex_state = 25, .external_lex_state = 3}, + [1873] = {.lex_state = 22, .external_lex_state = 3}, + [1874] = {.lex_state = 9, .external_lex_state = 3}, + [1875] = {.lex_state = 9, .external_lex_state = 3}, + [1876] = {.lex_state = 9, .external_lex_state = 3}, + [1877] = {.lex_state = 22, .external_lex_state = 3}, + [1878] = {.lex_state = 9, .external_lex_state = 3}, + [1879] = {.lex_state = 9, .external_lex_state = 3}, + [1880] = {.lex_state = 22, .external_lex_state = 3}, + [1881] = {.lex_state = 15, .external_lex_state = 3}, + [1882] = {.lex_state = 9, .external_lex_state = 3}, + [1883] = {.lex_state = 9, .external_lex_state = 3}, + [1884] = {.lex_state = 9, .external_lex_state = 3}, + [1885] = {.lex_state = 9, .external_lex_state = 3}, + [1886] = {.lex_state = 9, .external_lex_state = 3}, + [1887] = {.lex_state = 9, .external_lex_state = 3}, + [1888] = {.lex_state = 9, .external_lex_state = 3}, + [1889] = {.lex_state = 9, .external_lex_state = 3}, + [1890] = {.lex_state = 19, .external_lex_state = 3}, + [1891] = {.lex_state = 9, .external_lex_state = 3}, + [1892] = {.lex_state = 9, .external_lex_state = 3}, + [1893] = {.lex_state = 9, .external_lex_state = 3}, + [1894] = {.lex_state = 9, .external_lex_state = 3}, + [1895] = {.lex_state = 9, .external_lex_state = 3}, + [1896] = {.lex_state = 9, .external_lex_state = 3}, + [1897] = {.lex_state = 22, .external_lex_state = 3}, + [1898] = {.lex_state = 9, .external_lex_state = 3}, + [1899] = {.lex_state = 22, .external_lex_state = 3}, + [1900] = {.lex_state = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 9, .external_lex_state = 3}, + [1902] = {.lex_state = 9, .external_lex_state = 3}, + [1903] = {.lex_state = 22, .external_lex_state = 3}, + [1904] = {.lex_state = 22, .external_lex_state = 3}, + [1905] = {.lex_state = 22, .external_lex_state = 3}, + [1906] = {.lex_state = 22, .external_lex_state = 3}, + [1907] = {.lex_state = 9, .external_lex_state = 3}, + [1908] = {.lex_state = 9, .external_lex_state = 3}, + [1909] = {.lex_state = 9, .external_lex_state = 3}, + [1910] = {.lex_state = 9, .external_lex_state = 3}, + [1911] = {.lex_state = 9, .external_lex_state = 3}, + [1912] = {.lex_state = 9, .external_lex_state = 3}, + [1913] = {.lex_state = 9, .external_lex_state = 3}, + [1914] = {.lex_state = 9, .external_lex_state = 3}, + [1915] = {.lex_state = 22, .external_lex_state = 3}, + [1916] = {.lex_state = 22, .external_lex_state = 3}, + [1917] = {.lex_state = 9, .external_lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 3}, + [1919] = {.lex_state = 9, .external_lex_state = 3}, + [1920] = {.lex_state = 9, .external_lex_state = 3}, + [1921] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 66, .external_lex_state = 3}, + [1923] = {.lex_state = 66, .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 = 9, .external_lex_state = 3}, + [1928] = {.lex_state = 9, .external_lex_state = 3}, + [1929] = {.lex_state = 9, .external_lex_state = 3}, + [1930] = {.lex_state = 66, .external_lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1932] = {.lex_state = 0, .external_lex_state = 3}, + [1933] = {.lex_state = 66, .external_lex_state = 3}, + [1934] = {.lex_state = 9, .external_lex_state = 3}, + [1935] = {.lex_state = 66, .external_lex_state = 3}, + [1936] = {.lex_state = 22, .external_lex_state = 3}, + [1937] = {.lex_state = 9, .external_lex_state = 3}, + [1938] = {.lex_state = 0, .external_lex_state = 3}, + [1939] = {.lex_state = 9, .external_lex_state = 3}, + [1940] = {.lex_state = 9, .external_lex_state = 3}, + [1941] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 9, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1944] = {.lex_state = 9, .external_lex_state = 3}, + [1945] = {.lex_state = 22, .external_lex_state = 3}, + [1946] = {.lex_state = 9, .external_lex_state = 3}, + [1947] = {.lex_state = 9, .external_lex_state = 3}, + [1948] = {.lex_state = 9, .external_lex_state = 3}, + [1949] = {.lex_state = 9, .external_lex_state = 3}, + [1950] = {.lex_state = 22, .external_lex_state = 3}, + [1951] = {.lex_state = 22, .external_lex_state = 3}, + [1952] = {.lex_state = 9, .external_lex_state = 3}, + [1953] = {.lex_state = 22, .external_lex_state = 3}, + [1954] = {.lex_state = 22, .external_lex_state = 3}, + [1955] = {.lex_state = 22, .external_lex_state = 3}, + [1956] = {.lex_state = 0, .external_lex_state = 3}, + [1957] = {.lex_state = 9, .external_lex_state = 3}, + [1958] = {.lex_state = 15, .external_lex_state = 3}, + [1959] = {.lex_state = 9, .external_lex_state = 3}, + [1960] = {.lex_state = 0, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 22, .external_lex_state = 3}, + [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1964] = {.lex_state = 9, .external_lex_state = 3}, + [1965] = {.lex_state = 66, .external_lex_state = 3}, + [1966] = {.lex_state = 9, .external_lex_state = 3}, + [1967] = {.lex_state = 0, .external_lex_state = 3}, + [1968] = {.lex_state = 0, .external_lex_state = 3}, + [1969] = {.lex_state = 9, .external_lex_state = 3}, + [1970] = {.lex_state = 9, .external_lex_state = 3}, + [1971] = {.lex_state = 12, .external_lex_state = 3}, + [1972] = {.lex_state = 9, .external_lex_state = 3}, + [1973] = {.lex_state = 16, .external_lex_state = 3}, + [1974] = {.lex_state = 0, .external_lex_state = 3}, + [1975] = {.lex_state = 9, .external_lex_state = 3}, + [1976] = {.lex_state = 25, .external_lex_state = 3}, + [1977] = {.lex_state = 9, .external_lex_state = 3}, + [1978] = {.lex_state = 9, .external_lex_state = 3}, + [1979] = {.lex_state = 9, .external_lex_state = 3}, + [1980] = {.lex_state = 9, .external_lex_state = 3}, + [1981] = {.lex_state = 9, .external_lex_state = 3}, + [1982] = {.lex_state = 9, .external_lex_state = 3}, + [1983] = {.lex_state = 9, .external_lex_state = 3}, + [1984] = {.lex_state = 9, .external_lex_state = 3}, + [1985] = {.lex_state = 12, .external_lex_state = 3}, + [1986] = {.lex_state = 9, .external_lex_state = 3}, + [1987] = {.lex_state = 9, .external_lex_state = 3}, + [1988] = {.lex_state = 9, .external_lex_state = 3}, + [1989] = {.lex_state = 9, .external_lex_state = 3}, + [1990] = {.lex_state = 9, .external_lex_state = 3}, + [1991] = {.lex_state = 9, .external_lex_state = 3}, + [1992] = {.lex_state = 9, .external_lex_state = 3}, + [1993] = {.lex_state = 25, .external_lex_state = 3}, + [1994] = {.lex_state = 9, .external_lex_state = 3}, + [1995] = {.lex_state = 9, .external_lex_state = 3}, + [1996] = {.lex_state = 16, .external_lex_state = 3}, + [1997] = {.lex_state = 9, .external_lex_state = 3}, + [1998] = {.lex_state = 9, .external_lex_state = 3}, + [1999] = {.lex_state = 9, .external_lex_state = 3}, + [2000] = {.lex_state = 15, .external_lex_state = 3}, + [2001] = {.lex_state = 9, .external_lex_state = 3}, + [2002] = {.lex_state = 9, .external_lex_state = 3}, + [2003] = {.lex_state = 9, .external_lex_state = 3}, + [2004] = {.lex_state = 9, .external_lex_state = 3}, + [2005] = {.lex_state = 9, .external_lex_state = 3}, + [2006] = {.lex_state = 16, .external_lex_state = 3}, + [2007] = {.lex_state = 9, .external_lex_state = 3}, + [2008] = {.lex_state = 9, .external_lex_state = 3}, + [2009] = {.lex_state = 9, .external_lex_state = 3}, + [2010] = {.lex_state = 9, .external_lex_state = 3}, + [2011] = {.lex_state = 25, .external_lex_state = 3}, + [2012] = {.lex_state = 9, .external_lex_state = 3}, + [2013] = {.lex_state = 25, .external_lex_state = 3}, + [2014] = {.lex_state = 25, .external_lex_state = 3}, + [2015] = {.lex_state = 9, .external_lex_state = 3}, + [2016] = {.lex_state = 9, .external_lex_state = 3}, + [2017] = {.lex_state = 9, .external_lex_state = 3}, + [2018] = {.lex_state = 16, .external_lex_state = 3}, + [2019] = {.lex_state = 9, .external_lex_state = 3}, + [2020] = {.lex_state = 9, .external_lex_state = 3}, + [2021] = {.lex_state = 9, .external_lex_state = 3}, + [2022] = {.lex_state = 9, .external_lex_state = 3}, + [2023] = {.lex_state = 25, .external_lex_state = 3}, + [2024] = {.lex_state = 9, .external_lex_state = 3}, + [2025] = {.lex_state = 25, .external_lex_state = 3}, + [2026] = {.lex_state = 9, .external_lex_state = 3}, + [2027] = {.lex_state = 19, .external_lex_state = 3}, + [2028] = {.lex_state = 25, .external_lex_state = 3}, + [2029] = {.lex_state = 9, .external_lex_state = 3}, + [2030] = {.lex_state = 9, .external_lex_state = 3}, + [2031] = {.lex_state = 9, .external_lex_state = 3}, + [2032] = {.lex_state = 9, .external_lex_state = 3}, + [2033] = {.lex_state = 9, .external_lex_state = 3}, + [2034] = {.lex_state = 9, .external_lex_state = 3}, + [2035] = {.lex_state = 9, .external_lex_state = 3}, + [2036] = {.lex_state = 9, .external_lex_state = 3}, + [2037] = {.lex_state = 9, .external_lex_state = 3}, + [2038] = {.lex_state = 66, .external_lex_state = 3}, + [2039] = {.lex_state = 9, .external_lex_state = 3}, + [2040] = {.lex_state = 25, .external_lex_state = 3}, + [2041] = {.lex_state = 16, .external_lex_state = 3}, + [2042] = {.lex_state = 25, .external_lex_state = 3}, + [2043] = {.lex_state = 19, .external_lex_state = 3}, + [2044] = {.lex_state = 9, .external_lex_state = 3}, + [2045] = {.lex_state = 0, .external_lex_state = 3}, + [2046] = {.lex_state = 9, .external_lex_state = 3}, + [2047] = {.lex_state = 66, .external_lex_state = 3}, + [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2049] = {.lex_state = 22, .external_lex_state = 3}, + [2050] = {.lex_state = 9, .external_lex_state = 3}, + [2051] = {.lex_state = 66, .external_lex_state = 3}, + [2052] = {.lex_state = 9, .external_lex_state = 3}, + [2053] = {.lex_state = 9, .external_lex_state = 3}, + [2054] = {.lex_state = 9, .external_lex_state = 3}, + [2055] = {.lex_state = 9, .external_lex_state = 3}, + [2056] = {.lex_state = 9, .external_lex_state = 3}, + [2057] = {.lex_state = 9, .external_lex_state = 3}, + [2058] = {.lex_state = 9, .external_lex_state = 3}, + [2059] = {.lex_state = 66, .external_lex_state = 3}, + [2060] = {.lex_state = 16, .external_lex_state = 3}, + [2061] = {.lex_state = 9, .external_lex_state = 3}, + [2062] = {.lex_state = 9, .external_lex_state = 3}, + [2063] = {.lex_state = 9, .external_lex_state = 3}, + [2064] = {.lex_state = 9, .external_lex_state = 3}, + [2065] = {.lex_state = 9, .external_lex_state = 3}, + [2066] = {.lex_state = 25, .external_lex_state = 3}, + [2067] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 9, .external_lex_state = 3}, + [2070] = {.lex_state = 9, .external_lex_state = 3}, + [2071] = {.lex_state = 25, .external_lex_state = 3}, + [2072] = {.lex_state = 9, .external_lex_state = 3}, + [2073] = {.lex_state = 9, .external_lex_state = 3}, + [2074] = {.lex_state = 9, .external_lex_state = 3}, + [2075] = {.lex_state = 15, .external_lex_state = 3}, + [2076] = {.lex_state = 25, .external_lex_state = 3}, + [2077] = {.lex_state = 9, .external_lex_state = 3}, + [2078] = {.lex_state = 9, .external_lex_state = 3}, + [2079] = {.lex_state = 15, .external_lex_state = 3}, + [2080] = {.lex_state = 25, .external_lex_state = 3}, + [2081] = {.lex_state = 25, .external_lex_state = 3}, + [2082] = {.lex_state = 25, .external_lex_state = 3}, + [2083] = {.lex_state = 66, .external_lex_state = 3}, + [2084] = {.lex_state = 9, .external_lex_state = 3}, + [2085] = {.lex_state = 9, .external_lex_state = 3}, + [2086] = {.lex_state = 9, .external_lex_state = 3}, + [2087] = {.lex_state = 25, .external_lex_state = 3}, + [2088] = {.lex_state = 9, .external_lex_state = 3}, + [2089] = {.lex_state = 25, .external_lex_state = 3}, + [2090] = {.lex_state = 25, .external_lex_state = 3}, + [2091] = {.lex_state = 25, .external_lex_state = 3}, + [2092] = {.lex_state = 0, .external_lex_state = 3}, + [2093] = {.lex_state = 0, .external_lex_state = 3}, + [2094] = {.lex_state = 9, .external_lex_state = 3}, + [2095] = {.lex_state = 25, .external_lex_state = 3}, + [2096] = {.lex_state = 25, .external_lex_state = 3}, + [2097] = {.lex_state = 9, .external_lex_state = 3}, + [2098] = {.lex_state = 15, .external_lex_state = 3}, + [2099] = {.lex_state = 9, .external_lex_state = 3}, + [2100] = {.lex_state = 15, .external_lex_state = 3}, + [2101] = {.lex_state = 25, .external_lex_state = 3}, + [2102] = {.lex_state = 0, .external_lex_state = 3}, + [2103] = {.lex_state = 9, .external_lex_state = 3}, + [2104] = {.lex_state = 9, .external_lex_state = 3}, + [2105] = {.lex_state = 25, .external_lex_state = 3}, + [2106] = {.lex_state = 9, .external_lex_state = 3}, + [2107] = {.lex_state = 0, .external_lex_state = 3}, + [2108] = {.lex_state = 15, .external_lex_state = 3}, + [2109] = {.lex_state = 25, .external_lex_state = 3}, + [2110] = {.lex_state = 0, .external_lex_state = 3}, + [2111] = {.lex_state = 25, .external_lex_state = 3}, + [2112] = {.lex_state = 25, .external_lex_state = 3}, + [2113] = {.lex_state = 9, .external_lex_state = 3}, + [2114] = {.lex_state = 9, .external_lex_state = 3}, + [2115] = {.lex_state = 15, .external_lex_state = 3}, + [2116] = {.lex_state = 9, .external_lex_state = 3}, + [2117] = {.lex_state = 25, .external_lex_state = 3}, + [2118] = {.lex_state = 9, .external_lex_state = 3}, + [2119] = {.lex_state = 66, .external_lex_state = 3}, + [2120] = {.lex_state = 9, .external_lex_state = 3}, + [2121] = {.lex_state = 9, .external_lex_state = 3}, + [2122] = {.lex_state = 0, .external_lex_state = 3}, + [2123] = {.lex_state = 9, .external_lex_state = 3}, + [2124] = {.lex_state = 25, .external_lex_state = 3}, + [2125] = {.lex_state = 0, .external_lex_state = 3}, + [2126] = {.lex_state = 25, .external_lex_state = 3}, + [2127] = {.lex_state = 66, .external_lex_state = 3}, + [2128] = {.lex_state = 9, .external_lex_state = 3}, + [2129] = {.lex_state = 9, .external_lex_state = 4}, + [2130] = {.lex_state = 15, .external_lex_state = 3}, + [2131] = {.lex_state = 15, .external_lex_state = 3}, + [2132] = {.lex_state = 9, .external_lex_state = 3}, + [2133] = {.lex_state = 9, .external_lex_state = 3}, + [2134] = {.lex_state = 9, .external_lex_state = 3}, + [2135] = {.lex_state = 9, .external_lex_state = 3}, + [2136] = {.lex_state = 66, .external_lex_state = 3}, + [2137] = {.lex_state = 9, .external_lex_state = 3}, + [2138] = {.lex_state = 9, .external_lex_state = 3}, + [2139] = {.lex_state = 9, .external_lex_state = 4}, + [2140] = {.lex_state = 0, .external_lex_state = 3}, + [2141] = {.lex_state = 9, .external_lex_state = 3}, + [2142] = {.lex_state = 9, .external_lex_state = 4}, + [2143] = {.lex_state = 9, .external_lex_state = 3}, + [2144] = {.lex_state = 0, .external_lex_state = 3}, + [2145] = {.lex_state = 9, .external_lex_state = 3}, + [2146] = {.lex_state = 66, .external_lex_state = 3}, + [2147] = {.lex_state = 66, .external_lex_state = 3}, + [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2149] = {.lex_state = 0, .external_lex_state = 3}, + [2150] = {.lex_state = 66, .external_lex_state = 3}, + [2151] = {.lex_state = 66, .external_lex_state = 3}, + [2152] = {.lex_state = 66, .external_lex_state = 3}, + [2153] = {.lex_state = 66, .external_lex_state = 3}, + [2154] = {.lex_state = 0, .external_lex_state = 3}, + [2155] = {.lex_state = 15, .external_lex_state = 3}, + [2156] = {.lex_state = 15, .external_lex_state = 3}, + [2157] = {.lex_state = 15, .external_lex_state = 3}, + [2158] = {.lex_state = 15, .external_lex_state = 3}, + [2159] = {.lex_state = 66, .external_lex_state = 3}, + [2160] = {.lex_state = 66, .external_lex_state = 3}, + [2161] = {.lex_state = 25, .external_lex_state = 3}, + [2162] = {.lex_state = 66, .external_lex_state = 3}, + [2163] = {.lex_state = 15, .external_lex_state = 3}, + [2164] = {.lex_state = 15, .external_lex_state = 3}, + [2165] = {.lex_state = 15, .external_lex_state = 3}, + [2166] = {.lex_state = 15, .external_lex_state = 3}, + [2167] = {.lex_state = 66, .external_lex_state = 3}, + [2168] = {.lex_state = 0, .external_lex_state = 3}, + [2169] = {.lex_state = 9, .external_lex_state = 3}, + [2170] = {.lex_state = 15, .external_lex_state = 3}, + [2171] = {.lex_state = 9, .external_lex_state = 3}, + [2172] = {.lex_state = 9, .external_lex_state = 3}, + [2173] = {.lex_state = 66, .external_lex_state = 3}, + [2174] = {.lex_state = 9, .external_lex_state = 3}, + [2175] = {.lex_state = 25, .external_lex_state = 3}, + [2176] = {.lex_state = 9, .external_lex_state = 4}, + [2177] = {.lex_state = 66, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, + [2179] = {.lex_state = 9, .external_lex_state = 4}, + [2180] = {.lex_state = 26, .external_lex_state = 3}, + [2181] = {.lex_state = 0, .external_lex_state = 3}, + [2182] = {.lex_state = 0, .external_lex_state = 3}, + [2183] = {.lex_state = 26, .external_lex_state = 3}, + [2184] = {.lex_state = 25, .external_lex_state = 3}, + [2185] = {.lex_state = 66, .external_lex_state = 3}, + [2186] = {.lex_state = 66, .external_lex_state = 3}, + [2187] = {.lex_state = 66, .external_lex_state = 3}, + [2188] = {.lex_state = 66, .external_lex_state = 3}, + [2189] = {.lex_state = 66, .external_lex_state = 3}, + [2190] = {.lex_state = 26, .external_lex_state = 3}, + [2191] = {.lex_state = 9, .external_lex_state = 4}, + [2192] = {.lex_state = 26, .external_lex_state = 3}, + [2193] = {.lex_state = 66, .external_lex_state = 3}, + [2194] = {.lex_state = 66, .external_lex_state = 3}, + [2195] = {.lex_state = 66, .external_lex_state = 3}, + [2196] = {.lex_state = 66, .external_lex_state = 3}, + [2197] = {.lex_state = 0, .external_lex_state = 3}, + [2198] = {.lex_state = 9, .external_lex_state = 4}, + [2199] = {.lex_state = 0, .external_lex_state = 3}, + [2200] = {.lex_state = 66, .external_lex_state = 3}, + [2201] = {.lex_state = 9, .external_lex_state = 3}, + [2202] = {.lex_state = 9, .external_lex_state = 4}, + [2203] = {.lex_state = 9, .external_lex_state = 4}, + [2204] = {.lex_state = 15, .external_lex_state = 3}, + [2205] = {.lex_state = 9, .external_lex_state = 3}, + [2206] = {.lex_state = 66, .external_lex_state = 3}, + [2207] = {.lex_state = 25, .external_lex_state = 3}, + [2208] = {.lex_state = 0, .external_lex_state = 3}, + [2209] = {.lex_state = 9, .external_lex_state = 3}, + [2210] = {.lex_state = 0, .external_lex_state = 3}, + [2211] = {.lex_state = 9, .external_lex_state = 3}, + [2212] = {.lex_state = 9, .external_lex_state = 4}, + [2213] = {.lex_state = 25, .external_lex_state = 3}, + [2214] = {.lex_state = 66, .external_lex_state = 3}, + [2215] = {.lex_state = 25, .external_lex_state = 3}, + [2216] = {.lex_state = 9, .external_lex_state = 3}, + [2217] = {.lex_state = 66, .external_lex_state = 3}, + [2218] = {.lex_state = 9, .external_lex_state = 3}, + [2219] = {.lex_state = 9, .external_lex_state = 3}, + [2220] = {.lex_state = 9, .external_lex_state = 3}, + [2221] = {.lex_state = 9, .external_lex_state = 3}, + [2222] = {.lex_state = 9, .external_lex_state = 3}, + [2223] = {.lex_state = 0, .external_lex_state = 3}, + [2224] = {.lex_state = 25, .external_lex_state = 3}, + [2225] = {.lex_state = 9, .external_lex_state = 3}, + [2226] = {.lex_state = 25, .external_lex_state = 3}, + [2227] = {.lex_state = 9, .external_lex_state = 3}, + [2228] = {.lex_state = 66, .external_lex_state = 3}, + [2229] = {.lex_state = 9, .external_lex_state = 3}, + [2230] = {.lex_state = 25, .external_lex_state = 3}, + [2231] = {.lex_state = 66, .external_lex_state = 3}, + [2232] = {.lex_state = 66, .external_lex_state = 3}, + [2233] = {.lex_state = 9, .external_lex_state = 3}, + [2234] = {.lex_state = 66, .external_lex_state = 3}, + [2235] = {.lex_state = 0, .external_lex_state = 3}, + [2236] = {.lex_state = 66, .external_lex_state = 3}, + [2237] = {.lex_state = 9, .external_lex_state = 4}, + [2238] = {.lex_state = 66, .external_lex_state = 3}, + [2239] = {.lex_state = 0, .external_lex_state = 3}, + [2240] = {.lex_state = 25, .external_lex_state = 3}, + [2241] = {.lex_state = 66, .external_lex_state = 3}, + [2242] = {.lex_state = 25, .external_lex_state = 3}, + [2243] = {.lex_state = 25, .external_lex_state = 3}, + [2244] = {.lex_state = 0, .external_lex_state = 3}, + [2245] = {.lex_state = 0, .external_lex_state = 3}, + [2246] = {.lex_state = 66, .external_lex_state = 3}, + [2247] = {.lex_state = 9, .external_lex_state = 3}, + [2248] = {.lex_state = 0, .external_lex_state = 3}, + [2249] = {.lex_state = 9, .external_lex_state = 4}, + [2250] = {.lex_state = 66, .external_lex_state = 3}, + [2251] = {.lex_state = 66, .external_lex_state = 3}, + [2252] = {.lex_state = 66, .external_lex_state = 3}, + [2253] = {.lex_state = 25, .external_lex_state = 3}, + [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2255] = {.lex_state = 0, .external_lex_state = 3}, + [2256] = {.lex_state = 0, .external_lex_state = 3}, + [2257] = {.lex_state = 9, .external_lex_state = 4}, + [2258] = {.lex_state = 9, .external_lex_state = 3}, + [2259] = {.lex_state = 66, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, + [2261] = {.lex_state = 0, .external_lex_state = 3}, + [2262] = {.lex_state = 66, .external_lex_state = 3}, + [2263] = {.lex_state = 0, .external_lex_state = 3}, + [2264] = {.lex_state = 0, .external_lex_state = 3}, + [2265] = {.lex_state = 7, .external_lex_state = 3}, + [2266] = {.lex_state = 9, .external_lex_state = 3}, + [2267] = {.lex_state = 9, .external_lex_state = 3}, + [2268] = {.lex_state = 0, .external_lex_state = 3}, + [2269] = {.lex_state = 0, .external_lex_state = 3}, + [2270] = {.lex_state = 0, .external_lex_state = 3}, + [2271] = {.lex_state = 16, .external_lex_state = 3}, + [2272] = {.lex_state = 0, .external_lex_state = 3}, + [2273] = {.lex_state = 0, .external_lex_state = 3}, + [2274] = {.lex_state = 7, .external_lex_state = 3}, + [2275] = {.lex_state = 0, .external_lex_state = 3}, + [2276] = {.lex_state = 0, .external_lex_state = 3}, + [2277] = {.lex_state = 9, .external_lex_state = 3}, + [2278] = {.lex_state = 0, .external_lex_state = 3}, + [2279] = {.lex_state = 0, .external_lex_state = 3}, + [2280] = {.lex_state = 66, .external_lex_state = 3}, + [2281] = {.lex_state = 0, .external_lex_state = 3}, + [2282] = {.lex_state = 9, .external_lex_state = 3}, + [2283] = {.lex_state = 66, .external_lex_state = 3}, + [2284] = {.lex_state = 0, .external_lex_state = 3}, + [2285] = {.lex_state = 66, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, + [2287] = {.lex_state = 7, .external_lex_state = 3}, + [2288] = {.lex_state = 66, .external_lex_state = 3}, + [2289] = {.lex_state = 0, .external_lex_state = 3}, + [2290] = {.lex_state = 9, .external_lex_state = 3}, + [2291] = {.lex_state = 7, .external_lex_state = 3}, + [2292] = {.lex_state = 66, .external_lex_state = 3}, + [2293] = {.lex_state = 0, .external_lex_state = 3}, + [2294] = {.lex_state = 9, .external_lex_state = 3}, + [2295] = {.lex_state = 66, .external_lex_state = 3}, + [2296] = {.lex_state = 7, .external_lex_state = 3}, + [2297] = {.lex_state = 7, .external_lex_state = 3}, + [2298] = {.lex_state = 0, .external_lex_state = 3}, + [2299] = {.lex_state = 9, .external_lex_state = 3}, + [2300] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 66, .external_lex_state = 3}, + [2302] = {.lex_state = 66, .external_lex_state = 3}, + [2303] = {.lex_state = 66, .external_lex_state = 3}, + [2304] = {.lex_state = 0, .external_lex_state = 3}, + [2305] = {.lex_state = 0, .external_lex_state = 3}, + [2306] = {.lex_state = 66, .external_lex_state = 3}, + [2307] = {.lex_state = 66, .external_lex_state = 3}, + [2308] = {.lex_state = 66, .external_lex_state = 3}, + [2309] = {.lex_state = 0, .external_lex_state = 3}, + [2310] = {.lex_state = 0, .external_lex_state = 3}, + [2311] = {.lex_state = 0, .external_lex_state = 3}, + [2312] = {.lex_state = 9, .external_lex_state = 3}, + [2313] = {.lex_state = 9, .external_lex_state = 3}, + [2314] = {.lex_state = 66, .external_lex_state = 3}, + [2315] = {.lex_state = 7, .external_lex_state = 3}, + [2316] = {.lex_state = 66, .external_lex_state = 3}, + [2317] = {.lex_state = 0, .external_lex_state = 3}, + [2318] = {.lex_state = 0, .external_lex_state = 3}, + [2319] = {.lex_state = 7, .external_lex_state = 3}, + [2320] = {.lex_state = 0, .external_lex_state = 3}, + [2321] = {.lex_state = 0, .external_lex_state = 3}, + [2322] = {.lex_state = 66, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .external_lex_state = 3}, + [2324] = {.lex_state = 9, .external_lex_state = 3}, + [2325] = {.lex_state = 0, .external_lex_state = 3}, + [2326] = {.lex_state = 0, .external_lex_state = 3}, + [2327] = {.lex_state = 0, .external_lex_state = 3}, + [2328] = {.lex_state = 0, .external_lex_state = 3}, + [2329] = {.lex_state = 0, .external_lex_state = 3}, + [2330] = {.lex_state = 9, .external_lex_state = 3}, + [2331] = {.lex_state = 9, .external_lex_state = 3}, + [2332] = {.lex_state = 0, .external_lex_state = 3}, + [2333] = {.lex_state = 0, .external_lex_state = 3}, + [2334] = {.lex_state = 0, .external_lex_state = 3}, + [2335] = {.lex_state = 0, .external_lex_state = 3}, + [2336] = {.lex_state = 15, .external_lex_state = 3}, + [2337] = {.lex_state = 66, .external_lex_state = 3}, + [2338] = {.lex_state = 0, .external_lex_state = 3}, + [2339] = {.lex_state = 66, .external_lex_state = 3}, + [2340] = {.lex_state = 66, .external_lex_state = 3}, + [2341] = {.lex_state = 0, .external_lex_state = 3}, + [2342] = {.lex_state = 9, .external_lex_state = 3}, + [2343] = {.lex_state = 0, .external_lex_state = 3}, + [2344] = {.lex_state = 66, .external_lex_state = 3}, + [2345] = {.lex_state = 66, .external_lex_state = 3}, + [2346] = {.lex_state = 0, .external_lex_state = 3}, + [2347] = {.lex_state = 0, .external_lex_state = 3}, + [2348] = {.lex_state = 9, .external_lex_state = 3}, + [2349] = {.lex_state = 0, .external_lex_state = 3}, + [2350] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .external_lex_state = 3}, + [2352] = {.lex_state = 0, .external_lex_state = 3}, + [2353] = {.lex_state = 9, .external_lex_state = 3}, + [2354] = {.lex_state = 66, .external_lex_state = 3}, + [2355] = {.lex_state = 0, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 9, .external_lex_state = 3}, + [2358] = {.lex_state = 0, .external_lex_state = 3}, + [2359] = {.lex_state = 0, .external_lex_state = 3}, + [2360] = {.lex_state = 7, .external_lex_state = 3}, + [2361] = {.lex_state = 7, .external_lex_state = 3}, + [2362] = {.lex_state = 7, .external_lex_state = 3}, + [2363] = {.lex_state = 0, .external_lex_state = 3}, + [2364] = {.lex_state = 7, .external_lex_state = 3}, + [2365] = {.lex_state = 66, .external_lex_state = 3}, + [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 0, .external_lex_state = 3}, + [2368] = {.lex_state = 0, .external_lex_state = 3}, + [2369] = {.lex_state = 66, .external_lex_state = 3}, + [2370] = {.lex_state = 66, .external_lex_state = 3}, + [2371] = {.lex_state = 0, .external_lex_state = 3}, + [2372] = {.lex_state = 7, .external_lex_state = 3}, + [2373] = {.lex_state = 0, .external_lex_state = 3}, + [2374] = {.lex_state = 66, .external_lex_state = 3}, + [2375] = {.lex_state = 7, .external_lex_state = 3}, + [2376] = {.lex_state = 15, .external_lex_state = 3}, + [2377] = {.lex_state = 66, .external_lex_state = 3}, + [2378] = {.lex_state = 0, .external_lex_state = 3}, + [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 16, .external_lex_state = 3}, + [2381] = {.lex_state = 0, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2383] = {.lex_state = 0, .external_lex_state = 3}, + [2384] = {.lex_state = 66, .external_lex_state = 3}, + [2385] = {.lex_state = 0, .external_lex_state = 3}, + [2386] = {.lex_state = 7, .external_lex_state = 3}, + [2387] = {.lex_state = 7, .external_lex_state = 3}, + [2388] = {.lex_state = 66, .external_lex_state = 3}, + [2389] = {.lex_state = 0, .external_lex_state = 3}, + [2390] = {.lex_state = 0, .external_lex_state = 3}, + [2391] = {.lex_state = 0, .external_lex_state = 3}, + [2392] = {.lex_state = 0, .external_lex_state = 3}, + [2393] = {.lex_state = 0, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, + [2396] = {.lex_state = 0, .external_lex_state = 3}, + [2397] = {.lex_state = 66, .external_lex_state = 3}, + [2398] = {.lex_state = 0, .external_lex_state = 3}, + [2399] = {.lex_state = 0, .external_lex_state = 3}, + [2400] = {.lex_state = 0, .external_lex_state = 3}, + [2401] = {.lex_state = 66, .external_lex_state = 3}, + [2402] = {.lex_state = 66, .external_lex_state = 3}, + [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2404] = {.lex_state = 0, .external_lex_state = 3}, + [2405] = {.lex_state = 0, .external_lex_state = 3}, + [2406] = {.lex_state = 0, .external_lex_state = 3}, + [2407] = {.lex_state = 66, .external_lex_state = 3}, + [2408] = {.lex_state = 16, .external_lex_state = 3}, + [2409] = {.lex_state = 0, .external_lex_state = 3}, + [2410] = {.lex_state = 0, .external_lex_state = 3}, + [2411] = {.lex_state = 0, .external_lex_state = 3}, + [2412] = {.lex_state = 66, .external_lex_state = 3}, + [2413] = {.lex_state = 66, .external_lex_state = 3}, + [2414] = {.lex_state = 66, .external_lex_state = 3}, + [2415] = {.lex_state = 7, .external_lex_state = 3}, + [2416] = {.lex_state = 7, .external_lex_state = 3}, + [2417] = {.lex_state = 0, .external_lex_state = 3}, + [2418] = {.lex_state = 66, .external_lex_state = 3}, + [2419] = {.lex_state = 25, .external_lex_state = 3}, + [2420] = {.lex_state = 66, .external_lex_state = 3}, + [2421] = {.lex_state = 0, .external_lex_state = 3}, + [2422] = {.lex_state = 66, .external_lex_state = 3}, + [2423] = {.lex_state = 0, .external_lex_state = 3}, + [2424] = {.lex_state = 0, .external_lex_state = 3}, + [2425] = {.lex_state = 9, .external_lex_state = 3}, + [2426] = {.lex_state = 0, .external_lex_state = 3}, + [2427] = {.lex_state = 66, .external_lex_state = 3}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2430] = {.lex_state = 66, .external_lex_state = 3}, + [2431] = {.lex_state = 7, .external_lex_state = 3}, + [2432] = {.lex_state = 66, .external_lex_state = 3}, + [2433] = {.lex_state = 66, .external_lex_state = 3}, + [2434] = {.lex_state = 66, .external_lex_state = 3}, + [2435] = {.lex_state = 0, .external_lex_state = 3}, + [2436] = {.lex_state = 0, .external_lex_state = 3}, + [2437] = {.lex_state = 66, .external_lex_state = 3}, + [2438] = {.lex_state = 66, .external_lex_state = 3}, + [2439] = {.lex_state = 0, .external_lex_state = 3}, + [2440] = {.lex_state = 7, .external_lex_state = 3}, + [2441] = {.lex_state = 0, .external_lex_state = 3}, + [2442] = {.lex_state = 0, .external_lex_state = 3}, + [2443] = {.lex_state = 66, .external_lex_state = 3}, + [2444] = {.lex_state = 0, .external_lex_state = 3}, + [2445] = {.lex_state = 66, .external_lex_state = 3}, + [2446] = {.lex_state = 66, .external_lex_state = 3}, + [2447] = {.lex_state = 0, .external_lex_state = 3}, + [2448] = {.lex_state = 9, .external_lex_state = 3}, + [2449] = {.lex_state = 9, .external_lex_state = 3}, + [2450] = {.lex_state = 9, .external_lex_state = 3}, + [2451] = {.lex_state = 15, .external_lex_state = 3}, + [2452] = {.lex_state = 66, .external_lex_state = 3}, + [2453] = {.lex_state = 15, .external_lex_state = 3}, + [2454] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 7, .external_lex_state = 3}, + [2456] = {.lex_state = 15, .external_lex_state = 3}, + [2457] = {.lex_state = 0, .external_lex_state = 3}, + [2458] = {.lex_state = 0, .external_lex_state = 3}, + [2459] = {.lex_state = 0, .external_lex_state = 3}, + [2460] = {.lex_state = 0, .external_lex_state = 3}, + [2461] = {.lex_state = 0, .external_lex_state = 3}, + [2462] = {.lex_state = 66, .external_lex_state = 3}, + [2463] = {.lex_state = 0, .external_lex_state = 3}, + [2464] = {.lex_state = 0, .external_lex_state = 3}, + [2465] = {.lex_state = 66, .external_lex_state = 3}, + [2466] = {.lex_state = 0, .external_lex_state = 3}, + [2467] = {.lex_state = 15, .external_lex_state = 3}, + [2468] = {.lex_state = 9, .external_lex_state = 3}, + [2469] = {.lex_state = 66, .external_lex_state = 3}, + [2470] = {.lex_state = 0, .external_lex_state = 3}, + [2471] = {.lex_state = 66, .external_lex_state = 3}, + [2472] = {.lex_state = 15, .external_lex_state = 3}, + [2473] = {.lex_state = 0, .external_lex_state = 3}, + [2474] = {.lex_state = 0, .external_lex_state = 3}, + [2475] = {.lex_state = 0, .external_lex_state = 3}, + [2476] = {.lex_state = 0, .external_lex_state = 3}, + [2477] = {.lex_state = 66, .external_lex_state = 3}, + [2478] = {.lex_state = 9, .external_lex_state = 3}, + [2479] = {.lex_state = 7, .external_lex_state = 3}, + [2480] = {.lex_state = 15, .external_lex_state = 3}, + [2481] = {.lex_state = 15, .external_lex_state = 3}, + [2482] = {.lex_state = 15, .external_lex_state = 3}, + [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2484] = {.lex_state = 0, .external_lex_state = 3}, + [2485] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 0, .external_lex_state = 3}, + [2487] = {.lex_state = 0, .external_lex_state = 3}, + [2488] = {.lex_state = 0, .external_lex_state = 3}, + [2489] = {.lex_state = 66, .external_lex_state = 3}, + [2490] = {.lex_state = 0, .external_lex_state = 3}, + [2491] = {.lex_state = 66, .external_lex_state = 3}, + [2492] = {.lex_state = 0, .external_lex_state = 3}, + [2493] = {.lex_state = 0, .external_lex_state = 3}, + [2494] = {.lex_state = 16, .external_lex_state = 3}, + [2495] = {.lex_state = 0, .external_lex_state = 3}, + [2496] = {.lex_state = 15, .external_lex_state = 3}, + [2497] = {.lex_state = 66, .external_lex_state = 3}, + [2498] = {.lex_state = 0, .external_lex_state = 3}, + [2499] = {.lex_state = 0, .external_lex_state = 3}, + [2500] = {.lex_state = 15, .external_lex_state = 3}, + [2501] = {.lex_state = 15, .external_lex_state = 3}, + [2502] = {.lex_state = 15, .external_lex_state = 3}, + [2503] = {.lex_state = 15, .external_lex_state = 3}, + [2504] = {.lex_state = 0, .external_lex_state = 3}, + [2505] = {.lex_state = 66, .external_lex_state = 3}, + [2506] = {.lex_state = 15, .external_lex_state = 3}, + [2507] = {.lex_state = 0, .external_lex_state = 3}, + [2508] = {.lex_state = 15, .external_lex_state = 3}, + [2509] = {.lex_state = 7, .external_lex_state = 3}, + [2510] = {.lex_state = 0, .external_lex_state = 3}, + [2511] = {.lex_state = 0, .external_lex_state = 3}, + [2512] = {.lex_state = 0, .external_lex_state = 3}, + [2513] = {.lex_state = 0, .external_lex_state = 3}, + [2514] = {.lex_state = 66, .external_lex_state = 3}, + [2515] = {.lex_state = 7, .external_lex_state = 3}, + [2516] = {.lex_state = 15, .external_lex_state = 3}, + [2517] = {.lex_state = 66, .external_lex_state = 3}, + [2518] = {.lex_state = 0, .external_lex_state = 3}, + [2519] = {.lex_state = 66, .external_lex_state = 3}, + [2520] = {.lex_state = 66, .external_lex_state = 3}, + [2521] = {.lex_state = 0, .external_lex_state = 3}, + [2522] = {.lex_state = 66, .external_lex_state = 3}, + [2523] = {.lex_state = 0, .external_lex_state = 3}, + [2524] = {.lex_state = 15, .external_lex_state = 3}, + [2525] = {.lex_state = 66, .external_lex_state = 3}, + [2526] = {.lex_state = 15, .external_lex_state = 3}, + [2527] = {.lex_state = 0, .external_lex_state = 3}, + [2528] = {.lex_state = 0, .external_lex_state = 3}, + [2529] = {.lex_state = 7, .external_lex_state = 3}, + [2530] = {.lex_state = 7, .external_lex_state = 3}, + [2531] = {.lex_state = 66, .external_lex_state = 3}, + [2532] = {.lex_state = 7, .external_lex_state = 3}, + [2533] = {.lex_state = 0, .external_lex_state = 3}, + [2534] = {.lex_state = 15, .external_lex_state = 3}, + [2535] = {.lex_state = 7, .external_lex_state = 3}, + [2536] = {.lex_state = 15, .external_lex_state = 3}, + [2537] = {.lex_state = 15, .external_lex_state = 3}, + [2538] = {.lex_state = 15, .external_lex_state = 3}, + [2539] = {.lex_state = 0, .external_lex_state = 3}, + [2540] = {.lex_state = 66, .external_lex_state = 3}, + [2541] = {.lex_state = 15, .external_lex_state = 3}, + [2542] = {.lex_state = 0, .external_lex_state = 3}, + [2543] = {.lex_state = 66, .external_lex_state = 3}, + [2544] = {.lex_state = 15, .external_lex_state = 3}, + [2545] = {.lex_state = 15, .external_lex_state = 3}, + [2546] = {.lex_state = 9, .external_lex_state = 3}, + [2547] = {.lex_state = 9, .external_lex_state = 3}, + [2548] = {.lex_state = 15, .external_lex_state = 3}, + [2549] = {.lex_state = 0, .external_lex_state = 3}, + [2550] = {.lex_state = 0, .external_lex_state = 3}, + [2551] = {.lex_state = 15, .external_lex_state = 3}, + [2552] = {.lex_state = 9, .external_lex_state = 3}, + [2553] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 15, .external_lex_state = 3}, + [2555] = {.lex_state = 0, .external_lex_state = 3}, + [2556] = {.lex_state = 66, .external_lex_state = 3}, + [2557] = {.lex_state = 0, .external_lex_state = 3}, + [2558] = {.lex_state = 16, .external_lex_state = 3}, + [2559] = {.lex_state = 66, .external_lex_state = 3}, + [2560] = {.lex_state = 15, .external_lex_state = 3}, + [2561] = {.lex_state = 0, .external_lex_state = 3}, + [2562] = {.lex_state = 66, .external_lex_state = 3}, + [2563] = {.lex_state = 0, .external_lex_state = 3}, + [2564] = {.lex_state = 0, .external_lex_state = 3}, + [2565] = {.lex_state = 0, .external_lex_state = 3}, + [2566] = {.lex_state = 0, .external_lex_state = 3}, + [2567] = {.lex_state = 0, .external_lex_state = 3}, + [2568] = {.lex_state = 0, .external_lex_state = 3}, + [2569] = {.lex_state = 0, .external_lex_state = 3}, + [2570] = {.lex_state = 0, .external_lex_state = 3}, + [2571] = {.lex_state = 0, .external_lex_state = 3}, + [2572] = {.lex_state = 0, .external_lex_state = 3}, + [2573] = {.lex_state = 0, .external_lex_state = 3}, + [2574] = {.lex_state = 0, .external_lex_state = 3}, + [2575] = {.lex_state = 0, .external_lex_state = 3}, + [2576] = {.lex_state = 0, .external_lex_state = 3}, + [2577] = {.lex_state = 66, .external_lex_state = 3}, + [2578] = {.lex_state = 15, .external_lex_state = 3}, + [2579] = {.lex_state = 0, .external_lex_state = 3}, + [2580] = {.lex_state = 0, .external_lex_state = 3}, + [2581] = {.lex_state = 0, .external_lex_state = 3}, + [2582] = {.lex_state = 0, .external_lex_state = 3}, + [2583] = {.lex_state = 0, .external_lex_state = 3}, + [2584] = {.lex_state = 9, .external_lex_state = 3}, + [2585] = {.lex_state = 0, .external_lex_state = 3}, + [2586] = {.lex_state = 9, .external_lex_state = 3}, + [2587] = {.lex_state = 9, .external_lex_state = 3}, + [2588] = {.lex_state = 0, .external_lex_state = 3}, + [2589] = {.lex_state = 0, .external_lex_state = 3}, + [2590] = {.lex_state = 0, .external_lex_state = 3}, + [2591] = {.lex_state = 66, .external_lex_state = 3}, + [2592] = {.lex_state = 66, .external_lex_state = 3}, + [2593] = {.lex_state = 0, .external_lex_state = 3}, + [2594] = {.lex_state = 66, .external_lex_state = 3}, + [2595] = {.lex_state = 66, .external_lex_state = 3}, + [2596] = {.lex_state = 0, .external_lex_state = 3}, + [2597] = {.lex_state = 0, .external_lex_state = 3}, + [2598] = {.lex_state = 0, .external_lex_state = 3}, + [2599] = {.lex_state = 0, .external_lex_state = 3}, + [2600] = {.lex_state = 66, .external_lex_state = 3}, + [2601] = {.lex_state = 0, .external_lex_state = 3}, + [2602] = {.lex_state = 9, .external_lex_state = 3}, + [2603] = {.lex_state = 0, .external_lex_state = 3}, + [2604] = {.lex_state = 25, .external_lex_state = 3}, + [2605] = {.lex_state = 66, .external_lex_state = 3}, + [2606] = {.lex_state = 9, .external_lex_state = 3}, + [2607] = {.lex_state = 25, .external_lex_state = 3}, + [2608] = {.lex_state = 66, .external_lex_state = 3}, + [2609] = {.lex_state = 0, .external_lex_state = 3}, + [2610] = {.lex_state = 66, .external_lex_state = 3}, + [2611] = {.lex_state = 0, .external_lex_state = 3}, + [2612] = {.lex_state = 9, .external_lex_state = 3}, + [2613] = {.lex_state = 0, .external_lex_state = 3}, + [2614] = {.lex_state = 0, .external_lex_state = 3}, + [2615] = {.lex_state = 66, .external_lex_state = 3}, + [2616] = {.lex_state = 9, .external_lex_state = 3}, + [2617] = {.lex_state = 0, .external_lex_state = 3}, + [2618] = {.lex_state = 66, .external_lex_state = 3}, + [2619] = {.lex_state = 0, .external_lex_state = 3}, + [2620] = {.lex_state = 0, .external_lex_state = 3}, + [2621] = {.lex_state = 66, .external_lex_state = 3}, + [2622] = {.lex_state = 0, .external_lex_state = 3}, + [2623] = {.lex_state = 0, .external_lex_state = 3}, + [2624] = {.lex_state = 0, .external_lex_state = 3}, + [2625] = {.lex_state = 9, .external_lex_state = 3}, + [2626] = {.lex_state = 66, .external_lex_state = 3}, + [2627] = {.lex_state = 0, .external_lex_state = 3}, + [2628] = {.lex_state = 66, .external_lex_state = 3}, + [2629] = {.lex_state = 0, .external_lex_state = 3}, + [2630] = {.lex_state = 66, .external_lex_state = 3}, + [2631] = {.lex_state = 0, .external_lex_state = 3}, + [2632] = {.lex_state = 0, .external_lex_state = 3}, + [2633] = {.lex_state = 0, .external_lex_state = 3}, + [2634] = {.lex_state = 0, .external_lex_state = 3}, + [2635] = {.lex_state = 9, .external_lex_state = 3}, + [2636] = {.lex_state = 66, .external_lex_state = 3}, + [2637] = {.lex_state = 9, .external_lex_state = 3}, + [2638] = {.lex_state = 66, .external_lex_state = 3}, + [2639] = {.lex_state = 0, .external_lex_state = 3}, + [2640] = {.lex_state = 9, .external_lex_state = 3}, + [2641] = {.lex_state = 66, .external_lex_state = 3}, + [2642] = {.lex_state = 9, .external_lex_state = 3}, + [2643] = {.lex_state = 0, .external_lex_state = 3}, + [2644] = {.lex_state = 0, .external_lex_state = 3}, + [2645] = {.lex_state = 0, .external_lex_state = 3}, + [2646] = {.lex_state = 0, .external_lex_state = 3}, + [2647] = {.lex_state = 0, .external_lex_state = 3}, + [2648] = {.lex_state = 9, .external_lex_state = 3}, + [2649] = {.lex_state = 0, .external_lex_state = 3}, + [2650] = {.lex_state = 0, .external_lex_state = 3}, + [2651] = {.lex_state = 0, .external_lex_state = 3}, + [2652] = {.lex_state = 66, .external_lex_state = 3}, + [2653] = {.lex_state = 0, .external_lex_state = 3}, + [2654] = {.lex_state = 0, .external_lex_state = 3}, + [2655] = {.lex_state = 0, .external_lex_state = 3}, + [2656] = {.lex_state = 9, .external_lex_state = 3}, + [2657] = {.lex_state = 0, .external_lex_state = 3}, + [2658] = {.lex_state = 66, .external_lex_state = 3}, + [2659] = {.lex_state = 0, .external_lex_state = 3}, + [2660] = {.lex_state = 66, .external_lex_state = 3}, + [2661] = {.lex_state = 0, .external_lex_state = 3}, + [2662] = {.lex_state = 0, .external_lex_state = 3}, + [2663] = {.lex_state = 9, .external_lex_state = 3}, + [2664] = {.lex_state = 0, .external_lex_state = 5}, + [2665] = {.lex_state = 9, .external_lex_state = 3}, + [2666] = {.lex_state = 0, .external_lex_state = 3}, + [2667] = {.lex_state = 9, .external_lex_state = 3}, + [2668] = {.lex_state = 9, .external_lex_state = 3}, + [2669] = {.lex_state = 0, .external_lex_state = 3}, + [2670] = {.lex_state = 9, .external_lex_state = 3}, + [2671] = {.lex_state = 66, .external_lex_state = 3}, + [2672] = {.lex_state = 0, .external_lex_state = 3}, + [2673] = {.lex_state = 0, .external_lex_state = 3}, + [2674] = {.lex_state = 0, .external_lex_state = 3}, + [2675] = {.lex_state = 0, .external_lex_state = 3}, + [2676] = {.lex_state = 0, .external_lex_state = 3}, + [2677] = {.lex_state = 0, .external_lex_state = 3}, + [2678] = {.lex_state = 0, .external_lex_state = 3}, + [2679] = {.lex_state = 0, .external_lex_state = 3}, + [2680] = {.lex_state = 0, .external_lex_state = 3}, + [2681] = {.lex_state = 16, .external_lex_state = 3}, + [2682] = {.lex_state = 66, .external_lex_state = 3}, + [2683] = {.lex_state = 9, .external_lex_state = 3}, + [2684] = {.lex_state = 0, .external_lex_state = 3}, + [2685] = {.lex_state = 0, .external_lex_state = 3}, + [2686] = {.lex_state = 0, .external_lex_state = 3}, + [2687] = {.lex_state = 66, .external_lex_state = 3}, + [2688] = {.lex_state = 0, .external_lex_state = 3}, + [2689] = {.lex_state = 66, .external_lex_state = 3}, + [2690] = {.lex_state = 0, .external_lex_state = 3}, + [2691] = {.lex_state = 0, .external_lex_state = 3}, + [2692] = {.lex_state = 66, .external_lex_state = 3}, + [2693] = {.lex_state = 66, .external_lex_state = 3}, + [2694] = {.lex_state = 9, .external_lex_state = 3}, + [2695] = {.lex_state = 0, .external_lex_state = 3}, + [2696] = {.lex_state = 0, .external_lex_state = 3}, + [2697] = {.lex_state = 0, .external_lex_state = 3}, + [2698] = {.lex_state = 0, .external_lex_state = 3}, + [2699] = {.lex_state = 0, .external_lex_state = 3}, + [2700] = {.lex_state = 9, .external_lex_state = 3}, + [2701] = {.lex_state = 0, .external_lex_state = 3}, + [2702] = {.lex_state = 0, .external_lex_state = 3}, + [2703] = {.lex_state = 0, .external_lex_state = 3}, + [2704] = {.lex_state = 0, .external_lex_state = 5}, + [2705] = {.lex_state = 0, .external_lex_state = 3}, + [2706] = {.lex_state = 66, .external_lex_state = 3}, + [2707] = {.lex_state = 9, .external_lex_state = 3}, + [2708] = {.lex_state = 66, .external_lex_state = 3}, + [2709] = {.lex_state = 66, .external_lex_state = 3}, + [2710] = {.lex_state = 0, .external_lex_state = 3}, + [2711] = {.lex_state = 66, .external_lex_state = 3}, + [2712] = {.lex_state = 66, .external_lex_state = 3}, + [2713] = {.lex_state = 25, .external_lex_state = 3}, + [2714] = {.lex_state = 25, .external_lex_state = 3}, + [2715] = {.lex_state = 0, .external_lex_state = 3}, + [2716] = {.lex_state = 0, .external_lex_state = 3}, + [2717] = {.lex_state = 0, .external_lex_state = 3}, + [2718] = {.lex_state = 0, .external_lex_state = 3}, + [2719] = {.lex_state = 0, .external_lex_state = 3}, + [2720] = {.lex_state = 9, .external_lex_state = 3}, + [2721] = {.lex_state = 0, .external_lex_state = 3}, + [2722] = {.lex_state = 0, .external_lex_state = 3}, + [2723] = {.lex_state = 0, .external_lex_state = 3}, + [2724] = {.lex_state = 9, .external_lex_state = 3}, + [2725] = {.lex_state = 25, .external_lex_state = 3}, + [2726] = {.lex_state = 0, .external_lex_state = 3}, + [2727] = {.lex_state = 0, .external_lex_state = 3}, + [2728] = {.lex_state = 0, .external_lex_state = 3}, + [2729] = {.lex_state = 0, .external_lex_state = 3}, + [2730] = {.lex_state = 0, .external_lex_state = 3}, + [2731] = {.lex_state = 0, .external_lex_state = 3}, + [2732] = {.lex_state = 0, .external_lex_state = 3}, + [2733] = {.lex_state = 0, .external_lex_state = 3}, + [2734] = {.lex_state = 0, .external_lex_state = 3}, + [2735] = {.lex_state = 0, .external_lex_state = 3}, + [2736] = {.lex_state = 0, .external_lex_state = 3}, + [2737] = {.lex_state = 66, .external_lex_state = 3}, + [2738] = {.lex_state = 0, .external_lex_state = 3}, + [2739] = {.lex_state = 66, .external_lex_state = 3}, + [2740] = {.lex_state = 0, .external_lex_state = 3}, + [2741] = {.lex_state = 0, .external_lex_state = 3}, + [2742] = {.lex_state = 0, .external_lex_state = 3}, + [2743] = {.lex_state = 66, .external_lex_state = 3}, + [2744] = {.lex_state = 0, .external_lex_state = 3}, + [2745] = {.lex_state = 0, .external_lex_state = 3}, + [2746] = {.lex_state = 0, .external_lex_state = 3}, + [2747] = {.lex_state = 66, .external_lex_state = 3}, + [2748] = {.lex_state = 0, .external_lex_state = 3}, + [2749] = {.lex_state = 9, .external_lex_state = 3}, + [2750] = {.lex_state = 0, .external_lex_state = 3}, + [2751] = {.lex_state = 0, .external_lex_state = 3}, + [2752] = {.lex_state = 0, .external_lex_state = 3}, + [2753] = {.lex_state = 0, .external_lex_state = 3}, + [2754] = {.lex_state = 9, .external_lex_state = 3}, + [2755] = {.lex_state = 0, .external_lex_state = 3}, + [2756] = {.lex_state = 0, .external_lex_state = 3}, + [2757] = {.lex_state = 0, .external_lex_state = 3}, + [2758] = {.lex_state = 66, .external_lex_state = 3}, + [2759] = {.lex_state = 0, .external_lex_state = 3}, + [2760] = {.lex_state = 0, .external_lex_state = 3}, + [2761] = {.lex_state = 0, .external_lex_state = 3}, + [2762] = {.lex_state = 0, .external_lex_state = 3}, + [2763] = {.lex_state = 0, .external_lex_state = 3}, + [2764] = {.lex_state = 0, .external_lex_state = 3}, + [2765] = {.lex_state = 66, .external_lex_state = 3}, + [2766] = {.lex_state = 0, .external_lex_state = 3}, + [2767] = {.lex_state = 0, .external_lex_state = 3}, + [2768] = {.lex_state = 0, .external_lex_state = 3}, + [2769] = {.lex_state = 0, .external_lex_state = 3}, + [2770] = {.lex_state = 0, .external_lex_state = 3}, + [2771] = {.lex_state = 0, .external_lex_state = 3}, + [2772] = {.lex_state = 0, .external_lex_state = 3}, + [2773] = {.lex_state = 25, .external_lex_state = 3}, + [2774] = {.lex_state = 0, .external_lex_state = 3}, + [2775] = {.lex_state = 0, .external_lex_state = 3}, + [2776] = {.lex_state = 0, .external_lex_state = 3}, + [2777] = {.lex_state = 0, .external_lex_state = 3}, + [2778] = {.lex_state = 66, .external_lex_state = 3}, + [2779] = {.lex_state = 0, .external_lex_state = 3}, + [2780] = {.lex_state = 66, .external_lex_state = 3}, + [2781] = {.lex_state = 9, .external_lex_state = 3}, + [2782] = {.lex_state = 9, .external_lex_state = 3}, + [2783] = {.lex_state = 0, .external_lex_state = 3}, + [2784] = {.lex_state = 0, .external_lex_state = 3}, + [2785] = {.lex_state = 0, .external_lex_state = 3}, + [2786] = {.lex_state = 0, .external_lex_state = 3}, + [2787] = {.lex_state = 0, .external_lex_state = 3}, + [2788] = {.lex_state = 0, .external_lex_state = 3}, + [2789] = {.lex_state = 0, .external_lex_state = 3}, + [2790] = {.lex_state = 0, .external_lex_state = 3}, + [2791] = {.lex_state = 0, .external_lex_state = 3}, + [2792] = {.lex_state = 0, .external_lex_state = 3}, + [2793] = {.lex_state = 9, .external_lex_state = 3}, + [2794] = {.lex_state = 0, .external_lex_state = 3}, + [2795] = {.lex_state = 66, .external_lex_state = 3}, + [2796] = {.lex_state = 66, .external_lex_state = 3}, + [2797] = {.lex_state = 9, .external_lex_state = 3}, + [2798] = {.lex_state = 9, .external_lex_state = 3}, + [2799] = {.lex_state = 0, .external_lex_state = 3}, + [2800] = {.lex_state = 9, .external_lex_state = 3}, + [2801] = {.lex_state = 9, .external_lex_state = 3}, + [2802] = {.lex_state = 9, .external_lex_state = 3}, + [2803] = {.lex_state = 9, .external_lex_state = 3}, + [2804] = {.lex_state = 9, .external_lex_state = 3}, + [2805] = {.lex_state = 9, .external_lex_state = 3}, + [2806] = {.lex_state = 0, .external_lex_state = 3}, + [2807] = {.lex_state = 9, .external_lex_state = 3}, + [2808] = {.lex_state = 9, .external_lex_state = 3}, + [2809] = {.lex_state = 0, .external_lex_state = 3}, + [2810] = {.lex_state = 9, .external_lex_state = 3}, + [2811] = {.lex_state = 9, .external_lex_state = 3}, + [2812] = {.lex_state = 0, .external_lex_state = 3}, + [2813] = {.lex_state = 16, .external_lex_state = 3}, + [2814] = {.lex_state = 9, .external_lex_state = 3}, + [2815] = {.lex_state = 0, .external_lex_state = 3}, + [2816] = {.lex_state = 9, .external_lex_state = 3}, + [2817] = {.lex_state = 9, .external_lex_state = 3}, + [2818] = {.lex_state = 9, .external_lex_state = 3}, + [2819] = {.lex_state = 9, .external_lex_state = 3}, + [2820] = {.lex_state = 9, .external_lex_state = 3}, + [2821] = {.lex_state = 0, .external_lex_state = 3}, + [2822] = {.lex_state = 0, .external_lex_state = 3}, + [2823] = {.lex_state = 9, .external_lex_state = 3}, + [2824] = {.lex_state = 0, .external_lex_state = 3}, + [2825] = {.lex_state = 0, .external_lex_state = 3}, + [2826] = {.lex_state = 0, .external_lex_state = 3}, + [2827] = {.lex_state = 0, .external_lex_state = 3}, + [2828] = {.lex_state = 9, .external_lex_state = 3}, + [2829] = {.lex_state = 0, .external_lex_state = 3}, + [2830] = {.lex_state = 0, .external_lex_state = 3}, + [2831] = {.lex_state = 0, .external_lex_state = 3}, + [2832] = {.lex_state = 9, .external_lex_state = 3}, + [2833] = {.lex_state = 0, .external_lex_state = 3}, + [2834] = {.lex_state = 0, .external_lex_state = 3}, + [2835] = {.lex_state = 9, .external_lex_state = 3}, + [2836] = {.lex_state = 9, .external_lex_state = 3}, + [2837] = {.lex_state = 0, .external_lex_state = 3}, + [2838] = {.lex_state = 0, .external_lex_state = 3}, + [2839] = {.lex_state = 9, .external_lex_state = 3}, + [2840] = {.lex_state = 9, .external_lex_state = 3}, + [2841] = {.lex_state = 0, .external_lex_state = 3}, + [2842] = {.lex_state = 0, .external_lex_state = 3}, + [2843] = {.lex_state = 9, .external_lex_state = 3}, + [2844] = {.lex_state = 0, .external_lex_state = 3}, + [2845] = {.lex_state = 16, .external_lex_state = 3}, + [2846] = {.lex_state = 9, .external_lex_state = 3}, + [2847] = {.lex_state = 0, .external_lex_state = 3}, + [2848] = {.lex_state = 9, .external_lex_state = 3}, + [2849] = {.lex_state = 9, .external_lex_state = 3}, + [2850] = {.lex_state = 0, .external_lex_state = 3}, + [2851] = {.lex_state = 9, .external_lex_state = 3}, + [2852] = {.lex_state = 9, .external_lex_state = 3}, + [2853] = {.lex_state = 9, .external_lex_state = 3}, + [2854] = {.lex_state = 9, .external_lex_state = 3}, + [2855] = {.lex_state = 9, .external_lex_state = 3}, + [2856] = {.lex_state = 9, .external_lex_state = 3}, + [2857] = {.lex_state = 9, .external_lex_state = 3}, + [2858] = {.lex_state = 9, .external_lex_state = 3}, + [2859] = {.lex_state = 0, .external_lex_state = 3}, + [2860] = {.lex_state = 0, .external_lex_state = 3}, + [2861] = {.lex_state = 9, .external_lex_state = 3}, + [2862] = {.lex_state = 0, .external_lex_state = 3}, + [2863] = {.lex_state = 9, .external_lex_state = 3}, + [2864] = {.lex_state = 0, .external_lex_state = 3}, + [2865] = {.lex_state = 0, .external_lex_state = 3}, + [2866] = {.lex_state = 0, .external_lex_state = 3}, + [2867] = {.lex_state = 0, .external_lex_state = 3}, + [2868] = {.lex_state = 9, .external_lex_state = 3}, + [2869] = {.lex_state = 0, .external_lex_state = 3}, + [2870] = {.lex_state = 16, .external_lex_state = 3}, + [2871] = {.lex_state = 0, .external_lex_state = 3}, + [2872] = {.lex_state = 0, .external_lex_state = 3}, + [2873] = {.lex_state = 0, .external_lex_state = 3}, + [2874] = {.lex_state = 16, .external_lex_state = 3}, + [2875] = {.lex_state = 0, .external_lex_state = 3}, + [2876] = {.lex_state = 0, .external_lex_state = 3}, + [2877] = {.lex_state = 0, .external_lex_state = 3}, + [2878] = {.lex_state = 9, .external_lex_state = 3}, + [2879] = {.lex_state = 9, .external_lex_state = 3}, + [2880] = {.lex_state = 9, .external_lex_state = 3}, + [2881] = {.lex_state = 0, .external_lex_state = 3}, + [2882] = {.lex_state = 0, .external_lex_state = 3}, + [2883] = {.lex_state = 9, .external_lex_state = 3}, + [2884] = {.lex_state = 9, .external_lex_state = 3}, + [2885] = {.lex_state = 9, .external_lex_state = 3}, + [2886] = {.lex_state = 0, .external_lex_state = 3}, + [2887] = {.lex_state = 9, .external_lex_state = 3}, + [2888] = {.lex_state = 0, .external_lex_state = 3}, + [2889] = {.lex_state = 9, .external_lex_state = 3}, + [2890] = {.lex_state = 0, .external_lex_state = 3}, + [2891] = {.lex_state = 0, .external_lex_state = 3}, + [2892] = {.lex_state = 9, .external_lex_state = 3}, + [2893] = {.lex_state = 0, .external_lex_state = 3}, + [2894] = {.lex_state = 0, .external_lex_state = 3}, + [2895] = {.lex_state = 9, .external_lex_state = 3}, + [2896] = {.lex_state = 0, .external_lex_state = 3}, + [2897] = {.lex_state = 0, .external_lex_state = 3}, + [2898] = {.lex_state = 0, .external_lex_state = 3}, + [2899] = {.lex_state = 0, .external_lex_state = 3}, + [2900] = {.lex_state = 0, .external_lex_state = 3}, + [2901] = {.lex_state = 0, .external_lex_state = 3}, + [2902] = {.lex_state = 0, .external_lex_state = 3}, + [2903] = {.lex_state = 9, .external_lex_state = 3}, + [2904] = {.lex_state = 9, .external_lex_state = 3}, + [2905] = {.lex_state = 9, .external_lex_state = 3}, + [2906] = {.lex_state = 0, .external_lex_state = 3}, + [2907] = {.lex_state = 9, .external_lex_state = 3}, + [2908] = {.lex_state = 9, .external_lex_state = 3}, + [2909] = {.lex_state = 9, .external_lex_state = 3}, + [2910] = {.lex_state = 0, .external_lex_state = 3}, + [2911] = {.lex_state = 9, .external_lex_state = 3}, + [2912] = {.lex_state = 9, .external_lex_state = 3}, + [2913] = {.lex_state = 0, .external_lex_state = 3}, + [2914] = {.lex_state = 9, .external_lex_state = 3}, + [2915] = {.lex_state = 0, .external_lex_state = 3}, + [2916] = {.lex_state = 0, .external_lex_state = 3}, + [2917] = {.lex_state = 0, .external_lex_state = 3}, + [2918] = {.lex_state = 0, .external_lex_state = 3}, + [2919] = {.lex_state = 0, .external_lex_state = 3}, + [2920] = {.lex_state = 0, .external_lex_state = 3}, + [2921] = {.lex_state = 9, .external_lex_state = 3}, + [2922] = {.lex_state = 0, .external_lex_state = 3}, + [2923] = {.lex_state = 16, .external_lex_state = 3}, + [2924] = {.lex_state = 0, .external_lex_state = 3}, + [2925] = {.lex_state = 9, .external_lex_state = 3}, + [2926] = {.lex_state = 9, .external_lex_state = 3}, + [2927] = {.lex_state = 9, .external_lex_state = 3}, + [2928] = {.lex_state = 9, .external_lex_state = 3}, + [2929] = {.lex_state = 9, .external_lex_state = 3}, + [2930] = {.lex_state = 9, .external_lex_state = 3}, + [2931] = {.lex_state = 9, .external_lex_state = 3}, + [2932] = {.lex_state = 9, .external_lex_state = 3}, + [2933] = {.lex_state = 9, .external_lex_state = 3}, + [2934] = {.lex_state = 9, .external_lex_state = 3}, + [2935] = {.lex_state = 9, .external_lex_state = 3}, + [2936] = {.lex_state = 0, .external_lex_state = 3}, + [2937] = {.lex_state = 9, .external_lex_state = 3}, + [2938] = {.lex_state = 9, .external_lex_state = 3}, + [2939] = {.lex_state = 0, .external_lex_state = 3}, + [2940] = {.lex_state = 0, .external_lex_state = 3}, + [2941] = {.lex_state = 9, .external_lex_state = 3}, + [2942] = {.lex_state = 0, .external_lex_state = 3}, + [2943] = {.lex_state = 66, .external_lex_state = 3}, + [2944] = {.lex_state = 9, .external_lex_state = 3}, + [2945] = {.lex_state = 0, .external_lex_state = 3}, + [2946] = {.lex_state = 9, .external_lex_state = 3}, + [2947] = {.lex_state = 0, .external_lex_state = 3}, + [2948] = {.lex_state = 9, .external_lex_state = 3}, + [2949] = {.lex_state = 9, .external_lex_state = 3}, + [2950] = {.lex_state = 0, .external_lex_state = 3}, + [2951] = {.lex_state = 0, .external_lex_state = 3}, + [2952] = {.lex_state = 9, .external_lex_state = 3}, + [2953] = {.lex_state = 9, .external_lex_state = 3}, + [2954] = {.lex_state = 0, .external_lex_state = 3}, + [2955] = {.lex_state = 0, .external_lex_state = 3}, + [2956] = {.lex_state = 0, .external_lex_state = 3}, + [2957] = {.lex_state = 9, .external_lex_state = 3}, + [2958] = {.lex_state = 0, .external_lex_state = 3}, + [2959] = {.lex_state = 9, .external_lex_state = 3}, + [2960] = {.lex_state = 9, .external_lex_state = 3}, + [2961] = {.lex_state = 0, .external_lex_state = 3}, + [2962] = {.lex_state = 0, .external_lex_state = 3}, + [2963] = {.lex_state = 0, .external_lex_state = 3}, + [2964] = {.lex_state = 0, .external_lex_state = 3}, + [2965] = {.lex_state = 0, .external_lex_state = 3}, + [2966] = {.lex_state = 0, .external_lex_state = 3}, + [2967] = {.lex_state = 0, .external_lex_state = 3}, + [2968] = {.lex_state = 9, .external_lex_state = 3}, + [2969] = {.lex_state = 0, .external_lex_state = 3}, + [2970] = {.lex_state = 0, .external_lex_state = 3}, + [2971] = {.lex_state = 0, .external_lex_state = 3}, + [2972] = {.lex_state = 9, .external_lex_state = 3}, + [2973] = {.lex_state = 16, .external_lex_state = 3}, + [2974] = {.lex_state = 0, .external_lex_state = 3}, + [2975] = {.lex_state = 9, .external_lex_state = 3}, + [2976] = {.lex_state = 0, .external_lex_state = 3}, + [2977] = {.lex_state = 9, .external_lex_state = 3}, + [2978] = {.lex_state = 66, .external_lex_state = 3}, + [2979] = {.lex_state = 66, .external_lex_state = 3}, + [2980] = {.lex_state = 9, .external_lex_state = 3}, + [2981] = {.lex_state = 9, .external_lex_state = 3}, + [2982] = {.lex_state = 9, .external_lex_state = 3}, + [2983] = {.lex_state = 9, .external_lex_state = 3}, + [2984] = {.lex_state = 66, .external_lex_state = 3}, + [2985] = {.lex_state = 0, .external_lex_state = 3}, + [2986] = {.lex_state = 9, .external_lex_state = 3}, + [2987] = {.lex_state = 0, .external_lex_state = 3}, + [2988] = {.lex_state = 0, .external_lex_state = 3}, + [2989] = {.lex_state = 0, .external_lex_state = 3}, + [2990] = {.lex_state = 0, .external_lex_state = 3}, + [2991] = {.lex_state = 9, .external_lex_state = 3}, + [2992] = {.lex_state = 0, .external_lex_state = 3}, + [2993] = {.lex_state = 0, .external_lex_state = 3}, + [2994] = {.lex_state = 9, .external_lex_state = 3}, + [2995] = {.lex_state = 0, .external_lex_state = 3}, + [2996] = {.lex_state = 0, .external_lex_state = 3}, + [2997] = {.lex_state = 0, .external_lex_state = 3}, + [2998] = {.lex_state = 0, .external_lex_state = 3}, + [2999] = {.lex_state = 0, .external_lex_state = 3}, + [3000] = {.lex_state = 0, .external_lex_state = 3}, + [3001] = {.lex_state = 0, .external_lex_state = 3}, + [3002] = {.lex_state = 0, .external_lex_state = 3}, + [3003] = {.lex_state = 0, .external_lex_state = 3}, + [3004] = {.lex_state = 0, .external_lex_state = 3}, + [3005] = {.lex_state = 0, .external_lex_state = 3}, + [3006] = {.lex_state = 0, .external_lex_state = 3}, + [3007] = {.lex_state = 0, .external_lex_state = 3}, + [3008] = {.lex_state = 16, .external_lex_state = 3}, + [3009] = {.lex_state = 0, .external_lex_state = 3}, + [3010] = {.lex_state = 0, .external_lex_state = 3}, + [3011] = {.lex_state = 16, .external_lex_state = 3}, + [3012] = {.lex_state = 0, .external_lex_state = 3}, + [3013] = {.lex_state = 0, .external_lex_state = 3}, + [3014] = {.lex_state = 0, .external_lex_state = 3}, + [3015] = {.lex_state = 16, .external_lex_state = 3}, + [3016] = {.lex_state = 0, .external_lex_state = 3}, + [3017] = {.lex_state = 0, .external_lex_state = 3}, + [3018] = {.lex_state = 9, .external_lex_state = 3}, + [3019] = {.lex_state = 0, .external_lex_state = 3}, + [3020] = {.lex_state = 16, .external_lex_state = 3}, + [3021] = {.lex_state = 0, .external_lex_state = 3}, + [3022] = {.lex_state = 0, .external_lex_state = 3}, + [3023] = {.lex_state = 9, .external_lex_state = 3}, + [3024] = {.lex_state = 9, .external_lex_state = 3}, + [3025] = {.lex_state = 9, .external_lex_state = 3}, + [3026] = {.lex_state = 9, .external_lex_state = 3}, + [3027] = {.lex_state = 0, .external_lex_state = 3}, + [3028] = {.lex_state = 16, .external_lex_state = 3}, + [3029] = {.lex_state = 9, .external_lex_state = 3}, + [3030] = {.lex_state = 9, .external_lex_state = 3}, + [3031] = {.lex_state = 16, .external_lex_state = 3}, + [3032] = {.lex_state = 9, .external_lex_state = 3}, + [3033] = {.lex_state = 16, .external_lex_state = 3}, + [3034] = {.lex_state = 0, .external_lex_state = 3}, + [3035] = {.lex_state = 66, .external_lex_state = 3}, + [3036] = {.lex_state = 16, .external_lex_state = 3}, + [3037] = {.lex_state = 0, .external_lex_state = 3}, + [3038] = {.lex_state = 9, .external_lex_state = 3}, + [3039] = {.lex_state = 0, .external_lex_state = 3}, + [3040] = {.lex_state = 66, .external_lex_state = 3}, + [3041] = {.lex_state = 66, .external_lex_state = 3}, + [3042] = {.lex_state = 16, .external_lex_state = 3}, + [3043] = {.lex_state = 0, .external_lex_state = 3}, + [3044] = {.lex_state = 16, .external_lex_state = 3}, + [3045] = {.lex_state = 0, .external_lex_state = 3}, + [3046] = {.lex_state = 0, .external_lex_state = 3}, + [3047] = {.lex_state = 9, .external_lex_state = 3}, + [3048] = {.lex_state = 0, .external_lex_state = 3}, + [3049] = {.lex_state = 9, .external_lex_state = 3}, + [3050] = {.lex_state = 9, .external_lex_state = 3}, + [3051] = {.lex_state = 16, .external_lex_state = 3}, + [3052] = {.lex_state = 9, .external_lex_state = 3}, + [3053] = {.lex_state = 9, .external_lex_state = 3}, + [3054] = {.lex_state = 16, .external_lex_state = 3}, + [3055] = {.lex_state = 0, .external_lex_state = 3}, + [3056] = {.lex_state = 0, .external_lex_state = 3}, + [3057] = {.lex_state = 9, .external_lex_state = 3}, + [3058] = {.lex_state = 0, .external_lex_state = 3}, + [3059] = {.lex_state = 9, .external_lex_state = 3}, + [3060] = {.lex_state = 0, .external_lex_state = 3}, + [3061] = {.lex_state = 9, .external_lex_state = 3}, + [3062] = {.lex_state = 9, .external_lex_state = 3}, + [3063] = {.lex_state = 0, .external_lex_state = 3}, + [3064] = {.lex_state = 0, .external_lex_state = 3}, + [3065] = {.lex_state = 16, .external_lex_state = 3}, + [3066] = {.lex_state = 9, .external_lex_state = 3}, + [3067] = {.lex_state = 9, .external_lex_state = 3}, + [3068] = {.lex_state = 9, .external_lex_state = 3}, + [3069] = {.lex_state = 0, .external_lex_state = 3}, + [3070] = {.lex_state = 9, .external_lex_state = 3}, + [3071] = {.lex_state = 9, .external_lex_state = 3}, + [3072] = {.lex_state = 9, .external_lex_state = 3}, + [3073] = {.lex_state = 9, .external_lex_state = 3}, + [3074] = {.lex_state = 9, .external_lex_state = 3}, + [3075] = {.lex_state = 0, .external_lex_state = 3}, + [3076] = {.lex_state = 9, .external_lex_state = 3}, + [3077] = {.lex_state = 0, .external_lex_state = 3}, + [3078] = {.lex_state = 0, .external_lex_state = 3}, + [3079] = {.lex_state = 9, .external_lex_state = 3}, + [3080] = {.lex_state = 9, .external_lex_state = 3}, + [3081] = {.lex_state = 0, .external_lex_state = 3}, + [3082] = {.lex_state = 9, .external_lex_state = 3}, +}; + +enum { + ts_external_token__string_content = 0, + ts_external_token_raw_string_literal = 1, + ts_external_token_float_literal = 2, + ts_external_token_block_comment = 3, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__string_content] = sym__string_content, + [ts_external_token_raw_string_literal] = sym_raw_string_literal, + [ts_external_token_float_literal] = sym_float_literal, + [ts_external_token_block_comment] = sym_block_comment, +}; + +static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__string_content] = true, [ts_external_token_raw_string_literal] = true, [ts_external_token_float_literal] = true, [ts_external_token_block_comment] = true, @@ -14095,6 +14829,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_tt] = ACTIONS(1), [anon_sym_ty] = ACTIONS(1), [anon_sym_vis] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), [anon_sym_u8] = ACTIONS(1), [anon_sym_i8] = ACTIONS(1), [anon_sym_u16] = ACTIONS(1), @@ -14140,52 +14912,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1), [anon_sym_where] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_cfg] = ACTIONS(1), + [anon_sym_cfg_attr] = ACTIONS(1), + [anon_sym_test] = ACTIONS(1), + [anon_sym_ignore] = ACTIONS(1), + [anon_sym_should_panic] = ACTIONS(1), + [anon_sym_derive] = ACTIONS(1), + [anon_sym_automatically_derived] = ACTIONS(1), + [anon_sym_macro_export] = ACTIONS(1), + [anon_sym_macro_use] = ACTIONS(1), + [anon_sym_proc_macro] = ACTIONS(1), + [anon_sym_proc_macro_derive] = ACTIONS(1), + [anon_sym_proc_macro_attribute] = ACTIONS(1), + [anon_sym_allow] = ACTIONS(1), + [anon_sym_warn] = ACTIONS(1), + [anon_sym_deny] = ACTIONS(1), + [anon_sym_forbid] = ACTIONS(1), + [anon_sym_deprecated] = ACTIONS(1), + [anon_sym_must_use] = ACTIONS(1), + [anon_sym_link] = ACTIONS(1), + [anon_sym_link_name] = ACTIONS(1), + [anon_sym_no_link] = ACTIONS(1), + [anon_sym_repr] = ACTIONS(1), + [anon_sym_crate_type] = ACTIONS(1), + [anon_sym_no_main] = ACTIONS(1), + [anon_sym_export_name] = ACTIONS(1), + [anon_sym_link_section] = ACTIONS(1), + [anon_sym_no_mangle] = ACTIONS(1), + [anon_sym_used] = ACTIONS(1), + [anon_sym_crate_name] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_cold] = ACTIONS(1), + [anon_sym_no_builtins] = ACTIONS(1), + [anon_sym_target_feature] = ACTIONS(1), + [anon_sym_track_caller] = ACTIONS(1), + [anon_sym_doc] = ACTIONS(1), + [anon_sym_no_std] = ACTIONS(1), + [anon_sym_no_implicit_prelude] = ACTIONS(1), + [anon_sym_recursion_limit] = ACTIONS(1), + [anon_sym_type_length_limit] = ACTIONS(1), + [anon_sym_panic_handler] = ACTIONS(1), + [anon_sym_global_allocator] = ACTIONS(1), + [anon_sym_windows_subsystem] = ACTIONS(1), + [anon_sym_feature] = ACTIONS(1), + [anon_sym_non_exhaustive] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), [anon_sym_ref] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [anon_sym_LT2] = ACTIONS(1), [anon_sym_dyn] = ACTIONS(1), [sym_mutable_specifier] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [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), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_yield] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_move] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), [sym_integer_literal] = ACTIONS(1), [aux_sym_string_literal_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), @@ -14204,302 +14983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2377), - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym__expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [2] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym__expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [3] = { + [sym_source_file] = STATE(3060), [sym__statement] = STATE(14), [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), + [sym_expression_statement] = STATE(14), [sym_macro_definition] = STATE(14), [sym_attribute_item] = STATE(14), [sym_inner_attribute_item] = STATE(14), @@ -14514,206 +15001,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(14), [sym_function_item] = STATE(14), [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), + [sym_function_modifiers] = STATE(3057), [sym_impl_item] = STATE(14), [sym_trait_item] = STATE(14), [sym_associated_type] = STATE(14), [sym_let_declaration] = STATE(14), [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [2] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1511), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [4] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym__expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [3] = { + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1434), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14722,144 +15363,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym__expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1116), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [4] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1431), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14868,144 +15512,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [5] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1436), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15014,144 +15661,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(111), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [6] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1409), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15160,1098 +15810,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym__expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(115), + [7] = { + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1486), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [9] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [8] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1446), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [11] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1112), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [9] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1596), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [13] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym__expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1136), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [14] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym__expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2376), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_macro_rules_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_u8] = ACTIONS(150), - [anon_sym_i8] = ACTIONS(150), - [anon_sym_u16] = ACTIONS(150), - [anon_sym_i16] = ACTIONS(150), - [anon_sym_u32] = ACTIONS(150), - [anon_sym_i32] = ACTIONS(150), - [anon_sym_u64] = ACTIONS(150), - [anon_sym_i64] = ACTIONS(150), - [anon_sym_u128] = ACTIONS(150), - [anon_sym_i128] = ACTIONS(150), - [anon_sym_isize] = ACTIONS(150), - [anon_sym_usize] = ACTIONS(150), - [anon_sym_f32] = ACTIONS(150), - [anon_sym_f64] = ACTIONS(150), - [anon_sym_bool] = ACTIONS(150), - [anon_sym_str] = ACTIONS(150), - [anon_sym_char] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_async] = ACTIONS(156), - [anon_sym_break] = ACTIONS(159), - [anon_sym_const] = ACTIONS(162), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_default] = ACTIONS(168), - [anon_sym_enum] = ACTIONS(171), - [anon_sym_fn] = ACTIONS(174), - [anon_sym_for] = ACTIONS(177), - [anon_sym_if] = ACTIONS(180), - [anon_sym_impl] = ACTIONS(183), - [anon_sym_let] = ACTIONS(186), - [anon_sym_loop] = ACTIONS(189), - [anon_sym_match] = ACTIONS(192), - [anon_sym_mod] = ACTIONS(195), - [anon_sym_pub] = ACTIONS(198), - [anon_sym_return] = ACTIONS(201), - [anon_sym_static] = ACTIONS(204), - [anon_sym_struct] = ACTIONS(207), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_type] = ACTIONS(213), - [anon_sym_union] = ACTIONS(216), - [anon_sym_unsafe] = ACTIONS(219), - [anon_sym_use] = ACTIONS(222), - [anon_sym_while] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(228), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_extern] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_COLON_COLON] = ACTIONS(237), - [anon_sym_AMP] = ACTIONS(240), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_move] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [aux_sym_string_literal_token1] = ACTIONS(255), - [sym_char_literal] = ACTIONS(252), - [anon_sym_true] = ACTIONS(258), - [anon_sym_false] = ACTIONS(258), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(261), - [sym_super] = ACTIONS(264), - [sym_crate] = ACTIONS(267), - [sym_metavariable] = ACTIONS(270), - [sym_raw_string_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [15] = { + [10] = { [sym__statement] = STATE(15), [sym_empty_statement] = STATE(15), - [sym__expression_statement] = STATE(15), + [sym_expression_statement] = STATE(15), [sym_macro_definition] = STATE(15), [sym_attribute_item] = STATE(15), [sym_inner_attribute_item] = STATE(15), @@ -16266,138 +16342,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(15), [sym_function_item] = STATE(15), [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2376), + [sym_function_modifiers] = STATE(3057), [sym_impl_item] = STATE(15), [sym_trait_item] = STATE(15), [sym_associated_type] = STATE(15), [sym_let_declaration] = STATE(15), [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1498), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(142), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_macro_rules_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_u8] = ACTIONS(150), - [anon_sym_i8] = ACTIONS(150), - [anon_sym_u16] = ACTIONS(150), - [anon_sym_i16] = ACTIONS(150), - [anon_sym_u32] = ACTIONS(150), - [anon_sym_i32] = ACTIONS(150), - [anon_sym_u64] = ACTIONS(150), - [anon_sym_i64] = ACTIONS(150), - [anon_sym_u128] = ACTIONS(150), - [anon_sym_i128] = ACTIONS(150), - [anon_sym_isize] = ACTIONS(150), - [anon_sym_usize] = ACTIONS(150), - [anon_sym_f32] = ACTIONS(150), - [anon_sym_f64] = ACTIONS(150), - [anon_sym_bool] = ACTIONS(150), - [anon_sym_str] = ACTIONS(150), - [anon_sym_char] = ACTIONS(150), - [anon_sym_SQUOTE] = ACTIONS(153), - [anon_sym_async] = ACTIONS(156), - [anon_sym_break] = ACTIONS(159), - [anon_sym_const] = ACTIONS(162), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_default] = ACTIONS(168), - [anon_sym_enum] = ACTIONS(171), - [anon_sym_fn] = ACTIONS(174), - [anon_sym_for] = ACTIONS(177), - [anon_sym_if] = ACTIONS(180), - [anon_sym_impl] = ACTIONS(183), - [anon_sym_let] = ACTIONS(186), - [anon_sym_loop] = ACTIONS(189), - [anon_sym_match] = ACTIONS(192), - [anon_sym_mod] = ACTIONS(195), - [anon_sym_pub] = ACTIONS(198), - [anon_sym_return] = ACTIONS(201), - [anon_sym_static] = ACTIONS(204), - [anon_sym_struct] = ACTIONS(207), - [anon_sym_trait] = ACTIONS(210), - [anon_sym_type] = ACTIONS(213), - [anon_sym_union] = ACTIONS(216), - [anon_sym_unsafe] = ACTIONS(219), - [anon_sym_use] = ACTIONS(222), - [anon_sym_while] = ACTIONS(225), - [anon_sym_POUND] = ACTIONS(228), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_extern] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(234), - [anon_sym_COLON_COLON] = ACTIONS(237), - [anon_sym_AMP] = ACTIONS(240), - [anon_sym_DOT_DOT] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_move] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [aux_sym_string_literal_token1] = ACTIONS(255), - [sym_char_literal] = ACTIONS(252), - [anon_sym_true] = ACTIONS(258), - [anon_sym_false] = ACTIONS(258), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(261), - [sym_super] = ACTIONS(264), - [sym_crate] = ACTIONS(267), - [sym_metavariable] = ACTIONS(270), - [sym_raw_string_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [16] = { + [11] = { [sym__statement] = STATE(9), [sym_empty_statement] = STATE(9), - [sym__expression_statement] = STATE(9), + [sym_expression_statement] = STATE(9), [sym_macro_definition] = STATE(9), [sym_attribute_item] = STATE(9), [sym_inner_attribute_item] = STATE(9), @@ -16412,4886 +16491,4653 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(9), [sym_function_item] = STATE(9), [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2376), + [sym_function_modifiers] = STATE(3057), [sym_impl_item] = STATE(9), [sym_trait_item] = STATE(9), [sym_associated_type] = STATE(9), [sym_let_declaration] = STATE(9), [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1439), - [sym_visibility_modifier] = STATE(1273), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1121), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1101), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2248), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1600), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [aux_sym_function_modifiers_repeat1] = STATE(1908), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [17] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(978), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(283), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(283), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_GT] = ACTIONS(283), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(277), - [anon_sym_DOT_DOT] = ACTIONS(283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_CARET] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(283), - [anon_sym_GT_GT] = ACTIONS(283), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_PLUS_EQ] = ACTIONS(277), - [anon_sym_DASH_EQ] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(277), - [anon_sym_SLASH_EQ] = ACTIONS(277), - [anon_sym_PERCENT_EQ] = ACTIONS(277), - [anon_sym_AMP_EQ] = ACTIONS(277), - [anon_sym_PIPE_EQ] = ACTIONS(277), - [anon_sym_CARET_EQ] = ACTIONS(277), - [anon_sym_LT_LT_EQ] = ACTIONS(277), - [anon_sym_GT_GT_EQ] = ACTIONS(277), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(283), - [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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [18] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1042), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_EQ_GT] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_RBRACK] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(307), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(309), - [anon_sym_as] = ACTIONS(307), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_COMMA] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(305), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(305), - [anon_sym_PIPE_PIPE] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_CARET] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_SLASH] = ACTIONS(307), - [anon_sym_PERCENT] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_CARET_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(307), - [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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [19] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(761), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_EQ_GT] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(311), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(313), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(321), - [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_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(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [20] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1003), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_EQ_GT] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_RBRACK] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(325), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(325), - [anon_sym_COMMA] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(325), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT_EQ] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(323), - [anon_sym_BANG_EQ] = ACTIONS(323), - [anon_sym_LT_EQ] = ACTIONS(323), - [anon_sym_GT_EQ] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_PERCENT] = ACTIONS(325), - [anon_sym_PLUS_EQ] = ACTIONS(323), - [anon_sym_DASH_EQ] = ACTIONS(323), - [anon_sym_STAR_EQ] = ACTIONS(323), - [anon_sym_SLASH_EQ] = ACTIONS(323), - [anon_sym_PERCENT_EQ] = ACTIONS(323), - [anon_sym_AMP_EQ] = ACTIONS(323), - [anon_sym_PIPE_EQ] = ACTIONS(323), - [anon_sym_CARET_EQ] = ACTIONS(323), - [anon_sym_LT_LT_EQ] = ACTIONS(323), - [anon_sym_GT_GT_EQ] = ACTIONS(323), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(325), - [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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [21] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1035), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(327), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(327), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_EQ_GT] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(329), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_COMMA] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(327), - [anon_sym_BANG_EQ] = ACTIONS(327), - [anon_sym_LT_EQ] = ACTIONS(327), - [anon_sym_GT_EQ] = ACTIONS(327), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_PLUS_EQ] = ACTIONS(327), - [anon_sym_DASH_EQ] = ACTIONS(327), - [anon_sym_STAR_EQ] = ACTIONS(327), - [anon_sym_SLASH_EQ] = ACTIONS(327), - [anon_sym_PERCENT_EQ] = ACTIONS(327), - [anon_sym_AMP_EQ] = ACTIONS(327), - [anon_sym_PIPE_EQ] = ACTIONS(327), - [anon_sym_CARET_EQ] = ACTIONS(327), - [anon_sym_LT_LT_EQ] = ACTIONS(327), - [anon_sym_GT_GT_EQ] = ACTIONS(327), - [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(329), - [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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [22] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1188), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(283), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(283), - [anon_sym_GT] = ACTIONS(283), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(277), - [anon_sym_DOT_DOT] = ACTIONS(283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(283), - [anon_sym_CARET] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(283), - [anon_sym_GT_GT] = ACTIONS(283), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_PLUS_EQ] = ACTIONS(277), - [anon_sym_DASH_EQ] = ACTIONS(277), - [anon_sym_STAR_EQ] = ACTIONS(277), - [anon_sym_SLASH_EQ] = ACTIONS(277), - [anon_sym_PERCENT_EQ] = ACTIONS(277), - [anon_sym_AMP_EQ] = ACTIONS(277), - [anon_sym_PIPE_EQ] = ACTIONS(277), - [anon_sym_CARET_EQ] = ACTIONS(277), - [anon_sym_LT_LT_EQ] = ACTIONS(277), - [anon_sym_GT_GT_EQ] = ACTIONS(277), - [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(283), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [23] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(329), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(327), - [anon_sym_BANG_EQ] = ACTIONS(327), - [anon_sym_LT_EQ] = ACTIONS(327), - [anon_sym_GT_EQ] = ACTIONS(327), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_PLUS_EQ] = ACTIONS(327), - [anon_sym_DASH_EQ] = ACTIONS(327), - [anon_sym_STAR_EQ] = ACTIONS(327), - [anon_sym_SLASH_EQ] = ACTIONS(327), - [anon_sym_PERCENT_EQ] = ACTIONS(327), - [anon_sym_AMP_EQ] = ACTIONS(327), - [anon_sym_PIPE_EQ] = ACTIONS(327), - [anon_sym_CARET_EQ] = ACTIONS(327), - [anon_sym_LT_LT_EQ] = ACTIONS(327), - [anon_sym_GT_GT_EQ] = ACTIONS(327), - [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(329), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [24] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(761), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [12] = { + [sym__statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_macro_definition] = STATE(18), + [sym_attribute_item] = STATE(18), + [sym_inner_attribute_item] = STATE(18), + [sym_mod_item] = STATE(18), + [sym_foreign_mod_item] = STATE(18), + [sym_struct_item] = STATE(18), + [sym_union_item] = STATE(18), + [sym_enum_item] = STATE(18), + [sym_extern_crate_declaration] = STATE(18), + [sym_const_item] = STATE(18), + [sym_static_item] = STATE(18), + [sym_type_item] = STATE(18), + [sym_function_item] = STATE(18), + [sym_function_signature_item] = STATE(18), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(18), + [sym_trait_item] = STATE(18), + [sym_associated_type] = STATE(18), + [sym_let_declaration] = STATE(18), + [sym_use_declaration] = STATE(18), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1460), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_QMARK] = ACTIONS(311), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(313), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT] = ACTIONS(355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(321), - [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_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [25] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(325), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(325), - [anon_sym_LT] = ACTIONS(325), - [anon_sym_GT] = ACTIONS(325), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT_EQ] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE_PIPE] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(323), - [anon_sym_BANG_EQ] = ACTIONS(323), - [anon_sym_LT_EQ] = ACTIONS(323), - [anon_sym_GT_EQ] = ACTIONS(323), - [anon_sym_LT_LT] = ACTIONS(325), - [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_SLASH] = ACTIONS(325), - [anon_sym_PERCENT] = ACTIONS(325), - [anon_sym_PLUS_EQ] = ACTIONS(323), - [anon_sym_DASH_EQ] = ACTIONS(323), - [anon_sym_STAR_EQ] = ACTIONS(323), - [anon_sym_SLASH_EQ] = ACTIONS(323), - [anon_sym_PERCENT_EQ] = ACTIONS(323), - [anon_sym_AMP_EQ] = ACTIONS(323), - [anon_sym_PIPE_EQ] = ACTIONS(323), - [anon_sym_CARET_EQ] = ACTIONS(323), - [anon_sym_LT_LT_EQ] = ACTIONS(323), - [anon_sym_GT_GT_EQ] = ACTIONS(323), - [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(325), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [26] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(22), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(307), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(309), - [anon_sym_as] = ACTIONS(307), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(305), - [anon_sym_DOT_DOT] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(305), - [anon_sym_PIPE_PIPE] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_CARET] = ACTIONS(307), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_SLASH] = ACTIONS(307), - [anon_sym_PERCENT] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(305), - [anon_sym_DASH_EQ] = ACTIONS(305), - [anon_sym_STAR_EQ] = ACTIONS(305), - [anon_sym_SLASH_EQ] = ACTIONS(305), - [anon_sym_PERCENT_EQ] = ACTIONS(305), - [anon_sym_AMP_EQ] = ACTIONS(305), - [anon_sym_PIPE_EQ] = ACTIONS(305), - [anon_sym_CARET_EQ] = ACTIONS(305), - [anon_sym_LT_LT_EQ] = ACTIONS(305), - [anon_sym_GT_GT_EQ] = ACTIONS(305), - [anon_sym_move] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(307), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [13] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [ts_builtin_sym_end] = ACTIONS(127), + [sym_identifier] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(132), + [anon_sym_macro_rules_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(150), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(156), + [anon_sym_DOT_DOT] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(168), + [anon_sym_i8] = ACTIONS(168), + [anon_sym_u16] = ACTIONS(168), + [anon_sym_i16] = ACTIONS(168), + [anon_sym_u32] = ACTIONS(168), + [anon_sym_i32] = ACTIONS(168), + [anon_sym_u64] = ACTIONS(168), + [anon_sym_i64] = ACTIONS(168), + [anon_sym_u128] = ACTIONS(168), + [anon_sym_i128] = ACTIONS(168), + [anon_sym_isize] = ACTIONS(168), + [anon_sym_usize] = ACTIONS(168), + [anon_sym_f32] = ACTIONS(168), + [anon_sym_f64] = ACTIONS(168), + [anon_sym_bool] = ACTIONS(168), + [anon_sym_str] = ACTIONS(168), + [anon_sym_char] = ACTIONS(168), + [anon_sym_SQUOTE] = ACTIONS(171), + [anon_sym_async] = ACTIONS(174), + [anon_sym_break] = ACTIONS(177), + [anon_sym_const] = ACTIONS(180), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_default] = ACTIONS(186), + [anon_sym_enum] = ACTIONS(189), + [anon_sym_fn] = ACTIONS(192), + [anon_sym_for] = ACTIONS(195), + [anon_sym_if] = ACTIONS(198), + [anon_sym_impl] = ACTIONS(201), + [anon_sym_let] = ACTIONS(204), + [anon_sym_loop] = ACTIONS(207), + [anon_sym_match] = ACTIONS(210), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_pub] = ACTIONS(216), + [anon_sym_return] = ACTIONS(219), + [anon_sym_static] = ACTIONS(222), + [anon_sym_struct] = ACTIONS(225), + [anon_sym_trait] = ACTIONS(228), + [anon_sym_type] = ACTIONS(231), + [anon_sym_union] = ACTIONS(234), + [anon_sym_unsafe] = ACTIONS(237), + [anon_sym_use] = ACTIONS(240), + [anon_sym_while] = ACTIONS(243), + [anon_sym_extern] = ACTIONS(246), + [anon_sym_yield] = ACTIONS(249), + [anon_sym_move] = ACTIONS(252), + [sym_integer_literal] = ACTIONS(255), + [aux_sym_string_literal_token1] = ACTIONS(258), + [sym_char_literal] = ACTIONS(255), + [anon_sym_true] = ACTIONS(261), + [anon_sym_false] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(264), + [sym_super] = ACTIONS(267), + [sym_crate] = ACTIONS(270), + [sym_metavariable] = ACTIONS(273), + [sym_raw_string_literal] = ACTIONS(255), + [sym_float_literal] = ACTIONS(255), [sym_block_comment] = ACTIONS(3), }, - [27] = { - [sym_attribute_item] = STATE(37), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1102), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(37), - [sym_identifier] = ACTIONS(275), + [14] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [ts_builtin_sym_end] = ACTIONS(276), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(361), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [28] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(275), + [15] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1428), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(278), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [29] = { - [sym_attribute_item] = STATE(28), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1090), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(367), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [16] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(337), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(132), + [anon_sym_macro_rules_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_RBRACE] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(150), + [anon_sym_PIPE] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(156), + [anon_sym_DOT_DOT] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(162), + [anon_sym_POUND] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(168), + [anon_sym_i8] = ACTIONS(168), + [anon_sym_u16] = ACTIONS(168), + [anon_sym_i16] = ACTIONS(168), + [anon_sym_u32] = ACTIONS(168), + [anon_sym_i32] = ACTIONS(168), + [anon_sym_u64] = ACTIONS(168), + [anon_sym_i64] = ACTIONS(168), + [anon_sym_u128] = ACTIONS(168), + [anon_sym_i128] = ACTIONS(168), + [anon_sym_isize] = ACTIONS(168), + [anon_sym_usize] = ACTIONS(168), + [anon_sym_f32] = ACTIONS(168), + [anon_sym_f64] = ACTIONS(168), + [anon_sym_bool] = ACTIONS(168), + [anon_sym_str] = ACTIONS(168), + [anon_sym_char] = ACTIONS(168), + [anon_sym_SQUOTE] = ACTIONS(171), + [anon_sym_async] = ACTIONS(174), + [anon_sym_break] = ACTIONS(177), + [anon_sym_const] = ACTIONS(180), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_default] = ACTIONS(186), + [anon_sym_enum] = ACTIONS(189), + [anon_sym_fn] = ACTIONS(192), + [anon_sym_for] = ACTIONS(195), + [anon_sym_if] = ACTIONS(198), + [anon_sym_impl] = ACTIONS(201), + [anon_sym_let] = ACTIONS(204), + [anon_sym_loop] = ACTIONS(207), + [anon_sym_match] = ACTIONS(210), + [anon_sym_mod] = ACTIONS(213), + [anon_sym_pub] = ACTIONS(216), + [anon_sym_return] = ACTIONS(219), + [anon_sym_static] = ACTIONS(222), + [anon_sym_struct] = ACTIONS(225), + [anon_sym_trait] = ACTIONS(228), + [anon_sym_type] = ACTIONS(231), + [anon_sym_union] = ACTIONS(234), + [anon_sym_unsafe] = ACTIONS(237), + [anon_sym_use] = ACTIONS(240), + [anon_sym_while] = ACTIONS(243), + [anon_sym_extern] = ACTIONS(246), + [anon_sym_yield] = ACTIONS(249), + [anon_sym_move] = ACTIONS(252), + [sym_integer_literal] = ACTIONS(255), + [aux_sym_string_literal_token1] = ACTIONS(258), + [sym_char_literal] = ACTIONS(255), + [anon_sym_true] = ACTIONS(261), + [anon_sym_false] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(264), + [sym_super] = ACTIONS(267), + [sym_crate] = ACTIONS(270), + [sym_metavariable] = ACTIONS(273), + [sym_raw_string_literal] = ACTIONS(255), + [sym_float_literal] = ACTIONS(255), [sym_block_comment] = ACTIONS(3), }, - [30] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(275), + [17] = { + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1424), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(371), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(280), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [31] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(275), + [18] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(3057), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1860), + [sym_visibility_modifier] = STATE(1663), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1443), + [sym_macro_invocation] = STATE(296), + [sym_scoped_identifier] = STATE(1322), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(295), + [sym_if_let_expression] = STATE(295), + [sym_match_expression] = STATE(295), + [sym_while_expression] = STATE(295), + [sym_while_let_expression] = STATE(295), + [sym_loop_expression] = STATE(295), + [sym_for_expression] = STATE(295), + [sym_const_block] = STATE(295), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3031), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(295), + [sym_async_block] = STATE(295), + [sym_block] = STATE(295), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(282), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(31), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [32] = { - [sym_else_clause] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(375), - [sym_identifier] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_macro_rules_BANG] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(377), - [anon_sym_i8] = ACTIONS(377), - [anon_sym_u16] = ACTIONS(377), - [anon_sym_i16] = ACTIONS(377), - [anon_sym_u32] = ACTIONS(377), - [anon_sym_i32] = ACTIONS(377), - [anon_sym_u64] = ACTIONS(377), - [anon_sym_i64] = ACTIONS(377), - [anon_sym_u128] = ACTIONS(377), - [anon_sym_i128] = ACTIONS(377), - [anon_sym_isize] = ACTIONS(377), - [anon_sym_usize] = ACTIONS(377), - [anon_sym_f32] = ACTIONS(377), - [anon_sym_f64] = ACTIONS(377), - [anon_sym_bool] = ACTIONS(377), - [anon_sym_str] = ACTIONS(377), - [anon_sym_char] = ACTIONS(377), - [anon_sym_SQUOTE] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(377), - [anon_sym_break] = ACTIONS(377), - [anon_sym_const] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(377), - [anon_sym_default] = ACTIONS(377), - [anon_sym_enum] = ACTIONS(377), - [anon_sym_fn] = ACTIONS(377), - [anon_sym_for] = ACTIONS(377), - [anon_sym_if] = ACTIONS(377), - [anon_sym_impl] = ACTIONS(377), - [anon_sym_let] = ACTIONS(377), - [anon_sym_loop] = ACTIONS(377), - [anon_sym_match] = ACTIONS(377), - [anon_sym_mod] = ACTIONS(377), - [anon_sym_pub] = ACTIONS(377), - [anon_sym_return] = ACTIONS(377), - [anon_sym_static] = ACTIONS(377), - [anon_sym_struct] = ACTIONS(377), - [anon_sym_trait] = ACTIONS(377), - [anon_sym_type] = ACTIONS(377), - [anon_sym_union] = ACTIONS(377), - [anon_sym_unsafe] = ACTIONS(377), - [anon_sym_use] = ACTIONS(377), - [anon_sym_while] = ACTIONS(377), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(377), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_else] = ACTIONS(379), - [anon_sym_move] = ACTIONS(377), - [anon_sym_DOT] = ACTIONS(377), - [sym_integer_literal] = ACTIONS(375), - [aux_sym_string_literal_token1] = ACTIONS(375), - [sym_char_literal] = ACTIONS(375), - [anon_sym_true] = ACTIONS(377), - [anon_sym_false] = ACTIONS(377), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(377), - [sym_super] = ACTIONS(377), - [sym_crate] = ACTIONS(377), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(375), - [sym_float_literal] = ACTIONS(375), + [19] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_QMARK] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(292), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_CARET] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(292), + [anon_sym_PIPE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(292), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_PLUS_EQ] = ACTIONS(286), + [anon_sym_DASH_EQ] = ACTIONS(286), + [anon_sym_STAR_EQ] = ACTIONS(286), + [anon_sym_SLASH_EQ] = ACTIONS(286), + [anon_sym_PERCENT_EQ] = ACTIONS(286), + [anon_sym_CARET_EQ] = ACTIONS(286), + [anon_sym_AMP_EQ] = ACTIONS(286), + [anon_sym_PIPE_EQ] = ACTIONS(286), + [anon_sym_LT_LT_EQ] = ACTIONS(286), + [anon_sym_GT_GT_EQ] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(292), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(292), + [anon_sym_DOT_DOT] = ACTIONS(292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(286), + [anon_sym_COMMA] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(292), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [33] = { - [sym_attribute_item] = STATE(39), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1114), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [20] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(19), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(318), + [anon_sym_as] = ACTIONS(316), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [34] = { - [sym_else_clause] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(383), - [sym_identifier] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_macro_rules_BANG] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(383), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u128] = ACTIONS(385), - [anon_sym_i128] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_str] = ACTIONS(385), - [anon_sym_char] = ACTIONS(385), - [anon_sym_SQUOTE] = ACTIONS(385), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(385), - [anon_sym_break] = ACTIONS(385), - [anon_sym_const] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_default] = ACTIONS(385), - [anon_sym_enum] = ACTIONS(385), - [anon_sym_fn] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_impl] = ACTIONS(385), - [anon_sym_let] = ACTIONS(385), - [anon_sym_loop] = ACTIONS(385), - [anon_sym_match] = ACTIONS(385), - [anon_sym_mod] = ACTIONS(385), - [anon_sym_pub] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_static] = ACTIONS(385), - [anon_sym_struct] = ACTIONS(385), - [anon_sym_trait] = ACTIONS(385), - [anon_sym_type] = ACTIONS(385), - [anon_sym_union] = ACTIONS(385), - [anon_sym_unsafe] = ACTIONS(385), - [anon_sym_use] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(383), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_else] = ACTIONS(379), - [anon_sym_move] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [sym_integer_literal] = ACTIONS(383), - [aux_sym_string_literal_token1] = ACTIONS(383), - [sym_char_literal] = ACTIONS(383), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(385), - [sym_super] = ACTIONS(385), - [sym_crate] = ACTIONS(385), - [sym_metavariable] = ACTIONS(383), - [sym_raw_string_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(383), + [21] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [35] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(275), + [22] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(324), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [36] = { - [ts_builtin_sym_end] = ACTIONS(389), - [sym_identifier] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_macro_rules_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(391), - [anon_sym_i8] = ACTIONS(391), - [anon_sym_u16] = ACTIONS(391), - [anon_sym_i16] = ACTIONS(391), - [anon_sym_u32] = ACTIONS(391), - [anon_sym_i32] = ACTIONS(391), - [anon_sym_u64] = ACTIONS(391), - [anon_sym_i64] = ACTIONS(391), - [anon_sym_u128] = ACTIONS(391), - [anon_sym_i128] = ACTIONS(391), - [anon_sym_isize] = ACTIONS(391), - [anon_sym_usize] = ACTIONS(391), - [anon_sym_f32] = ACTIONS(391), - [anon_sym_f64] = ACTIONS(391), - [anon_sym_bool] = ACTIONS(391), - [anon_sym_str] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(391), - [anon_sym_as] = ACTIONS(391), - [anon_sym_async] = ACTIONS(391), - [anon_sym_break] = ACTIONS(391), - [anon_sym_const] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_enum] = ACTIONS(391), - [anon_sym_fn] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_impl] = ACTIONS(391), - [anon_sym_let] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_match] = ACTIONS(391), - [anon_sym_mod] = ACTIONS(391), - [anon_sym_pub] = ACTIONS(391), - [anon_sym_return] = ACTIONS(391), - [anon_sym_static] = ACTIONS(391), - [anon_sym_struct] = ACTIONS(391), - [anon_sym_trait] = ACTIONS(391), - [anon_sym_type] = ACTIONS(391), - [anon_sym_union] = ACTIONS(391), - [anon_sym_unsafe] = ACTIONS(391), - [anon_sym_use] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_extern] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_else] = ACTIONS(391), - [anon_sym_move] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(391), - [sym_integer_literal] = ACTIONS(389), - [aux_sym_string_literal_token1] = ACTIONS(389), - [sym_char_literal] = ACTIONS(389), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(391), - [sym_super] = ACTIONS(391), - [sym_crate] = ACTIONS(391), - [sym_metavariable] = ACTIONS(389), - [sym_raw_string_literal] = ACTIONS(389), - [sym_float_literal] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_DOT] = ACTIONS(326), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_COMMA] = ACTIONS(324), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(326), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [37] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1103), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [23] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(338), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [38] = { - [ts_builtin_sym_end] = ACTIONS(393), - [sym_identifier] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_macro_rules_BANG] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(395), - [anon_sym_i8] = ACTIONS(395), - [anon_sym_u16] = ACTIONS(395), - [anon_sym_i16] = ACTIONS(395), - [anon_sym_u32] = ACTIONS(395), - [anon_sym_i32] = ACTIONS(395), - [anon_sym_u64] = ACTIONS(395), - [anon_sym_i64] = ACTIONS(395), - [anon_sym_u128] = ACTIONS(395), - [anon_sym_i128] = ACTIONS(395), - [anon_sym_isize] = ACTIONS(395), - [anon_sym_usize] = ACTIONS(395), - [anon_sym_f32] = ACTIONS(395), - [anon_sym_f64] = ACTIONS(395), - [anon_sym_bool] = ACTIONS(395), - [anon_sym_str] = ACTIONS(395), - [anon_sym_char] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_const] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_default] = ACTIONS(395), - [anon_sym_enum] = ACTIONS(395), - [anon_sym_fn] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_impl] = ACTIONS(395), - [anon_sym_let] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(395), - [anon_sym_match] = ACTIONS(395), - [anon_sym_mod] = ACTIONS(395), - [anon_sym_pub] = ACTIONS(395), - [anon_sym_return] = ACTIONS(395), - [anon_sym_static] = ACTIONS(395), - [anon_sym_struct] = ACTIONS(395), - [anon_sym_trait] = ACTIONS(395), - [anon_sym_type] = ACTIONS(395), - [anon_sym_union] = ACTIONS(395), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_use] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [anon_sym_POUND] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_extern] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_else] = ACTIONS(395), - [anon_sym_move] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(395), - [sym_integer_literal] = ACTIONS(393), - [aux_sym_string_literal_token1] = ACTIONS(393), - [sym_char_literal] = ACTIONS(393), - [anon_sym_true] = ACTIONS(395), - [anon_sym_false] = ACTIONS(395), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(395), - [sym_super] = ACTIONS(395), - [sym_crate] = ACTIONS(395), - [sym_metavariable] = ACTIONS(393), - [sym_raw_string_literal] = ACTIONS(393), - [sym_float_literal] = ACTIONS(393), + [24] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [39] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(275), + [25] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(340), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [40] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_macro_rules_BANG] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_const] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_fn] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_impl] = ACTIONS(399), - [anon_sym_let] = ACTIONS(399), - [anon_sym_loop] = ACTIONS(399), - [anon_sym_match] = ACTIONS(399), - [anon_sym_mod] = ACTIONS(399), - [anon_sym_pub] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_struct] = ACTIONS(399), - [anon_sym_trait] = ACTIONS(399), - [anon_sym_type] = ACTIONS(399), - [anon_sym_union] = ACTIONS(399), - [anon_sym_unsafe] = ACTIONS(399), - [anon_sym_use] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_extern] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_else] = ACTIONS(399), - [anon_sym_move] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(397), - [aux_sym_string_literal_token1] = ACTIONS(397), - [sym_char_literal] = ACTIONS(397), - [anon_sym_true] = ACTIONS(399), - [anon_sym_false] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_crate] = ACTIONS(399), - [sym_metavariable] = ACTIONS(397), - [sym_raw_string_literal] = ACTIONS(397), - [sym_float_literal] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(342), + [anon_sym_PERCENT] = ACTIONS(342), + [anon_sym_CARET] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(340), + [anon_sym_PIPE_PIPE] = ACTIONS(340), + [anon_sym_LT_LT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_PLUS_EQ] = ACTIONS(340), + [anon_sym_DASH_EQ] = ACTIONS(340), + [anon_sym_STAR_EQ] = ACTIONS(340), + [anon_sym_SLASH_EQ] = ACTIONS(340), + [anon_sym_PERCENT_EQ] = ACTIONS(340), + [anon_sym_CARET_EQ] = ACTIONS(340), + [anon_sym_AMP_EQ] = ACTIONS(340), + [anon_sym_PIPE_EQ] = ACTIONS(340), + [anon_sym_LT_LT_EQ] = ACTIONS(340), + [anon_sym_GT_GT_EQ] = ACTIONS(340), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(340), + [anon_sym_BANG_EQ] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(340), + [anon_sym_LT_EQ] = ACTIONS(340), + [anon_sym_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(340), + [anon_sym_COMMA] = ACTIONS(340), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(342), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [41] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(275), + [26] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(338), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [42] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [27] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1553), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_QMARK] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(292), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_CARET] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(292), + [anon_sym_PIPE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(292), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_PLUS_EQ] = ACTIONS(286), + [anon_sym_DASH_EQ] = ACTIONS(286), + [anon_sym_STAR_EQ] = ACTIONS(286), + [anon_sym_SLASH_EQ] = ACTIONS(286), + [anon_sym_PERCENT_EQ] = ACTIONS(286), + [anon_sym_CARET_EQ] = ACTIONS(286), + [anon_sym_AMP_EQ] = ACTIONS(286), + [anon_sym_PIPE_EQ] = ACTIONS(286), + [anon_sym_LT_LT_EQ] = ACTIONS(286), + [anon_sym_GT_GT_EQ] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(292), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(292), + [anon_sym_DOT_DOT] = ACTIONS(292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(292), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, - [43] = { - [ts_builtin_sym_end] = ACTIONS(401), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_macro_rules_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u128] = ACTIONS(403), - [anon_sym_i128] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_str] = ACTIONS(403), - [anon_sym_char] = ACTIONS(403), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(403), - [anon_sym_break] = ACTIONS(403), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_default] = ACTIONS(403), - [anon_sym_enum] = ACTIONS(403), - [anon_sym_fn] = ACTIONS(403), - [anon_sym_for] = ACTIONS(403), - [anon_sym_if] = ACTIONS(403), - [anon_sym_impl] = ACTIONS(403), - [anon_sym_let] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_match] = ACTIONS(403), - [anon_sym_mod] = ACTIONS(403), - [anon_sym_pub] = ACTIONS(403), - [anon_sym_return] = ACTIONS(403), - [anon_sym_static] = ACTIONS(403), - [anon_sym_struct] = ACTIONS(403), - [anon_sym_trait] = ACTIONS(403), - [anon_sym_type] = ACTIONS(403), - [anon_sym_union] = ACTIONS(403), - [anon_sym_unsafe] = ACTIONS(403), - [anon_sym_use] = ACTIONS(403), - [anon_sym_while] = ACTIONS(403), - [anon_sym_POUND] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_extern] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_move] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(403), - [sym_integer_literal] = ACTIONS(401), - [aux_sym_string_literal_token1] = ACTIONS(401), - [sym_char_literal] = ACTIONS(401), - [anon_sym_true] = ACTIONS(403), - [anon_sym_false] = ACTIONS(403), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(403), - [sym_super] = ACTIONS(403), - [sym_crate] = ACTIONS(403), - [sym_metavariable] = ACTIONS(401), - [sym_raw_string_literal] = ACTIONS(401), - [sym_float_literal] = ACTIONS(401), + [28] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1521), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_EQ_GT] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(338), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, - [44] = { - [ts_builtin_sym_end] = ACTIONS(405), - [sym_identifier] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(405), - [anon_sym_macro_rules_BANG] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(405), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(405), - [anon_sym_u8] = ACTIONS(407), - [anon_sym_i8] = ACTIONS(407), - [anon_sym_u16] = ACTIONS(407), - [anon_sym_i16] = ACTIONS(407), - [anon_sym_u32] = ACTIONS(407), - [anon_sym_i32] = ACTIONS(407), - [anon_sym_u64] = ACTIONS(407), - [anon_sym_i64] = ACTIONS(407), - [anon_sym_u128] = ACTIONS(407), - [anon_sym_i128] = ACTIONS(407), - [anon_sym_isize] = ACTIONS(407), - [anon_sym_usize] = ACTIONS(407), - [anon_sym_f32] = ACTIONS(407), - [anon_sym_f64] = ACTIONS(407), - [anon_sym_bool] = ACTIONS(407), - [anon_sym_str] = ACTIONS(407), - [anon_sym_char] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(407), - [anon_sym_as] = ACTIONS(407), - [anon_sym_async] = ACTIONS(407), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(407), - [anon_sym_continue] = ACTIONS(407), - [anon_sym_default] = ACTIONS(407), - [anon_sym_enum] = ACTIONS(407), - [anon_sym_fn] = ACTIONS(407), - [anon_sym_for] = ACTIONS(407), - [anon_sym_if] = ACTIONS(407), - [anon_sym_impl] = ACTIONS(407), - [anon_sym_let] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(407), - [anon_sym_match] = ACTIONS(407), - [anon_sym_mod] = ACTIONS(407), - [anon_sym_pub] = ACTIONS(407), - [anon_sym_return] = ACTIONS(407), - [anon_sym_static] = ACTIONS(407), - [anon_sym_struct] = ACTIONS(407), - [anon_sym_trait] = ACTIONS(407), - [anon_sym_type] = ACTIONS(407), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(407), - [anon_sym_use] = ACTIONS(407), - [anon_sym_while] = ACTIONS(407), - [anon_sym_POUND] = ACTIONS(405), - [anon_sym_BANG] = ACTIONS(407), - [anon_sym_EQ] = ACTIONS(407), - [anon_sym_extern] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_COLON_COLON] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(405), - [anon_sym_DOT_DOT] = ACTIONS(407), - [anon_sym_DOT_DOT_EQ] = ACTIONS(405), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_AMP_AMP] = ACTIONS(405), - [anon_sym_PIPE_PIPE] = ACTIONS(405), - [anon_sym_PIPE] = ACTIONS(407), - [anon_sym_CARET] = ACTIONS(407), - [anon_sym_EQ_EQ] = ACTIONS(405), - [anon_sym_BANG_EQ] = ACTIONS(405), - [anon_sym_LT_EQ] = ACTIONS(405), - [anon_sym_GT_EQ] = ACTIONS(405), - [anon_sym_LT_LT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_PLUS_EQ] = ACTIONS(405), - [anon_sym_DASH_EQ] = ACTIONS(405), - [anon_sym_STAR_EQ] = ACTIONS(405), - [anon_sym_SLASH_EQ] = ACTIONS(405), - [anon_sym_PERCENT_EQ] = ACTIONS(405), - [anon_sym_AMP_EQ] = ACTIONS(405), - [anon_sym_PIPE_EQ] = ACTIONS(405), - [anon_sym_CARET_EQ] = ACTIONS(405), - [anon_sym_LT_LT_EQ] = ACTIONS(405), - [anon_sym_GT_GT_EQ] = ACTIONS(405), - [anon_sym_move] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(407), - [sym_integer_literal] = ACTIONS(405), - [aux_sym_string_literal_token1] = ACTIONS(405), - [sym_char_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(407), - [sym_super] = ACTIONS(407), - [sym_crate] = ACTIONS(407), - [sym_metavariable] = ACTIONS(405), - [sym_raw_string_literal] = ACTIONS(405), - [sym_float_literal] = ACTIONS(405), + [29] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1525), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(27), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_EQ_GT] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_as] = ACTIONS(316), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, - [45] = { - [ts_builtin_sym_end] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_macro_rules_BANG] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(411), - [anon_sym_as] = ACTIONS(411), - [anon_sym_async] = ACTIONS(411), - [anon_sym_break] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(411), - [anon_sym_enum] = ACTIONS(411), - [anon_sym_fn] = ACTIONS(411), - [anon_sym_for] = ACTIONS(411), - [anon_sym_if] = ACTIONS(411), - [anon_sym_impl] = ACTIONS(411), - [anon_sym_let] = ACTIONS(411), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(411), - [anon_sym_mod] = ACTIONS(411), - [anon_sym_pub] = ACTIONS(411), - [anon_sym_return] = ACTIONS(411), - [anon_sym_static] = ACTIONS(411), - [anon_sym_struct] = ACTIONS(411), - [anon_sym_trait] = ACTIONS(411), - [anon_sym_type] = ACTIONS(411), - [anon_sym_union] = ACTIONS(411), - [anon_sym_unsafe] = ACTIONS(411), - [anon_sym_use] = ACTIONS(411), - [anon_sym_while] = ACTIONS(411), - [anon_sym_POUND] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_extern] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_COLON_COLON] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(409), - [anon_sym_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_CARET] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_BANG_EQ] = ACTIONS(409), - [anon_sym_LT_EQ] = ACTIONS(409), - [anon_sym_GT_EQ] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_PERCENT] = ACTIONS(411), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_move] = ACTIONS(411), - [anon_sym_DOT] = ACTIONS(411), - [sym_integer_literal] = ACTIONS(409), - [aux_sym_string_literal_token1] = ACTIONS(409), - [sym_char_literal] = ACTIONS(409), - [anon_sym_true] = ACTIONS(411), - [anon_sym_false] = ACTIONS(411), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(411), - [sym_super] = ACTIONS(411), - [sym_crate] = ACTIONS(411), - [sym_metavariable] = ACTIONS(409), - [sym_raw_string_literal] = ACTIONS(409), - [sym_float_literal] = ACTIONS(409), + [30] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1531), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_EQ_GT] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_SLASH] = ACTIONS(342), + [anon_sym_PERCENT] = ACTIONS(342), + [anon_sym_CARET] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(340), + [anon_sym_PIPE_PIPE] = ACTIONS(340), + [anon_sym_LT_LT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_PLUS_EQ] = ACTIONS(340), + [anon_sym_DASH_EQ] = ACTIONS(340), + [anon_sym_STAR_EQ] = ACTIONS(340), + [anon_sym_SLASH_EQ] = ACTIONS(340), + [anon_sym_PERCENT_EQ] = ACTIONS(340), + [anon_sym_CARET_EQ] = ACTIONS(340), + [anon_sym_AMP_EQ] = ACTIONS(340), + [anon_sym_PIPE_EQ] = ACTIONS(340), + [anon_sym_LT_LT_EQ] = ACTIONS(340), + [anon_sym_GT_GT_EQ] = ACTIONS(340), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(340), + [anon_sym_BANG_EQ] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(340), + [anon_sym_LT_EQ] = ACTIONS(340), + [anon_sym_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(340), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(342), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, - [46] = { - [ts_builtin_sym_end] = ACTIONS(413), - [sym_identifier] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_macro_rules_BANG] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_LBRACK] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(415), - [anon_sym_QMARK] = ACTIONS(413), - [anon_sym_u8] = ACTIONS(415), - [anon_sym_i8] = ACTIONS(415), - [anon_sym_u16] = ACTIONS(415), - [anon_sym_i16] = ACTIONS(415), - [anon_sym_u32] = ACTIONS(415), - [anon_sym_i32] = ACTIONS(415), - [anon_sym_u64] = ACTIONS(415), - [anon_sym_i64] = ACTIONS(415), - [anon_sym_u128] = ACTIONS(415), - [anon_sym_i128] = ACTIONS(415), - [anon_sym_isize] = ACTIONS(415), - [anon_sym_usize] = ACTIONS(415), - [anon_sym_f32] = ACTIONS(415), - [anon_sym_f64] = ACTIONS(415), - [anon_sym_bool] = ACTIONS(415), - [anon_sym_str] = ACTIONS(415), - [anon_sym_char] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(415), - [anon_sym_as] = ACTIONS(415), - [anon_sym_async] = ACTIONS(415), - [anon_sym_break] = ACTIONS(415), - [anon_sym_const] = ACTIONS(415), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_default] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(415), - [anon_sym_fn] = ACTIONS(415), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(415), - [anon_sym_impl] = ACTIONS(415), - [anon_sym_let] = ACTIONS(415), - [anon_sym_loop] = ACTIONS(415), - [anon_sym_match] = ACTIONS(415), - [anon_sym_mod] = ACTIONS(415), - [anon_sym_pub] = ACTIONS(415), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(415), - [anon_sym_struct] = ACTIONS(415), - [anon_sym_trait] = ACTIONS(415), - [anon_sym_type] = ACTIONS(415), - [anon_sym_union] = ACTIONS(415), - [anon_sym_unsafe] = ACTIONS(415), - [anon_sym_use] = ACTIONS(415), - [anon_sym_while] = ACTIONS(415), - [anon_sym_POUND] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(415), - [anon_sym_extern] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_COLON_COLON] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(413), - [anon_sym_DOT_DOT] = ACTIONS(415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_CARET] = ACTIONS(415), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_SLASH] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(415), - [anon_sym_PLUS_EQ] = ACTIONS(413), - [anon_sym_DASH_EQ] = ACTIONS(413), - [anon_sym_STAR_EQ] = ACTIONS(413), - [anon_sym_SLASH_EQ] = ACTIONS(413), - [anon_sym_PERCENT_EQ] = ACTIONS(413), - [anon_sym_AMP_EQ] = ACTIONS(413), - [anon_sym_PIPE_EQ] = ACTIONS(413), - [anon_sym_CARET_EQ] = ACTIONS(413), - [anon_sym_LT_LT_EQ] = ACTIONS(413), - [anon_sym_GT_GT_EQ] = ACTIONS(413), - [anon_sym_move] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(415), - [sym_integer_literal] = ACTIONS(413), - [aux_sym_string_literal_token1] = ACTIONS(413), - [sym_char_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(415), - [sym_super] = ACTIONS(415), - [sym_crate] = ACTIONS(415), - [sym_metavariable] = ACTIONS(413), - [sym_raw_string_literal] = ACTIONS(413), - [sym_float_literal] = ACTIONS(413), + [31] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1533), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_EQ_GT] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_DOT] = ACTIONS(326), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(326), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(417), - [sym_identifier] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_macro_rules_BANG] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_u8] = ACTIONS(419), - [anon_sym_i8] = ACTIONS(419), - [anon_sym_u16] = ACTIONS(419), - [anon_sym_i16] = ACTIONS(419), - [anon_sym_u32] = ACTIONS(419), - [anon_sym_i32] = ACTIONS(419), - [anon_sym_u64] = ACTIONS(419), - [anon_sym_i64] = ACTIONS(419), - [anon_sym_u128] = ACTIONS(419), - [anon_sym_i128] = ACTIONS(419), - [anon_sym_isize] = ACTIONS(419), - [anon_sym_usize] = ACTIONS(419), - [anon_sym_f32] = ACTIONS(419), - [anon_sym_f64] = ACTIONS(419), - [anon_sym_bool] = ACTIONS(419), - [anon_sym_str] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(419), - [anon_sym_as] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(419), - [anon_sym_fn] = ACTIONS(419), - [anon_sym_for] = ACTIONS(419), - [anon_sym_if] = ACTIONS(419), - [anon_sym_impl] = ACTIONS(419), - [anon_sym_let] = ACTIONS(419), - [anon_sym_loop] = ACTIONS(419), - [anon_sym_match] = ACTIONS(419), - [anon_sym_mod] = ACTIONS(419), - [anon_sym_pub] = ACTIONS(419), - [anon_sym_return] = ACTIONS(419), - [anon_sym_static] = ACTIONS(419), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_trait] = ACTIONS(419), - [anon_sym_type] = ACTIONS(419), - [anon_sym_union] = ACTIONS(419), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_use] = ACTIONS(419), - [anon_sym_while] = ACTIONS(419), - [anon_sym_POUND] = ACTIONS(417), - [anon_sym_BANG] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_extern] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_COLON_COLON] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), - [anon_sym_STAR_EQ] = ACTIONS(417), - [anon_sym_SLASH_EQ] = ACTIONS(417), - [anon_sym_PERCENT_EQ] = ACTIONS(417), - [anon_sym_AMP_EQ] = ACTIONS(417), - [anon_sym_PIPE_EQ] = ACTIONS(417), - [anon_sym_CARET_EQ] = ACTIONS(417), - [anon_sym_LT_LT_EQ] = ACTIONS(417), - [anon_sym_GT_GT_EQ] = ACTIONS(417), - [anon_sym_move] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(419), - [sym_integer_literal] = ACTIONS(417), - [aux_sym_string_literal_token1] = ACTIONS(417), - [sym_char_literal] = ACTIONS(417), - [anon_sym_true] = ACTIONS(419), - [anon_sym_false] = ACTIONS(419), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_crate] = ACTIONS(419), - [sym_metavariable] = ACTIONS(417), - [sym_raw_string_literal] = ACTIONS(417), - [sym_float_literal] = ACTIONS(417), + [32] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [33] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [ts_builtin_sym_end] = ACTIONS(423), - [sym_identifier] = ACTIONS(425), - [anon_sym_SEMI] = ACTIONS(423), - [anon_sym_macro_rules_BANG] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(425), - [anon_sym_i8] = ACTIONS(425), - [anon_sym_u16] = ACTIONS(425), - [anon_sym_i16] = ACTIONS(425), - [anon_sym_u32] = ACTIONS(425), - [anon_sym_i32] = ACTIONS(425), - [anon_sym_u64] = ACTIONS(425), - [anon_sym_i64] = ACTIONS(425), - [anon_sym_u128] = ACTIONS(425), - [anon_sym_i128] = ACTIONS(425), - [anon_sym_isize] = ACTIONS(425), - [anon_sym_usize] = ACTIONS(425), - [anon_sym_f32] = ACTIONS(425), - [anon_sym_f64] = ACTIONS(425), - [anon_sym_bool] = ACTIONS(425), - [anon_sym_str] = ACTIONS(425), - [anon_sym_char] = ACTIONS(425), - [anon_sym_SQUOTE] = ACTIONS(425), - [anon_sym_as] = ACTIONS(425), - [anon_sym_async] = ACTIONS(425), - [anon_sym_break] = ACTIONS(425), - [anon_sym_const] = ACTIONS(425), - [anon_sym_continue] = ACTIONS(425), - [anon_sym_default] = ACTIONS(425), - [anon_sym_enum] = ACTIONS(425), - [anon_sym_fn] = ACTIONS(425), - [anon_sym_for] = ACTIONS(425), - [anon_sym_if] = ACTIONS(425), - [anon_sym_impl] = ACTIONS(425), - [anon_sym_let] = ACTIONS(425), - [anon_sym_loop] = ACTIONS(425), - [anon_sym_match] = ACTIONS(425), - [anon_sym_mod] = ACTIONS(425), - [anon_sym_pub] = ACTIONS(425), - [anon_sym_return] = ACTIONS(425), - [anon_sym_static] = ACTIONS(425), - [anon_sym_struct] = ACTIONS(425), - [anon_sym_trait] = ACTIONS(425), - [anon_sym_type] = ACTIONS(425), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_use] = ACTIONS(425), - [anon_sym_while] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_extern] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(425), - [anon_sym_COLON_COLON] = ACTIONS(423), - [anon_sym_AMP] = ACTIONS(425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(425), - [anon_sym_AMP_AMP] = ACTIONS(423), - [anon_sym_PIPE_PIPE] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_CARET] = ACTIONS(425), - [anon_sym_EQ_EQ] = ACTIONS(423), - [anon_sym_BANG_EQ] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(425), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_SLASH] = ACTIONS(425), - [anon_sym_PERCENT] = ACTIONS(425), - [anon_sym_PLUS_EQ] = ACTIONS(423), - [anon_sym_DASH_EQ] = ACTIONS(423), - [anon_sym_STAR_EQ] = ACTIONS(423), - [anon_sym_SLASH_EQ] = ACTIONS(423), - [anon_sym_PERCENT_EQ] = ACTIONS(423), - [anon_sym_AMP_EQ] = ACTIONS(423), - [anon_sym_PIPE_EQ] = ACTIONS(423), - [anon_sym_CARET_EQ] = ACTIONS(423), - [anon_sym_LT_LT_EQ] = ACTIONS(423), - [anon_sym_GT_GT_EQ] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(425), - [sym_integer_literal] = ACTIONS(423), - [aux_sym_string_literal_token1] = ACTIONS(423), - [sym_char_literal] = ACTIONS(423), - [anon_sym_true] = ACTIONS(425), - [anon_sym_false] = ACTIONS(425), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(425), - [sym_super] = ACTIONS(425), - [sym_crate] = ACTIONS(425), - [sym_metavariable] = ACTIONS(423), - [sym_raw_string_literal] = ACTIONS(423), - [sym_float_literal] = ACTIONS(423), + [34] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1521), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_EQ_GT] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(338), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(427), - [sym_identifier] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(427), - [anon_sym_macro_rules_BANG] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(429), - [anon_sym_QMARK] = ACTIONS(427), - [anon_sym_u8] = ACTIONS(429), - [anon_sym_i8] = ACTIONS(429), - [anon_sym_u16] = ACTIONS(429), - [anon_sym_i16] = ACTIONS(429), - [anon_sym_u32] = ACTIONS(429), - [anon_sym_i32] = ACTIONS(429), - [anon_sym_u64] = ACTIONS(429), - [anon_sym_i64] = ACTIONS(429), - [anon_sym_u128] = ACTIONS(429), - [anon_sym_i128] = ACTIONS(429), - [anon_sym_isize] = ACTIONS(429), - [anon_sym_usize] = ACTIONS(429), - [anon_sym_f32] = ACTIONS(429), - [anon_sym_f64] = ACTIONS(429), - [anon_sym_bool] = ACTIONS(429), - [anon_sym_str] = ACTIONS(429), - [anon_sym_char] = ACTIONS(429), - [anon_sym_SQUOTE] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_async] = ACTIONS(429), - [anon_sym_break] = ACTIONS(429), - [anon_sym_const] = ACTIONS(429), - [anon_sym_continue] = ACTIONS(429), - [anon_sym_default] = ACTIONS(429), - [anon_sym_enum] = ACTIONS(429), - [anon_sym_fn] = ACTIONS(429), - [anon_sym_for] = ACTIONS(429), - [anon_sym_if] = ACTIONS(429), - [anon_sym_impl] = ACTIONS(429), - [anon_sym_let] = ACTIONS(429), - [anon_sym_loop] = ACTIONS(429), - [anon_sym_match] = ACTIONS(429), - [anon_sym_mod] = ACTIONS(429), - [anon_sym_pub] = ACTIONS(429), - [anon_sym_return] = ACTIONS(429), - [anon_sym_static] = ACTIONS(429), - [anon_sym_struct] = ACTIONS(429), - [anon_sym_trait] = ACTIONS(429), - [anon_sym_type] = ACTIONS(429), - [anon_sym_union] = ACTIONS(429), - [anon_sym_unsafe] = ACTIONS(429), - [anon_sym_use] = ACTIONS(429), - [anon_sym_while] = ACTIONS(429), - [anon_sym_POUND] = ACTIONS(427), - [anon_sym_BANG] = ACTIONS(429), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_extern] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_GT] = ACTIONS(429), - [anon_sym_COLON_COLON] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_AMP_AMP] = ACTIONS(427), - [anon_sym_PIPE_PIPE] = ACTIONS(427), - [anon_sym_PIPE] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(429), - [anon_sym_EQ_EQ] = ACTIONS(427), - [anon_sym_BANG_EQ] = ACTIONS(427), - [anon_sym_LT_EQ] = ACTIONS(427), - [anon_sym_GT_EQ] = ACTIONS(427), - [anon_sym_LT_LT] = ACTIONS(429), - [anon_sym_GT_GT] = ACTIONS(429), - [anon_sym_SLASH] = ACTIONS(429), - [anon_sym_PERCENT] = ACTIONS(429), - [anon_sym_PLUS_EQ] = ACTIONS(427), - [anon_sym_DASH_EQ] = ACTIONS(427), - [anon_sym_STAR_EQ] = ACTIONS(427), - [anon_sym_SLASH_EQ] = ACTIONS(427), - [anon_sym_PERCENT_EQ] = ACTIONS(427), - [anon_sym_AMP_EQ] = ACTIONS(427), - [anon_sym_PIPE_EQ] = ACTIONS(427), - [anon_sym_CARET_EQ] = ACTIONS(427), - [anon_sym_LT_LT_EQ] = ACTIONS(427), - [anon_sym_GT_GT_EQ] = ACTIONS(427), - [anon_sym_move] = ACTIONS(429), - [anon_sym_DOT] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [aux_sym_string_literal_token1] = ACTIONS(427), - [sym_char_literal] = ACTIONS(427), - [anon_sym_true] = ACTIONS(429), - [anon_sym_false] = ACTIONS(429), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_crate] = ACTIONS(429), - [sym_metavariable] = ACTIONS(427), - [sym_raw_string_literal] = ACTIONS(427), - [sym_float_literal] = ACTIONS(427), + [35] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(286), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_QMARK] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(292), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_CARET] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(292), + [anon_sym_PIPE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(292), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_PLUS_EQ] = ACTIONS(286), + [anon_sym_DASH_EQ] = ACTIONS(286), + [anon_sym_STAR_EQ] = ACTIONS(286), + [anon_sym_SLASH_EQ] = ACTIONS(286), + [anon_sym_PERCENT_EQ] = ACTIONS(286), + [anon_sym_CARET_EQ] = ACTIONS(286), + [anon_sym_AMP_EQ] = ACTIONS(286), + [anon_sym_PIPE_EQ] = ACTIONS(286), + [anon_sym_LT_LT_EQ] = ACTIONS(286), + [anon_sym_GT_GT_EQ] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(292), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(292), + [anon_sym_DOT_DOT] = ACTIONS(292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(292), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(431), - [sym_identifier] = ACTIONS(433), - [anon_sym_SEMI] = ACTIONS(431), - [anon_sym_macro_rules_BANG] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_u8] = ACTIONS(433), - [anon_sym_i8] = ACTIONS(433), - [anon_sym_u16] = ACTIONS(433), - [anon_sym_i16] = ACTIONS(433), - [anon_sym_u32] = ACTIONS(433), - [anon_sym_i32] = ACTIONS(433), - [anon_sym_u64] = ACTIONS(433), - [anon_sym_i64] = ACTIONS(433), - [anon_sym_u128] = ACTIONS(433), - [anon_sym_i128] = ACTIONS(433), - [anon_sym_isize] = ACTIONS(433), - [anon_sym_usize] = ACTIONS(433), - [anon_sym_f32] = ACTIONS(433), - [anon_sym_f64] = ACTIONS(433), - [anon_sym_bool] = ACTIONS(433), - [anon_sym_str] = ACTIONS(433), - [anon_sym_char] = ACTIONS(433), - [anon_sym_SQUOTE] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_async] = ACTIONS(433), - [anon_sym_break] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(433), - [anon_sym_default] = ACTIONS(433), - [anon_sym_enum] = ACTIONS(433), - [anon_sym_fn] = ACTIONS(433), - [anon_sym_for] = ACTIONS(433), - [anon_sym_if] = ACTIONS(433), - [anon_sym_impl] = ACTIONS(433), - [anon_sym_let] = ACTIONS(433), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(433), - [anon_sym_mod] = ACTIONS(433), - [anon_sym_pub] = ACTIONS(433), - [anon_sym_return] = ACTIONS(433), - [anon_sym_static] = ACTIONS(433), - [anon_sym_struct] = ACTIONS(433), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_type] = ACTIONS(433), - [anon_sym_union] = ACTIONS(433), - [anon_sym_unsafe] = ACTIONS(433), - [anon_sym_use] = ACTIONS(433), - [anon_sym_while] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_extern] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_COLON_COLON] = ACTIONS(431), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [anon_sym_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_move] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(431), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(433), - [sym_super] = ACTIONS(433), - [sym_crate] = ACTIONS(433), - [sym_metavariable] = ACTIONS(431), - [sym_raw_string_literal] = ACTIONS(431), - [sym_float_literal] = ACTIONS(431), + [36] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(338), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [52] = { - [ts_builtin_sym_end] = ACTIONS(435), - [sym_identifier] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(435), - [anon_sym_macro_rules_BANG] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_QMARK] = 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_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_str] = ACTIONS(437), - [anon_sym_char] = ACTIONS(437), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_async] = ACTIONS(437), - [anon_sym_break] = ACTIONS(437), - [anon_sym_const] = ACTIONS(437), - [anon_sym_continue] = ACTIONS(437), - [anon_sym_default] = 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_loop] = ACTIONS(437), - [anon_sym_match] = ACTIONS(437), - [anon_sym_mod] = ACTIONS(437), - [anon_sym_pub] = ACTIONS(437), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(437), - [anon_sym_struct] = ACTIONS(437), - [anon_sym_trait] = ACTIONS(437), - [anon_sym_type] = ACTIONS(437), - [anon_sym_union] = ACTIONS(437), - [anon_sym_unsafe] = 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_extern] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_COLON_COLON] = ACTIONS(435), - [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_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(437), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(435), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [37] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [53] = { - [ts_builtin_sym_end] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(439), - [anon_sym_macro_rules_BANG] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = 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_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_str] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_async] = ACTIONS(441), - [anon_sym_break] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(441), - [anon_sym_default] = 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_loop] = ACTIONS(441), - [anon_sym_match] = ACTIONS(441), - [anon_sym_mod] = ACTIONS(441), - [anon_sym_pub] = ACTIONS(441), - [anon_sym_return] = ACTIONS(441), - [anon_sym_static] = ACTIONS(441), - [anon_sym_struct] = ACTIONS(441), - [anon_sym_trait] = ACTIONS(441), - [anon_sym_type] = ACTIONS(441), - [anon_sym_union] = ACTIONS(441), - [anon_sym_unsafe] = 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_extern] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [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_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_super] = ACTIONS(441), - [sym_crate] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), + [38] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(338), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(443), - [sym_identifier] = ACTIONS(445), - [anon_sym_SEMI] = ACTIONS(443), - [anon_sym_macro_rules_BANG] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_u8] = ACTIONS(445), - [anon_sym_i8] = ACTIONS(445), - [anon_sym_u16] = ACTIONS(445), - [anon_sym_i16] = ACTIONS(445), - [anon_sym_u32] = ACTIONS(445), - [anon_sym_i32] = ACTIONS(445), - [anon_sym_u64] = ACTIONS(445), - [anon_sym_i64] = ACTIONS(445), - [anon_sym_u128] = ACTIONS(445), - [anon_sym_i128] = ACTIONS(445), - [anon_sym_isize] = ACTIONS(445), - [anon_sym_usize] = ACTIONS(445), - [anon_sym_f32] = ACTIONS(445), - [anon_sym_f64] = ACTIONS(445), - [anon_sym_bool] = ACTIONS(445), - [anon_sym_str] = ACTIONS(445), - [anon_sym_char] = ACTIONS(445), - [anon_sym_SQUOTE] = ACTIONS(445), - [anon_sym_as] = ACTIONS(445), - [anon_sym_async] = ACTIONS(445), - [anon_sym_break] = ACTIONS(445), - [anon_sym_const] = ACTIONS(445), - [anon_sym_continue] = ACTIONS(445), - [anon_sym_default] = ACTIONS(445), - [anon_sym_enum] = ACTIONS(445), - [anon_sym_fn] = ACTIONS(445), - [anon_sym_for] = ACTIONS(445), - [anon_sym_if] = ACTIONS(445), - [anon_sym_impl] = ACTIONS(445), - [anon_sym_let] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(445), - [anon_sym_match] = ACTIONS(445), - [anon_sym_mod] = ACTIONS(445), - [anon_sym_pub] = ACTIONS(445), - [anon_sym_return] = ACTIONS(445), - [anon_sym_static] = ACTIONS(445), - [anon_sym_struct] = ACTIONS(445), - [anon_sym_trait] = ACTIONS(445), - [anon_sym_type] = ACTIONS(445), - [anon_sym_union] = ACTIONS(445), - [anon_sym_unsafe] = ACTIONS(445), - [anon_sym_use] = ACTIONS(445), - [anon_sym_while] = ACTIONS(445), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_extern] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_GT] = ACTIONS(445), - [anon_sym_COLON_COLON] = ACTIONS(443), - [anon_sym_AMP] = ACTIONS(445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(443), - [anon_sym_DOT_DOT] = ACTIONS(445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_CARET] = ACTIONS(445), - [anon_sym_EQ_EQ] = ACTIONS(443), - [anon_sym_BANG_EQ] = ACTIONS(443), - [anon_sym_LT_EQ] = ACTIONS(443), - [anon_sym_GT_EQ] = ACTIONS(443), - [anon_sym_LT_LT] = ACTIONS(445), - [anon_sym_GT_GT] = ACTIONS(445), - [anon_sym_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(443), - [anon_sym_DASH_EQ] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(443), - [anon_sym_SLASH_EQ] = ACTIONS(443), - [anon_sym_PERCENT_EQ] = ACTIONS(443), - [anon_sym_AMP_EQ] = ACTIONS(443), - [anon_sym_PIPE_EQ] = ACTIONS(443), - [anon_sym_CARET_EQ] = ACTIONS(443), - [anon_sym_LT_LT_EQ] = ACTIONS(443), - [anon_sym_GT_GT_EQ] = ACTIONS(443), - [anon_sym_move] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(445), - [sym_integer_literal] = ACTIONS(443), - [aux_sym_string_literal_token1] = ACTIONS(443), - [sym_char_literal] = ACTIONS(443), - [anon_sym_true] = ACTIONS(445), - [anon_sym_false] = ACTIONS(445), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(445), - [sym_super] = ACTIONS(445), - [sym_crate] = ACTIONS(445), - [sym_metavariable] = ACTIONS(443), - [sym_raw_string_literal] = ACTIONS(443), - [sym_float_literal] = ACTIONS(443), + [39] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1485), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_DOT] = ACTIONS(326), + [anon_sym_DOT_DOT] = ACTIONS(432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(326), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(447), - [sym_identifier] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_macro_rules_BANG] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_QMARK] = 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_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_str] = ACTIONS(449), - [anon_sym_char] = ACTIONS(449), - [anon_sym_SQUOTE] = ACTIONS(449), - [anon_sym_as] = ACTIONS(449), - [anon_sym_async] = ACTIONS(449), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(449), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_default] = 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_loop] = ACTIONS(449), - [anon_sym_match] = ACTIONS(449), - [anon_sym_mod] = ACTIONS(449), - [anon_sym_pub] = ACTIONS(449), - [anon_sym_return] = ACTIONS(449), - [anon_sym_static] = ACTIONS(449), - [anon_sym_struct] = ACTIONS(449), - [anon_sym_trait] = ACTIONS(449), - [anon_sym_type] = ACTIONS(449), - [anon_sym_union] = ACTIONS(449), - [anon_sym_unsafe] = 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_extern] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_COLON_COLON] = ACTIONS(447), - [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_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(449), - [sym_super] = ACTIONS(449), - [sym_crate] = ACTIONS(449), - [sym_metavariable] = ACTIONS(447), - [sym_raw_string_literal] = ACTIONS(447), - [sym_float_literal] = ACTIONS(447), + [40] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1537), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(342), + [anon_sym_PERCENT] = ACTIONS(342), + [anon_sym_CARET] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(340), + [anon_sym_PIPE_PIPE] = ACTIONS(340), + [anon_sym_LT_LT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_PLUS_EQ] = ACTIONS(340), + [anon_sym_DASH_EQ] = ACTIONS(340), + [anon_sym_STAR_EQ] = ACTIONS(340), + [anon_sym_SLASH_EQ] = ACTIONS(340), + [anon_sym_PERCENT_EQ] = ACTIONS(340), + [anon_sym_CARET_EQ] = ACTIONS(340), + [anon_sym_AMP_EQ] = ACTIONS(340), + [anon_sym_PIPE_EQ] = ACTIONS(340), + [anon_sym_LT_LT_EQ] = ACTIONS(340), + [anon_sym_GT_GT_EQ] = ACTIONS(340), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(340), + [anon_sym_BANG_EQ] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(340), + [anon_sym_LT_EQ] = ACTIONS(340), + [anon_sym_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT] = ACTIONS(432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(340), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(342), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(451), - [sym_identifier] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(451), - [anon_sym_macro_rules_BANG] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(453), - [anon_sym_i8] = ACTIONS(453), - [anon_sym_u16] = ACTIONS(453), - [anon_sym_i16] = ACTIONS(453), - [anon_sym_u32] = ACTIONS(453), - [anon_sym_i32] = ACTIONS(453), - [anon_sym_u64] = ACTIONS(453), - [anon_sym_i64] = ACTIONS(453), - [anon_sym_u128] = ACTIONS(453), - [anon_sym_i128] = ACTIONS(453), - [anon_sym_isize] = ACTIONS(453), - [anon_sym_usize] = ACTIONS(453), - [anon_sym_f32] = ACTIONS(453), - [anon_sym_f64] = ACTIONS(453), - [anon_sym_bool] = ACTIONS(453), - [anon_sym_str] = ACTIONS(453), - [anon_sym_char] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(453), - [anon_sym_as] = ACTIONS(453), - [anon_sym_async] = ACTIONS(453), - [anon_sym_break] = ACTIONS(453), - [anon_sym_const] = ACTIONS(453), - [anon_sym_continue] = ACTIONS(453), - [anon_sym_default] = ACTIONS(453), - [anon_sym_enum] = ACTIONS(453), - [anon_sym_fn] = ACTIONS(453), - [anon_sym_for] = ACTIONS(453), - [anon_sym_if] = ACTIONS(453), - [anon_sym_impl] = ACTIONS(453), - [anon_sym_let] = ACTIONS(453), - [anon_sym_loop] = ACTIONS(453), - [anon_sym_match] = ACTIONS(453), - [anon_sym_mod] = ACTIONS(453), - [anon_sym_pub] = ACTIONS(453), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(453), - [anon_sym_struct] = ACTIONS(453), - [anon_sym_trait] = ACTIONS(453), - [anon_sym_type] = ACTIONS(453), - [anon_sym_union] = ACTIONS(453), - [anon_sym_unsafe] = ACTIONS(453), - [anon_sym_use] = ACTIONS(453), - [anon_sym_while] = ACTIONS(453), - [anon_sym_POUND] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(453), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_extern] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_COLON_COLON] = ACTIONS(451), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(451), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(453), - [sym_super] = ACTIONS(453), - [sym_crate] = ACTIONS(453), - [sym_metavariable] = ACTIONS(451), - [sym_raw_string_literal] = ACTIONS(451), - [sym_float_literal] = ACTIONS(451), + [41] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1595), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(35), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(318), + [anon_sym_as] = ACTIONS(316), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), - [anon_sym_SEMI] = ACTIONS(459), - [anon_sym_macro_rules_BANG] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_as] = ACTIONS(461), - [anon_sym_async] = ACTIONS(457), - [anon_sym_break] = ACTIONS(457), - [anon_sym_const] = ACTIONS(457), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_default] = ACTIONS(457), - [anon_sym_enum] = ACTIONS(457), - [anon_sym_fn] = ACTIONS(457), - [anon_sym_for] = ACTIONS(457), - [anon_sym_if] = ACTIONS(457), - [anon_sym_impl] = ACTIONS(457), - [anon_sym_let] = ACTIONS(457), - [anon_sym_loop] = ACTIONS(457), - [anon_sym_match] = ACTIONS(457), - [anon_sym_mod] = ACTIONS(457), - [anon_sym_pub] = ACTIONS(457), - [anon_sym_return] = ACTIONS(457), - [anon_sym_static] = ACTIONS(457), - [anon_sym_struct] = ACTIONS(457), - [anon_sym_trait] = ACTIONS(457), - [anon_sym_type] = ACTIONS(457), - [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(457), - [anon_sym_use] = ACTIONS(457), - [anon_sym_while] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_extern] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(455), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_move] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(455), - [aux_sym_string_literal_token1] = ACTIONS(455), - [sym_char_literal] = ACTIONS(455), - [anon_sym_true] = ACTIONS(457), - [anon_sym_false] = ACTIONS(457), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(457), - [sym_crate] = ACTIONS(457), - [sym_metavariable] = ACTIONS(455), - [sym_raw_string_literal] = ACTIONS(455), - [sym_float_literal] = ACTIONS(455), + [42] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(463), - [sym_identifier] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_macro_rules_BANG] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(465), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_u8] = ACTIONS(465), - [anon_sym_i8] = ACTIONS(465), - [anon_sym_u16] = ACTIONS(465), - [anon_sym_i16] = ACTIONS(465), - [anon_sym_u32] = ACTIONS(465), - [anon_sym_i32] = ACTIONS(465), - [anon_sym_u64] = ACTIONS(465), - [anon_sym_i64] = ACTIONS(465), - [anon_sym_u128] = ACTIONS(465), - [anon_sym_i128] = ACTIONS(465), - [anon_sym_isize] = ACTIONS(465), - [anon_sym_usize] = ACTIONS(465), - [anon_sym_f32] = ACTIONS(465), - [anon_sym_f64] = ACTIONS(465), - [anon_sym_bool] = ACTIONS(465), - [anon_sym_str] = ACTIONS(465), - [anon_sym_char] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(465), - [anon_sym_as] = ACTIONS(465), - [anon_sym_async] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_default] = ACTIONS(465), - [anon_sym_enum] = ACTIONS(465), - [anon_sym_fn] = ACTIONS(465), - [anon_sym_for] = ACTIONS(465), - [anon_sym_if] = ACTIONS(465), - [anon_sym_impl] = ACTIONS(465), - [anon_sym_let] = ACTIONS(465), - [anon_sym_loop] = ACTIONS(465), - [anon_sym_match] = ACTIONS(465), - [anon_sym_mod] = ACTIONS(465), - [anon_sym_pub] = ACTIONS(465), - [anon_sym_return] = ACTIONS(465), - [anon_sym_static] = ACTIONS(465), - [anon_sym_struct] = ACTIONS(465), - [anon_sym_trait] = ACTIONS(465), - [anon_sym_type] = ACTIONS(465), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(465), - [anon_sym_use] = ACTIONS(465), - [anon_sym_while] = ACTIONS(465), - [anon_sym_POUND] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_EQ] = ACTIONS(465), - [anon_sym_extern] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_GT] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(463), - [anon_sym_DOT_DOT] = ACTIONS(465), - [anon_sym_DOT_DOT_EQ] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_CARET] = ACTIONS(465), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_LT_LT] = ACTIONS(465), - [anon_sym_GT_GT] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(465), - [anon_sym_PERCENT] = ACTIONS(465), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_move] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(465), - [sym_integer_literal] = ACTIONS(463), - [aux_sym_string_literal_token1] = ACTIONS(463), - [sym_char_literal] = ACTIONS(463), - [anon_sym_true] = ACTIONS(465), - [anon_sym_false] = ACTIONS(465), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(465), - [sym_super] = ACTIONS(465), - [sym_crate] = ACTIONS(465), - [sym_metavariable] = ACTIONS(463), - [sym_raw_string_literal] = ACTIONS(463), - [sym_float_literal] = ACTIONS(463), + [43] = { + [sym__token_pattern] = STATE(43), + [sym_token_tree_pattern] = STATE(43), + [sym_token_binding_pattern] = STATE(43), + [sym_token_repetition_pattern] = STATE(43), + [sym_non_special_punctuation] = STATE(43), + [sym__literal] = STATE(43), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_EQ_GT] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(443), + [anon_sym_COLON] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(437), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_AMP_AMP] = ACTIONS(437), + [anon_sym_PIPE_PIPE] = ACTIONS(437), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_DASH_EQ] = ACTIONS(437), + [anon_sym_STAR_EQ] = ACTIONS(437), + [anon_sym_SLASH_EQ] = ACTIONS(437), + [anon_sym_PERCENT_EQ] = ACTIONS(437), + [anon_sym_CARET_EQ] = ACTIONS(437), + [anon_sym_AMP_EQ] = ACTIONS(437), + [anon_sym_PIPE_EQ] = ACTIONS(437), + [anon_sym_LT_LT_EQ] = ACTIONS(437), + [anon_sym_GT_GT_EQ] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(437), + [anon_sym_BANG_EQ] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(437), + [anon_sym_LT_EQ] = ACTIONS(437), + [anon_sym_AT] = ACTIONS(437), + [anon_sym__] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(437), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(437), + [anon_sym_DASH_GT] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(437), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_isize] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_f32] = ACTIONS(434), + [anon_sym_f64] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_str] = ACTIONS(434), + [anon_sym_char] = ACTIONS(434), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_as] = ACTIONS(434), + [anon_sym_async] = ACTIONS(434), + [anon_sym_await] = ACTIONS(434), + [anon_sym_break] = ACTIONS(434), + [anon_sym_const] = ACTIONS(434), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_default] = ACTIONS(434), + [anon_sym_enum] = ACTIONS(434), + [anon_sym_fn] = ACTIONS(434), + [anon_sym_for] = ACTIONS(434), + [anon_sym_if] = ACTIONS(434), + [anon_sym_impl] = ACTIONS(434), + [anon_sym_let] = ACTIONS(434), + [anon_sym_loop] = ACTIONS(434), + [anon_sym_match] = ACTIONS(434), + [anon_sym_mod] = ACTIONS(434), + [anon_sym_pub] = ACTIONS(434), + [anon_sym_return] = ACTIONS(434), + [anon_sym_static] = ACTIONS(434), + [anon_sym_struct] = ACTIONS(434), + [anon_sym_trait] = ACTIONS(434), + [anon_sym_type] = ACTIONS(434), + [anon_sym_union] = ACTIONS(434), + [anon_sym_unsafe] = ACTIONS(434), + [anon_sym_use] = ACTIONS(434), + [anon_sym_where] = ACTIONS(434), + [anon_sym_while] = ACTIONS(434), + [sym_mutable_specifier] = ACTIONS(434), + [sym_integer_literal] = ACTIONS(457), + [aux_sym_string_literal_token1] = ACTIONS(460), + [sym_char_literal] = ACTIONS(457), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(434), + [sym_super] = ACTIONS(434), + [sym_crate] = ACTIONS(434), + [sym_metavariable] = ACTIONS(466), + [sym_raw_string_literal] = ACTIONS(457), + [sym_float_literal] = ACTIONS(457), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(467), + [44] = { + [sym__token_pattern] = STATE(43), + [sym_token_tree_pattern] = STATE(43), + [sym_token_binding_pattern] = STATE(43), + [sym_token_repetition_pattern] = STATE(43), + [sym_non_special_punctuation] = STATE(43), + [sym__literal] = STATE(43), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(43), [sym_identifier] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(467), - [anon_sym_macro_rules_BANG] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -21312,6 +21158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(469), [anon_sym_as] = ACTIONS(469), [anon_sym_async] = ACTIONS(469), + [anon_sym_await] = ACTIONS(469), [anon_sym_break] = ACTIONS(469), [anon_sym_const] = ACTIONS(469), [anon_sym_continue] = ACTIONS(469), @@ -21334,8185 +21181,7309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(469), [anon_sym_unsafe] = ACTIONS(469), [anon_sym_use] = ACTIONS(469), + [anon_sym_where] = ACTIONS(469), [anon_sym_while] = ACTIONS(469), - [anon_sym_POUND] = ACTIONS(467), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_EQ] = ACTIONS(469), - [anon_sym_extern] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(469), - [anon_sym_COLON_COLON] = ACTIONS(467), - [anon_sym_AMP] = ACTIONS(469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_AMP_AMP] = ACTIONS(467), - [anon_sym_PIPE_PIPE] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(469), - [anon_sym_CARET] = ACTIONS(469), - [anon_sym_EQ_EQ] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(467), - [anon_sym_LT_EQ] = ACTIONS(467), - [anon_sym_GT_EQ] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_GT_GT] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(469), - [anon_sym_PLUS_EQ] = ACTIONS(467), - [anon_sym_DASH_EQ] = ACTIONS(467), - [anon_sym_STAR_EQ] = ACTIONS(467), - [anon_sym_SLASH_EQ] = ACTIONS(467), - [anon_sym_PERCENT_EQ] = ACTIONS(467), - [anon_sym_AMP_EQ] = ACTIONS(467), - [anon_sym_PIPE_EQ] = ACTIONS(467), - [anon_sym_CARET_EQ] = ACTIONS(467), - [anon_sym_LT_LT_EQ] = ACTIONS(467), - [anon_sym_GT_GT_EQ] = ACTIONS(467), - [anon_sym_move] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(469), - [sym_integer_literal] = ACTIONS(467), - [aux_sym_string_literal_token1] = ACTIONS(467), - [sym_char_literal] = ACTIONS(467), - [anon_sym_true] = ACTIONS(469), - [anon_sym_false] = ACTIONS(469), + [sym_mutable_specifier] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(469), [sym_super] = ACTIONS(469), [sym_crate] = ACTIONS(469), - [sym_metavariable] = ACTIONS(467), - [sym_raw_string_literal] = ACTIONS(467), - [sym_float_literal] = ACTIONS(467), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(471), - [sym_identifier] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(471), - [anon_sym_macro_rules_BANG] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_LBRACE] = ACTIONS(471), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(473), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(473), - [anon_sym_i8] = ACTIONS(473), - [anon_sym_u16] = ACTIONS(473), - [anon_sym_i16] = ACTIONS(473), - [anon_sym_u32] = ACTIONS(473), - [anon_sym_i32] = ACTIONS(473), - [anon_sym_u64] = ACTIONS(473), - [anon_sym_i64] = ACTIONS(473), - [anon_sym_u128] = ACTIONS(473), - [anon_sym_i128] = ACTIONS(473), - [anon_sym_isize] = ACTIONS(473), - [anon_sym_usize] = ACTIONS(473), - [anon_sym_f32] = ACTIONS(473), - [anon_sym_f64] = ACTIONS(473), - [anon_sym_bool] = ACTIONS(473), - [anon_sym_str] = ACTIONS(473), - [anon_sym_char] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(473), - [anon_sym_as] = ACTIONS(461), - [anon_sym_async] = ACTIONS(473), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(473), - [anon_sym_default] = ACTIONS(473), - [anon_sym_enum] = ACTIONS(473), - [anon_sym_fn] = ACTIONS(473), - [anon_sym_for] = ACTIONS(473), - [anon_sym_if] = ACTIONS(473), - [anon_sym_impl] = ACTIONS(473), - [anon_sym_let] = ACTIONS(473), - [anon_sym_loop] = ACTIONS(473), - [anon_sym_match] = ACTIONS(473), - [anon_sym_mod] = ACTIONS(473), - [anon_sym_pub] = ACTIONS(473), - [anon_sym_return] = ACTIONS(473), - [anon_sym_static] = ACTIONS(473), - [anon_sym_struct] = ACTIONS(473), - [anon_sym_trait] = ACTIONS(473), - [anon_sym_type] = ACTIONS(473), - [anon_sym_union] = ACTIONS(473), - [anon_sym_unsafe] = ACTIONS(473), - [anon_sym_use] = ACTIONS(473), - [anon_sym_while] = ACTIONS(473), - [anon_sym_POUND] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_extern] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(473), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_move] = ACTIONS(473), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(471), - [aux_sym_string_literal_token1] = ACTIONS(471), - [sym_char_literal] = ACTIONS(471), - [anon_sym_true] = ACTIONS(473), - [anon_sym_false] = ACTIONS(473), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(473), - [sym_super] = ACTIONS(473), - [sym_crate] = ACTIONS(473), - [sym_metavariable] = ACTIONS(471), - [sym_raw_string_literal] = ACTIONS(471), - [sym_float_literal] = ACTIONS(471), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(475), - [sym_identifier] = ACTIONS(477), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_macro_rules_BANG] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_QMARK] = 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_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_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(477), - [anon_sym_as] = ACTIONS(477), - [anon_sym_async] = ACTIONS(477), - [anon_sym_break] = ACTIONS(477), - [anon_sym_const] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_default] = 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_loop] = ACTIONS(477), - [anon_sym_match] = ACTIONS(477), - [anon_sym_mod] = ACTIONS(477), - [anon_sym_pub] = ACTIONS(477), - [anon_sym_return] = ACTIONS(477), - [anon_sym_static] = ACTIONS(477), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_trait] = ACTIONS(477), - [anon_sym_type] = ACTIONS(477), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = 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_extern] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_COLON_COLON] = ACTIONS(475), - [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_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_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(475), - [sym_raw_string_literal] = ACTIONS(475), - [sym_float_literal] = ACTIONS(475), + [45] = { + [sym_token_tree] = STATE(45), + [sym_token_repetition] = STATE(45), + [sym_non_special_punctuation] = STATE(45), + [sym__literal] = STATE(45), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(499), + [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_EQ_GT] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(502), + [anon_sym_COLON] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(496), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(510), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_PLUS_EQ] = ACTIONS(496), + [anon_sym_DASH_EQ] = ACTIONS(496), + [anon_sym_STAR_EQ] = ACTIONS(496), + [anon_sym_SLASH_EQ] = ACTIONS(496), + [anon_sym_PERCENT_EQ] = ACTIONS(496), + [anon_sym_CARET_EQ] = ACTIONS(496), + [anon_sym_AMP_EQ] = ACTIONS(496), + [anon_sym_PIPE_EQ] = ACTIONS(496), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_GT_GT_EQ] = ACTIONS(496), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_EQ_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym__] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(496), + [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [anon_sym_DASH_GT] = ACTIONS(496), + [anon_sym_POUND] = ACTIONS(496), + [anon_sym_u8] = ACTIONS(493), + [anon_sym_i8] = ACTIONS(493), + [anon_sym_u16] = ACTIONS(493), + [anon_sym_i16] = ACTIONS(493), + [anon_sym_u32] = ACTIONS(493), + [anon_sym_i32] = ACTIONS(493), + [anon_sym_u64] = ACTIONS(493), + [anon_sym_i64] = ACTIONS(493), + [anon_sym_u128] = ACTIONS(493), + [anon_sym_i128] = ACTIONS(493), + [anon_sym_isize] = ACTIONS(493), + [anon_sym_usize] = ACTIONS(493), + [anon_sym_f32] = ACTIONS(493), + [anon_sym_f64] = ACTIONS(493), + [anon_sym_bool] = ACTIONS(493), + [anon_sym_str] = ACTIONS(493), + [anon_sym_char] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(493), + [anon_sym_as] = ACTIONS(493), + [anon_sym_async] = ACTIONS(493), + [anon_sym_await] = ACTIONS(493), + [anon_sym_break] = ACTIONS(493), + [anon_sym_const] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_default] = ACTIONS(493), + [anon_sym_enum] = ACTIONS(493), + [anon_sym_fn] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_if] = ACTIONS(493), + [anon_sym_impl] = ACTIONS(493), + [anon_sym_let] = ACTIONS(493), + [anon_sym_loop] = ACTIONS(493), + [anon_sym_match] = ACTIONS(493), + [anon_sym_mod] = ACTIONS(493), + [anon_sym_pub] = ACTIONS(493), + [anon_sym_return] = ACTIONS(493), + [anon_sym_static] = ACTIONS(493), + [anon_sym_struct] = ACTIONS(493), + [anon_sym_trait] = ACTIONS(493), + [anon_sym_type] = ACTIONS(493), + [anon_sym_union] = ACTIONS(493), + [anon_sym_unsafe] = ACTIONS(493), + [anon_sym_use] = ACTIONS(493), + [anon_sym_where] = ACTIONS(493), + [anon_sym_while] = ACTIONS(493), + [sym_mutable_specifier] = ACTIONS(493), + [sym_integer_literal] = ACTIONS(516), + [aux_sym_string_literal_token1] = ACTIONS(519), + [sym_char_literal] = ACTIONS(516), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(493), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(525), + [sym_raw_string_literal] = ACTIONS(516), + [sym_float_literal] = ACTIONS(516), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(479), - [sym_identifier] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_macro_rules_BANG] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(479), + [46] = { + [sym__token_pattern] = STATE(49), + [sym_token_tree_pattern] = STATE(49), + [sym_token_binding_pattern] = STATE(49), + [sym_token_repetition_pattern] = STATE(49), + [sym_non_special_punctuation] = STATE(49), + [sym__literal] = STATE(49), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(481), [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(479), - [anon_sym_u8] = ACTIONS(481), - [anon_sym_i8] = ACTIONS(481), - [anon_sym_u16] = ACTIONS(481), - [anon_sym_i16] = ACTIONS(481), - [anon_sym_u32] = ACTIONS(481), - [anon_sym_i32] = ACTIONS(481), - [anon_sym_u64] = ACTIONS(481), - [anon_sym_i64] = ACTIONS(481), - [anon_sym_u128] = ACTIONS(481), - [anon_sym_i128] = ACTIONS(481), - [anon_sym_isize] = ACTIONS(481), - [anon_sym_usize] = ACTIONS(481), - [anon_sym_f32] = ACTIONS(481), - [anon_sym_f64] = ACTIONS(481), - [anon_sym_bool] = ACTIONS(481), - [anon_sym_str] = ACTIONS(481), - [anon_sym_char] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(481), - [anon_sym_as] = ACTIONS(481), - [anon_sym_async] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_const] = ACTIONS(481), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_default] = ACTIONS(481), - [anon_sym_enum] = ACTIONS(481), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_for] = ACTIONS(481), - [anon_sym_if] = ACTIONS(481), - [anon_sym_impl] = ACTIONS(481), - [anon_sym_let] = ACTIONS(481), - [anon_sym_loop] = ACTIONS(481), - [anon_sym_match] = ACTIONS(481), - [anon_sym_mod] = ACTIONS(481), - [anon_sym_pub] = ACTIONS(481), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(481), - [anon_sym_struct] = ACTIONS(481), - [anon_sym_trait] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_union] = ACTIONS(481), - [anon_sym_unsafe] = ACTIONS(481), - [anon_sym_use] = ACTIONS(481), - [anon_sym_while] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), [anon_sym_EQ] = ACTIONS(481), - [anon_sym_extern] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), [anon_sym_GT] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(479), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [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_str] = ACTIONS(528), + [anon_sym_char] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(528), + [anon_sym_as] = ACTIONS(528), + [anon_sym_async] = ACTIONS(528), + [anon_sym_await] = ACTIONS(528), + [anon_sym_break] = ACTIONS(528), + [anon_sym_const] = ACTIONS(528), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_default] = 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_loop] = ACTIONS(528), + [anon_sym_match] = ACTIONS(528), + [anon_sym_mod] = ACTIONS(528), + [anon_sym_pub] = ACTIONS(528), + [anon_sym_return] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_struct] = ACTIONS(528), + [anon_sym_trait] = ACTIONS(528), + [anon_sym_type] = ACTIONS(528), + [anon_sym_union] = ACTIONS(528), + [anon_sym_unsafe] = ACTIONS(528), + [anon_sym_use] = ACTIONS(528), + [anon_sym_where] = ACTIONS(528), + [anon_sym_while] = ACTIONS(528), + [sym_mutable_specifier] = ACTIONS(528), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(528), + [sym_super] = ACTIONS(528), + [sym_crate] = ACTIONS(528), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), + [sym_block_comment] = ACTIONS(3), + }, + [47] = { + [sym__token_pattern] = STATE(50), + [sym_token_tree_pattern] = STATE(50), + [sym_token_binding_pattern] = STATE(50), + [sym_token_repetition_pattern] = STATE(50), + [sym_non_special_punctuation] = STATE(50), + [sym__literal] = STATE(50), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), [anon_sym_LT_LT] = ACTIONS(481), [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), - [anon_sym_move] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), [anon_sym_DOT] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(479), - [aux_sym_string_literal_token1] = ACTIONS(479), - [sym_char_literal] = ACTIONS(479), - [anon_sym_true] = ACTIONS(481), - [anon_sym_false] = ACTIONS(481), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(481), - [sym_super] = ACTIONS(481), - [sym_crate] = ACTIONS(481), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(479), - [sym_float_literal] = ACTIONS(479), - [sym_block_comment] = ACTIONS(3), - }, - [63] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1149), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1181), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(485), - [anon_sym_LPAREN] = ACTIONS(488), - [anon_sym_RPAREN] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_async] = ACTIONS(508), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_default] = ACTIONS(520), - [anon_sym_for] = ACTIONS(523), - [anon_sym_if] = ACTIONS(526), - [anon_sym_loop] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [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_str] = ACTIONS(532), + [anon_sym_char] = ACTIONS(532), + [anon_sym_SQUOTE] = ACTIONS(532), + [anon_sym_as] = ACTIONS(532), + [anon_sym_async] = ACTIONS(532), + [anon_sym_await] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_default] = 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_loop] = ACTIONS(532), [anon_sym_match] = ACTIONS(532), - [anon_sym_return] = ACTIONS(535), - [anon_sym_union] = ACTIONS(520), - [anon_sym_unsafe] = ACTIONS(538), - [anon_sym_while] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_move] = ACTIONS(559), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(565), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(571), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(577), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), + [anon_sym_mod] = ACTIONS(532), + [anon_sym_pub] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_trait] = ACTIONS(532), + [anon_sym_type] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [anon_sym_unsafe] = ACTIONS(532), + [anon_sym_use] = ACTIONS(532), + [anon_sym_where] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [sym_mutable_specifier] = ACTIONS(532), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(532), + [sym_super] = ACTIONS(532), + [sym_crate] = ACTIONS(532), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(580), - [sym_identifier] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_macro_rules_BANG] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(582), - [anon_sym_i8] = ACTIONS(582), - [anon_sym_u16] = ACTIONS(582), - [anon_sym_i16] = ACTIONS(582), - [anon_sym_u32] = ACTIONS(582), - [anon_sym_i32] = ACTIONS(582), - [anon_sym_u64] = ACTIONS(582), - [anon_sym_i64] = ACTIONS(582), - [anon_sym_u128] = ACTIONS(582), - [anon_sym_i128] = ACTIONS(582), - [anon_sym_isize] = ACTIONS(582), - [anon_sym_usize] = ACTIONS(582), - [anon_sym_f32] = ACTIONS(582), - [anon_sym_f64] = ACTIONS(582), - [anon_sym_bool] = ACTIONS(582), - [anon_sym_str] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(582), - [anon_sym_as] = ACTIONS(582), - [anon_sym_async] = ACTIONS(582), - [anon_sym_break] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_enum] = ACTIONS(582), - [anon_sym_fn] = ACTIONS(582), - [anon_sym_for] = ACTIONS(582), - [anon_sym_if] = ACTIONS(582), - [anon_sym_impl] = ACTIONS(582), - [anon_sym_let] = ACTIONS(582), - [anon_sym_loop] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_mod] = ACTIONS(582), - [anon_sym_pub] = ACTIONS(582), - [anon_sym_return] = ACTIONS(582), - [anon_sym_static] = ACTIONS(582), - [anon_sym_struct] = ACTIONS(582), - [anon_sym_trait] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_union] = ACTIONS(582), - [anon_sym_unsafe] = ACTIONS(582), - [anon_sym_use] = ACTIONS(582), - [anon_sym_while] = ACTIONS(582), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_extern] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_COLON_COLON] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT_EQ] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(580), - [anon_sym_PIPE_PIPE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(580), - [anon_sym_BANG_EQ] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_PLUS_EQ] = ACTIONS(580), - [anon_sym_DASH_EQ] = ACTIONS(580), - [anon_sym_STAR_EQ] = ACTIONS(580), - [anon_sym_SLASH_EQ] = ACTIONS(580), - [anon_sym_PERCENT_EQ] = ACTIONS(580), - [anon_sym_AMP_EQ] = ACTIONS(580), - [anon_sym_PIPE_EQ] = ACTIONS(580), - [anon_sym_CARET_EQ] = ACTIONS(580), - [anon_sym_LT_LT_EQ] = ACTIONS(580), - [anon_sym_GT_GT_EQ] = ACTIONS(580), - [anon_sym_move] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(582), - [sym_integer_literal] = ACTIONS(580), - [aux_sym_string_literal_token1] = ACTIONS(580), - [sym_char_literal] = ACTIONS(580), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_crate] = ACTIONS(582), - [sym_metavariable] = ACTIONS(580), - [sym_raw_string_literal] = ACTIONS(580), - [sym_float_literal] = ACTIONS(580), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_macro_rules_BANG] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(586), - [anon_sym_i8] = ACTIONS(586), - [anon_sym_u16] = ACTIONS(586), - [anon_sym_i16] = ACTIONS(586), - [anon_sym_u32] = ACTIONS(586), - [anon_sym_i32] = ACTIONS(586), - [anon_sym_u64] = ACTIONS(586), - [anon_sym_i64] = ACTIONS(586), - [anon_sym_u128] = ACTIONS(586), - [anon_sym_i128] = ACTIONS(586), - [anon_sym_isize] = ACTIONS(586), - [anon_sym_usize] = ACTIONS(586), - [anon_sym_f32] = ACTIONS(586), - [anon_sym_f64] = ACTIONS(586), - [anon_sym_bool] = ACTIONS(586), - [anon_sym_str] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_async] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_fn] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_impl] = ACTIONS(586), - [anon_sym_let] = ACTIONS(586), - [anon_sym_loop] = ACTIONS(586), - [anon_sym_match] = ACTIONS(586), - [anon_sym_mod] = ACTIONS(586), - [anon_sym_pub] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_static] = ACTIONS(586), - [anon_sym_struct] = ACTIONS(586), - [anon_sym_trait] = ACTIONS(586), - [anon_sym_type] = ACTIONS(586), - [anon_sym_union] = ACTIONS(586), - [anon_sym_unsafe] = ACTIONS(586), - [anon_sym_use] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_extern] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_move] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(584), - [aux_sym_string_literal_token1] = ACTIONS(584), - [sym_char_literal] = ACTIONS(584), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(586), - [sym_super] = ACTIONS(586), - [sym_crate] = ACTIONS(586), - [sym_metavariable] = ACTIONS(584), - [sym_raw_string_literal] = ACTIONS(584), - [sym_float_literal] = ACTIONS(584), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_macro_rules_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_extern] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_move] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(592), - [sym_identifier] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_macro_rules_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_async] = ACTIONS(594), - [anon_sym_break] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_enum] = ACTIONS(594), - [anon_sym_fn] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_impl] = ACTIONS(594), - [anon_sym_let] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(594), - [anon_sym_match] = ACTIONS(594), - [anon_sym_mod] = ACTIONS(594), - [anon_sym_pub] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_static] = ACTIONS(594), - [anon_sym_struct] = ACTIONS(594), - [anon_sym_trait] = ACTIONS(594), - [anon_sym_type] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_unsafe] = ACTIONS(594), - [anon_sym_use] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_extern] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_move] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), - [sym_block_comment] = ACTIONS(3), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(596), - [anon_sym_macro_rules_BANG] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_async] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_default] = ACTIONS(598), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_impl] = ACTIONS(598), - [anon_sym_let] = ACTIONS(598), - [anon_sym_loop] = ACTIONS(598), - [anon_sym_match] = ACTIONS(598), - [anon_sym_mod] = ACTIONS(598), - [anon_sym_pub] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_static] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(598), - [anon_sym_trait] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_union] = ACTIONS(598), - [anon_sym_unsafe] = ACTIONS(598), - [anon_sym_use] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_extern] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(598), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(598), - [anon_sym_PLUS_EQ] = ACTIONS(596), - [anon_sym_DASH_EQ] = ACTIONS(596), - [anon_sym_STAR_EQ] = ACTIONS(596), - [anon_sym_SLASH_EQ] = ACTIONS(596), - [anon_sym_PERCENT_EQ] = ACTIONS(596), - [anon_sym_AMP_EQ] = ACTIONS(596), - [anon_sym_PIPE_EQ] = ACTIONS(596), - [anon_sym_CARET_EQ] = ACTIONS(596), - [anon_sym_LT_LT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_EQ] = ACTIONS(596), - [anon_sym_move] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(598), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_macro_rules_BANG] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_async] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_fn] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_impl] = ACTIONS(602), - [anon_sym_let] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(602), - [anon_sym_match] = ACTIONS(602), - [anon_sym_mod] = ACTIONS(602), - [anon_sym_pub] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(602), - [anon_sym_struct] = ACTIONS(602), - [anon_sym_trait] = ACTIONS(602), - [anon_sym_type] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_unsafe] = ACTIONS(602), - [anon_sym_use] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_extern] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_move] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), - [sym_block_comment] = ACTIONS(3), - }, - [71] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [72] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [aux_sym_tuple_expression_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [48] = { + [sym__token_pattern] = STATE(52), + [sym_token_tree_pattern] = STATE(52), + [sym_token_binding_pattern] = STATE(52), + [sym_token_repetition_pattern] = STATE(52), + [sym_non_special_punctuation] = STATE(52), + [sym__literal] = STATE(52), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(534), + [anon_sym_i8] = ACTIONS(534), + [anon_sym_u16] = ACTIONS(534), + [anon_sym_i16] = ACTIONS(534), + [anon_sym_u32] = ACTIONS(534), + [anon_sym_i32] = ACTIONS(534), + [anon_sym_u64] = ACTIONS(534), + [anon_sym_i64] = ACTIONS(534), + [anon_sym_u128] = ACTIONS(534), + [anon_sym_i128] = ACTIONS(534), + [anon_sym_isize] = ACTIONS(534), + [anon_sym_usize] = ACTIONS(534), + [anon_sym_f32] = ACTIONS(534), + [anon_sym_f64] = ACTIONS(534), + [anon_sym_bool] = ACTIONS(534), + [anon_sym_str] = ACTIONS(534), + [anon_sym_char] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_as] = ACTIONS(534), + [anon_sym_async] = ACTIONS(534), + [anon_sym_await] = ACTIONS(534), + [anon_sym_break] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(534), + [anon_sym_fn] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), + [anon_sym_if] = ACTIONS(534), + [anon_sym_impl] = ACTIONS(534), + [anon_sym_let] = ACTIONS(534), + [anon_sym_loop] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_mod] = ACTIONS(534), + [anon_sym_pub] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), + [anon_sym_static] = ACTIONS(534), + [anon_sym_struct] = ACTIONS(534), + [anon_sym_trait] = ACTIONS(534), + [anon_sym_type] = ACTIONS(534), + [anon_sym_union] = ACTIONS(534), + [anon_sym_unsafe] = ACTIONS(534), + [anon_sym_use] = ACTIONS(534), + [anon_sym_where] = ACTIONS(534), + [anon_sym_while] = ACTIONS(534), + [sym_mutable_specifier] = ACTIONS(534), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(534), + [sym_super] = ACTIONS(534), + [sym_crate] = ACTIONS(534), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(608), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [sym_identifier] = ACTIONS(457), - [anon_sym_SEMI] = ACTIONS(459), - [anon_sym_macro_rules_BANG] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_as] = ACTIONS(461), - [anon_sym_async] = ACTIONS(457), - [anon_sym_break] = ACTIONS(457), - [anon_sym_const] = ACTIONS(457), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_default] = ACTIONS(457), - [anon_sym_enum] = ACTIONS(457), - [anon_sym_fn] = ACTIONS(457), - [anon_sym_for] = ACTIONS(457), - [anon_sym_if] = ACTIONS(457), - [anon_sym_impl] = ACTIONS(457), - [anon_sym_let] = ACTIONS(457), - [anon_sym_loop] = ACTIONS(457), - [anon_sym_match] = ACTIONS(457), - [anon_sym_mod] = ACTIONS(457), - [anon_sym_pub] = ACTIONS(457), - [anon_sym_return] = ACTIONS(457), - [anon_sym_static] = ACTIONS(457), - [anon_sym_struct] = ACTIONS(457), - [anon_sym_trait] = ACTIONS(457), - [anon_sym_type] = ACTIONS(457), - [anon_sym_union] = ACTIONS(457), - [anon_sym_unsafe] = ACTIONS(457), - [anon_sym_use] = ACTIONS(457), - [anon_sym_while] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_extern] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(455), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_move] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(455), - [aux_sym_string_literal_token1] = ACTIONS(455), - [sym_char_literal] = ACTIONS(455), - [anon_sym_true] = ACTIONS(457), - [anon_sym_false] = ACTIONS(457), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(457), - [sym_crate] = ACTIONS(457), - [sym_metavariable] = ACTIONS(455), - [sym_raw_string_literal] = ACTIONS(455), - [sym_float_literal] = ACTIONS(455), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(614), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1068), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_DASH_GT] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1150), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(620), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [49] = { + [sym__token_pattern] = STATE(43), + [sym_token_tree_pattern] = STATE(43), + [sym_token_binding_pattern] = STATE(43), + [sym_token_repetition_pattern] = STATE(43), + [sym_non_special_punctuation] = STATE(43), + [sym__literal] = STATE(43), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_RBRACK] = ACTIONS(536), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_async] = ACTIONS(469), + [anon_sym_await] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_union] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_where] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [sym_mutable_specifier] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(624), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [50] = { + [sym__token_pattern] = STATE(43), + [sym_token_tree_pattern] = STATE(43), + [sym_token_binding_pattern] = STATE(43), + [sym_token_repetition_pattern] = STATE(43), + [sym_non_special_punctuation] = STATE(43), + [sym__literal] = STATE(43), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_async] = ACTIONS(469), + [anon_sym_await] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_union] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_where] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [sym_mutable_specifier] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1002), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(626), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [51] = { + [sym__token_pattern] = STATE(43), + [sym_token_tree_pattern] = STATE(43), + [sym_token_binding_pattern] = STATE(43), + [sym_token_repetition_pattern] = STATE(43), + [sym_non_special_punctuation] = STATE(43), + [sym__literal] = STATE(43), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_RBRACK] = ACTIONS(538), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_async] = ACTIONS(469), + [anon_sym_await] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_union] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_where] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [sym_mutable_specifier] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(628), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [52] = { + [sym__token_pattern] = STATE(43), + [sym_token_tree_pattern] = STATE(43), + [sym_token_binding_pattern] = STATE(43), + [sym_token_repetition_pattern] = STATE(43), + [sym_non_special_punctuation] = STATE(43), + [sym__literal] = STATE(43), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_async] = ACTIONS(469), + [anon_sym_await] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_union] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_where] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [sym_mutable_specifier] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1024), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_DASH_GT] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [53] = { + [sym__token_pattern] = STATE(59), + [sym_token_tree_pattern] = STATE(59), + [sym_token_binding_pattern] = STATE(59), + [sym_token_repetition_pattern] = STATE(59), + [sym_non_special_punctuation] = STATE(59), + [sym__literal] = STATE(59), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(540), + [anon_sym_i8] = ACTIONS(540), + [anon_sym_u16] = ACTIONS(540), + [anon_sym_i16] = ACTIONS(540), + [anon_sym_u32] = ACTIONS(540), + [anon_sym_i32] = ACTIONS(540), + [anon_sym_u64] = ACTIONS(540), + [anon_sym_i64] = ACTIONS(540), + [anon_sym_u128] = ACTIONS(540), + [anon_sym_i128] = ACTIONS(540), + [anon_sym_isize] = ACTIONS(540), + [anon_sym_usize] = ACTIONS(540), + [anon_sym_f32] = ACTIONS(540), + [anon_sym_f64] = ACTIONS(540), + [anon_sym_bool] = ACTIONS(540), + [anon_sym_str] = ACTIONS(540), + [anon_sym_char] = ACTIONS(540), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_as] = ACTIONS(540), + [anon_sym_async] = ACTIONS(540), + [anon_sym_await] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_fn] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_impl] = ACTIONS(540), + [anon_sym_let] = ACTIONS(540), + [anon_sym_loop] = ACTIONS(540), + [anon_sym_match] = ACTIONS(540), + [anon_sym_mod] = ACTIONS(540), + [anon_sym_pub] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_static] = ACTIONS(540), + [anon_sym_struct] = ACTIONS(540), + [anon_sym_trait] = ACTIONS(540), + [anon_sym_type] = ACTIONS(540), + [anon_sym_union] = ACTIONS(540), + [anon_sym_unsafe] = ACTIONS(540), + [anon_sym_use] = ACTIONS(540), + [anon_sym_where] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [sym_mutable_specifier] = ACTIONS(540), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(540), + [sym_super] = ACTIONS(540), + [sym_crate] = ACTIONS(540), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1137), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(632), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [54] = { + [sym__token_pattern] = STATE(57), + [sym_token_tree_pattern] = STATE(57), + [sym_token_binding_pattern] = STATE(57), + [sym_token_repetition_pattern] = STATE(57), + [sym_non_special_punctuation] = STATE(57), + [sym__literal] = STATE(57), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(544), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(544), + [anon_sym_i8] = ACTIONS(544), + [anon_sym_u16] = ACTIONS(544), + [anon_sym_i16] = ACTIONS(544), + [anon_sym_u32] = ACTIONS(544), + [anon_sym_i32] = ACTIONS(544), + [anon_sym_u64] = ACTIONS(544), + [anon_sym_i64] = ACTIONS(544), + [anon_sym_u128] = ACTIONS(544), + [anon_sym_i128] = ACTIONS(544), + [anon_sym_isize] = ACTIONS(544), + [anon_sym_usize] = ACTIONS(544), + [anon_sym_f32] = ACTIONS(544), + [anon_sym_f64] = ACTIONS(544), + [anon_sym_bool] = ACTIONS(544), + [anon_sym_str] = ACTIONS(544), + [anon_sym_char] = ACTIONS(544), + [anon_sym_SQUOTE] = ACTIONS(544), + [anon_sym_as] = ACTIONS(544), + [anon_sym_async] = ACTIONS(544), + [anon_sym_await] = ACTIONS(544), + [anon_sym_break] = ACTIONS(544), + [anon_sym_const] = ACTIONS(544), + [anon_sym_continue] = ACTIONS(544), + [anon_sym_default] = ACTIONS(544), + [anon_sym_enum] = ACTIONS(544), + [anon_sym_fn] = ACTIONS(544), + [anon_sym_for] = ACTIONS(544), + [anon_sym_if] = ACTIONS(544), + [anon_sym_impl] = ACTIONS(544), + [anon_sym_let] = ACTIONS(544), + [anon_sym_loop] = ACTIONS(544), + [anon_sym_match] = ACTIONS(544), + [anon_sym_mod] = ACTIONS(544), + [anon_sym_pub] = ACTIONS(544), + [anon_sym_return] = ACTIONS(544), + [anon_sym_static] = ACTIONS(544), + [anon_sym_struct] = ACTIONS(544), + [anon_sym_trait] = ACTIONS(544), + [anon_sym_type] = ACTIONS(544), + [anon_sym_union] = ACTIONS(544), + [anon_sym_unsafe] = ACTIONS(544), + [anon_sym_use] = ACTIONS(544), + [anon_sym_where] = ACTIONS(544), + [anon_sym_while] = ACTIONS(544), + [sym_mutable_specifier] = ACTIONS(544), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(544), + [sym_super] = ACTIONS(544), + [sym_crate] = ACTIONS(544), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [55] = { + [sym__token_pattern] = STATE(44), + [sym_token_tree_pattern] = STATE(44), + [sym_token_binding_pattern] = STATE(44), + [sym_token_repetition_pattern] = STATE(44), + [sym_non_special_punctuation] = STATE(44), + [sym__literal] = STATE(44), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(44), + [sym_identifier] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_async] = ACTIONS(546), + [anon_sym_await] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_unsafe] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_where] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [sym_mutable_specifier] = ACTIONS(546), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1029), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1024), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [56] = { + [sym__token_pattern] = STATE(51), + [sym_token_tree_pattern] = STATE(51), + [sym_token_binding_pattern] = STATE(51), + [sym_token_repetition_pattern] = STATE(51), + [sym_non_special_punctuation] = STATE(51), + [sym__literal] = STATE(51), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_RBRACK] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(550), + [anon_sym_i8] = ACTIONS(550), + [anon_sym_u16] = ACTIONS(550), + [anon_sym_i16] = ACTIONS(550), + [anon_sym_u32] = ACTIONS(550), + [anon_sym_i32] = ACTIONS(550), + [anon_sym_u64] = ACTIONS(550), + [anon_sym_i64] = ACTIONS(550), + [anon_sym_u128] = ACTIONS(550), + [anon_sym_i128] = ACTIONS(550), + [anon_sym_isize] = ACTIONS(550), + [anon_sym_usize] = ACTIONS(550), + [anon_sym_f32] = ACTIONS(550), + [anon_sym_f64] = ACTIONS(550), + [anon_sym_bool] = ACTIONS(550), + [anon_sym_str] = ACTIONS(550), + [anon_sym_char] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_as] = ACTIONS(550), + [anon_sym_async] = ACTIONS(550), + [anon_sym_await] = ACTIONS(550), + [anon_sym_break] = ACTIONS(550), + [anon_sym_const] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_default] = ACTIONS(550), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_fn] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_impl] = ACTIONS(550), + [anon_sym_let] = ACTIONS(550), + [anon_sym_loop] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_mod] = ACTIONS(550), + [anon_sym_pub] = ACTIONS(550), + [anon_sym_return] = ACTIONS(550), + [anon_sym_static] = ACTIONS(550), + [anon_sym_struct] = ACTIONS(550), + [anon_sym_trait] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_union] = ACTIONS(550), + [anon_sym_unsafe] = ACTIONS(550), + [anon_sym_use] = ACTIONS(550), + [anon_sym_where] = ACTIONS(550), + [anon_sym_while] = ACTIONS(550), + [sym_mutable_specifier] = ACTIONS(550), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(550), + [sym_super] = ACTIONS(550), + [sym_crate] = ACTIONS(550), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [57] = { + [sym__token_pattern] = STATE(43), + [sym_token_tree_pattern] = STATE(43), + [sym_token_binding_pattern] = STATE(43), + [sym_token_repetition_pattern] = STATE(43), + [sym_non_special_punctuation] = STATE(43), + [sym__literal] = STATE(43), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_async] = ACTIONS(469), + [anon_sym_await] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_union] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_where] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [sym_mutable_specifier] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1070), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1068), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [58] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_EQ_GT] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_PLUS_EQ] = ACTIONS(555), + [anon_sym_DASH_EQ] = ACTIONS(555), + [anon_sym_STAR_EQ] = ACTIONS(555), + [anon_sym_SLASH_EQ] = ACTIONS(555), + [anon_sym_PERCENT_EQ] = ACTIONS(555), + [anon_sym_CARET_EQ] = ACTIONS(555), + [anon_sym_AMP_EQ] = ACTIONS(555), + [anon_sym_PIPE_EQ] = ACTIONS(555), + [anon_sym_LT_LT_EQ] = ACTIONS(555), + [anon_sym_GT_GT_EQ] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [anon_sym__] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT] = ACTIONS(569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_COLON_COLON] = ACTIONS(555), + [anon_sym_DASH_GT] = ACTIONS(555), + [anon_sym_POUND] = ACTIONS(555), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(575), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(575), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_raw_string_literal] = ACTIONS(575), + [sym_float_literal] = ACTIONS(575), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [90] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [sym_mutable_specifier] = ACTIONS(640), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [59] = { + [sym__token_pattern] = STATE(43), + [sym_token_tree_pattern] = STATE(43), + [sym_token_binding_pattern] = STATE(43), + [sym_token_repetition_pattern] = STATE(43), + [sym_non_special_punctuation] = STATE(43), + [sym__literal] = STATE(43), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_pattern_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(538), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_async] = ACTIONS(469), + [anon_sym_await] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_union] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_where] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [sym_mutable_specifier] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(491), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(642), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [60] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1117), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [61] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [62] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [63] = { + [sym_non_special_punctuation] = STATE(88), + [sym_delim_token_tree] = STATE(88), + [sym__delim_tokens] = STATE(88), + [sym__non_delim_token] = STATE(88), + [sym__literal] = STATE(88), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(88), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_async] = ACTIONS(610), + [anon_sym_await] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_fn] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_impl] = ACTIONS(610), + [anon_sym_let] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(610), + [anon_sym_match] = ACTIONS(610), + [anon_sym_mod] = ACTIONS(610), + [anon_sym_pub] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_static] = ACTIONS(610), + [anon_sym_struct] = ACTIONS(610), + [anon_sym_trait] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(610), + [anon_sym_use] = ACTIONS(610), + [anon_sym_where] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [sym_mutable_specifier] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1047), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [64] = { + [sym_token_tree] = STATE(45), + [sym_token_repetition] = STATE(45), + [sym_non_special_punctuation] = STATE(45), + [sym__literal] = STATE(45), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [65] = { + [sym_non_special_punctuation] = STATE(84), + [sym_delim_token_tree] = STATE(84), + [sym__delim_tokens] = STATE(84), + [sym__non_delim_token] = STATE(84), + [sym__literal] = STATE(84), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_async] = ACTIONS(630), + [anon_sym_await] = ACTIONS(630), + [anon_sym_break] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_enum] = ACTIONS(630), + [anon_sym_fn] = ACTIONS(630), + [anon_sym_for] = ACTIONS(630), + [anon_sym_if] = ACTIONS(630), + [anon_sym_impl] = ACTIONS(630), + [anon_sym_let] = ACTIONS(630), + [anon_sym_loop] = ACTIONS(630), + [anon_sym_match] = ACTIONS(630), + [anon_sym_mod] = ACTIONS(630), + [anon_sym_pub] = ACTIONS(630), + [anon_sym_return] = ACTIONS(630), + [anon_sym_static] = ACTIONS(630), + [anon_sym_struct] = ACTIONS(630), + [anon_sym_trait] = ACTIONS(630), + [anon_sym_type] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_unsafe] = ACTIONS(630), + [anon_sym_use] = ACTIONS(630), + [anon_sym_where] = ACTIONS(630), + [anon_sym_while] = ACTIONS(630), + [sym_mutable_specifier] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [66] = { + [sym_token_tree] = STATE(45), + [sym_token_repetition] = STATE(45), + [sym_non_special_punctuation] = STATE(45), + [sym__literal] = STATE(45), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [67] = { + [sym_non_special_punctuation] = STATE(62), + [sym_delim_token_tree] = STATE(62), + [sym__delim_tokens] = STATE(62), + [sym__non_delim_token] = STATE(62), + [sym__literal] = STATE(62), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_await] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_where] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [sym_mutable_specifier] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(976), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [68] = { + [sym_non_special_punctuation] = STATE(85), + [sym_delim_token_tree] = STATE(85), + [sym__delim_tokens] = STATE(85), + [sym__non_delim_token] = STATE(85), + [sym__literal] = STATE(85), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(85), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [69] = { + [sym_token_tree] = STATE(45), + [sym_token_repetition] = STATE(45), + [sym_non_special_punctuation] = STATE(45), + [sym__literal] = STATE(45), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(620), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [70] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(644), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [71] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(972), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [72] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(971), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [73] = { + [sym_non_special_punctuation] = STATE(70), + [sym_delim_token_tree] = STATE(70), + [sym__delim_tokens] = STATE(70), + [sym__non_delim_token] = STATE(70), + [sym__literal] = STATE(70), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(70), + [sym_identifier] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(648), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_async] = ACTIONS(646), + [anon_sym_await] = ACTIONS(646), + [anon_sym_break] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_enum] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(646), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(646), + [anon_sym_impl] = ACTIONS(646), + [anon_sym_let] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(646), + [anon_sym_match] = ACTIONS(646), + [anon_sym_mod] = ACTIONS(646), + [anon_sym_pub] = ACTIONS(646), + [anon_sym_return] = ACTIONS(646), + [anon_sym_static] = ACTIONS(646), + [anon_sym_struct] = ACTIONS(646), + [anon_sym_trait] = ACTIONS(646), + [anon_sym_type] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_use] = ACTIONS(646), + [anon_sym_where] = ACTIONS(646), + [anon_sym_while] = ACTIONS(646), + [sym_mutable_specifier] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(969), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [74] = { + [sym_non_special_punctuation] = STATE(71), + [sym_delim_token_tree] = STATE(71), + [sym__delim_tokens] = STATE(71), + [sym__non_delim_token] = STATE(71), + [sym__literal] = STATE(71), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(652), + [anon_sym_i8] = ACTIONS(652), + [anon_sym_u16] = ACTIONS(652), + [anon_sym_i16] = ACTIONS(652), + [anon_sym_u32] = ACTIONS(652), + [anon_sym_i32] = ACTIONS(652), + [anon_sym_u64] = ACTIONS(652), + [anon_sym_i64] = ACTIONS(652), + [anon_sym_u128] = ACTIONS(652), + [anon_sym_i128] = ACTIONS(652), + [anon_sym_isize] = ACTIONS(652), + [anon_sym_usize] = ACTIONS(652), + [anon_sym_f32] = ACTIONS(652), + [anon_sym_f64] = ACTIONS(652), + [anon_sym_bool] = ACTIONS(652), + [anon_sym_str] = ACTIONS(652), + [anon_sym_char] = ACTIONS(652), + [anon_sym_SQUOTE] = ACTIONS(652), + [anon_sym_as] = ACTIONS(652), + [anon_sym_async] = ACTIONS(652), + [anon_sym_await] = ACTIONS(652), + [anon_sym_break] = ACTIONS(652), + [anon_sym_const] = ACTIONS(652), + [anon_sym_continue] = ACTIONS(652), + [anon_sym_default] = ACTIONS(652), + [anon_sym_enum] = ACTIONS(652), + [anon_sym_fn] = ACTIONS(652), + [anon_sym_for] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_impl] = ACTIONS(652), + [anon_sym_let] = ACTIONS(652), + [anon_sym_loop] = ACTIONS(652), + [anon_sym_match] = ACTIONS(652), + [anon_sym_mod] = ACTIONS(652), + [anon_sym_pub] = ACTIONS(652), + [anon_sym_return] = ACTIONS(652), + [anon_sym_static] = ACTIONS(652), + [anon_sym_struct] = ACTIONS(652), + [anon_sym_trait] = ACTIONS(652), + [anon_sym_type] = ACTIONS(652), + [anon_sym_union] = ACTIONS(652), + [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_use] = ACTIONS(652), + [anon_sym_where] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [sym_mutable_specifier] = ACTIONS(652), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(652), + [sym_super] = ACTIONS(652), + [sym_crate] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(968), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [75] = { + [sym_non_special_punctuation] = STATE(72), + [sym_delim_token_tree] = STATE(72), + [sym__delim_tokens] = STATE(72), + [sym__non_delim_token] = STATE(72), + [sym__literal] = STATE(72), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(656), + [anon_sym_i8] = ACTIONS(656), + [anon_sym_u16] = ACTIONS(656), + [anon_sym_i16] = ACTIONS(656), + [anon_sym_u32] = ACTIONS(656), + [anon_sym_i32] = ACTIONS(656), + [anon_sym_u64] = ACTIONS(656), + [anon_sym_i64] = ACTIONS(656), + [anon_sym_u128] = ACTIONS(656), + [anon_sym_i128] = ACTIONS(656), + [anon_sym_isize] = ACTIONS(656), + [anon_sym_usize] = ACTIONS(656), + [anon_sym_f32] = ACTIONS(656), + [anon_sym_f64] = ACTIONS(656), + [anon_sym_bool] = ACTIONS(656), + [anon_sym_str] = ACTIONS(656), + [anon_sym_char] = ACTIONS(656), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_as] = ACTIONS(656), + [anon_sym_async] = ACTIONS(656), + [anon_sym_await] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_const] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_default] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_fn] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_impl] = ACTIONS(656), + [anon_sym_let] = ACTIONS(656), + [anon_sym_loop] = ACTIONS(656), + [anon_sym_match] = ACTIONS(656), + [anon_sym_mod] = ACTIONS(656), + [anon_sym_pub] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_static] = ACTIONS(656), + [anon_sym_struct] = ACTIONS(656), + [anon_sym_trait] = ACTIONS(656), + [anon_sym_type] = ACTIONS(656), + [anon_sym_union] = ACTIONS(656), + [anon_sym_unsafe] = ACTIONS(656), + [anon_sym_use] = ACTIONS(656), + [anon_sym_where] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [sym_mutable_specifier] = ACTIONS(656), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(656), + [sym_super] = ACTIONS(656), + [sym_crate] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(970), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [76] = { + [sym_non_special_punctuation] = STATE(60), + [sym_delim_token_tree] = STATE(60), + [sym__delim_tokens] = STATE(60), + [sym__non_delim_token] = STATE(60), + [sym__literal] = STATE(60), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(660), + [anon_sym_as] = ACTIONS(660), + [anon_sym_async] = ACTIONS(660), + [anon_sym_await] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [anon_sym_const] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [anon_sym_default] = ACTIONS(660), + [anon_sym_enum] = ACTIONS(660), + [anon_sym_fn] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [anon_sym_if] = ACTIONS(660), + [anon_sym_impl] = ACTIONS(660), + [anon_sym_let] = ACTIONS(660), + [anon_sym_loop] = ACTIONS(660), + [anon_sym_match] = ACTIONS(660), + [anon_sym_mod] = ACTIONS(660), + [anon_sym_pub] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_static] = ACTIONS(660), + [anon_sym_struct] = ACTIONS(660), + [anon_sym_trait] = ACTIONS(660), + [anon_sym_type] = ACTIONS(660), + [anon_sym_union] = ACTIONS(660), + [anon_sym_unsafe] = ACTIONS(660), + [anon_sym_use] = ACTIONS(660), + [anon_sym_where] = ACTIONS(660), + [anon_sym_while] = ACTIONS(660), + [sym_mutable_specifier] = ACTIONS(660), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(660), + [sym_super] = ACTIONS(660), + [sym_crate] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [77] = { + [sym_non_special_punctuation] = STATE(89), + [sym_delim_token_tree] = STATE(89), + [sym__delim_tokens] = STATE(89), + [sym__non_delim_token] = STATE(89), + [sym__literal] = STATE(89), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(662), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_async] = ACTIONS(666), + [anon_sym_await] = ACTIONS(666), + [anon_sym_break] = ACTIONS(666), + [anon_sym_const] = ACTIONS(666), + [anon_sym_continue] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_enum] = ACTIONS(666), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_for] = ACTIONS(666), + [anon_sym_if] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(666), + [anon_sym_let] = ACTIONS(666), + [anon_sym_loop] = ACTIONS(666), + [anon_sym_match] = ACTIONS(666), + [anon_sym_mod] = ACTIONS(666), + [anon_sym_pub] = ACTIONS(666), + [anon_sym_return] = ACTIONS(666), + [anon_sym_static] = ACTIONS(666), + [anon_sym_struct] = ACTIONS(666), + [anon_sym_trait] = ACTIONS(666), + [anon_sym_type] = ACTIONS(666), + [anon_sym_union] = ACTIONS(666), + [anon_sym_unsafe] = ACTIONS(666), + [anon_sym_use] = ACTIONS(666), + [anon_sym_where] = ACTIONS(666), + [anon_sym_while] = ACTIONS(666), + [sym_mutable_specifier] = ACTIONS(666), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1182), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [78] = { + [sym_non_special_punctuation] = STATE(86), + [sym_delim_token_tree] = STATE(86), + [sym__delim_tokens] = STATE(86), + [sym__non_delim_token] = STATE(86), + [sym__literal] = STATE(86), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [79] = { + [sym_token_tree] = STATE(45), + [sym_token_repetition] = STATE(45), + [sym_non_special_punctuation] = STATE(45), + [sym__literal] = STATE(45), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(761), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [80] = { + [sym_non_special_punctuation] = STATE(93), + [sym_delim_token_tree] = STATE(93), + [sym__delim_tokens] = STATE(93), + [sym__non_delim_token] = STATE(93), + [sym__literal] = STATE(93), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(678), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(676), + [anon_sym_i8] = ACTIONS(676), + [anon_sym_u16] = ACTIONS(676), + [anon_sym_i16] = ACTIONS(676), + [anon_sym_u32] = ACTIONS(676), + [anon_sym_i32] = ACTIONS(676), + [anon_sym_u64] = ACTIONS(676), + [anon_sym_i64] = ACTIONS(676), + [anon_sym_u128] = ACTIONS(676), + [anon_sym_i128] = ACTIONS(676), + [anon_sym_isize] = ACTIONS(676), + [anon_sym_usize] = ACTIONS(676), + [anon_sym_f32] = ACTIONS(676), + [anon_sym_f64] = ACTIONS(676), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_str] = ACTIONS(676), + [anon_sym_char] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(676), + [anon_sym_as] = ACTIONS(676), + [anon_sym_async] = ACTIONS(676), + [anon_sym_await] = ACTIONS(676), + [anon_sym_break] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_continue] = ACTIONS(676), + [anon_sym_default] = ACTIONS(676), + [anon_sym_enum] = ACTIONS(676), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_impl] = ACTIONS(676), + [anon_sym_let] = ACTIONS(676), + [anon_sym_loop] = ACTIONS(676), + [anon_sym_match] = ACTIONS(676), + [anon_sym_mod] = ACTIONS(676), + [anon_sym_pub] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_static] = ACTIONS(676), + [anon_sym_struct] = ACTIONS(676), + [anon_sym_trait] = ACTIONS(676), + [anon_sym_type] = ACTIONS(676), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(676), + [anon_sym_use] = ACTIONS(676), + [anon_sym_where] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [sym_mutable_specifier] = ACTIONS(676), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(676), + [sym_super] = ACTIONS(676), + [sym_crate] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [81] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(999), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [82] = { + [sym_token_tree] = STATE(45), + [sym_token_repetition] = STATE(45), + [sym_non_special_punctuation] = STATE(45), + [sym__literal] = STATE(45), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(682), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [83] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(995), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [84] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(221), - [sym_if_let_expression] = STATE(221), - [sym_match_expression] = STATE(221), - [sym_while_expression] = STATE(221), - [sym_while_let_expression] = STATE(221), - [sym_loop_expression] = STATE(221), - [sym_for_expression] = STATE(221), - [sym_const_block] = STATE(221), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(221), - [sym_async_block] = STATE(221), - [sym_block] = STATE(221), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(648), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(656), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_while] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [85] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1132), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(221), - [sym_if_let_expression] = STATE(221), - [sym_match_expression] = STATE(221), - [sym_while_expression] = STATE(221), - [sym_while_let_expression] = STATE(221), - [sym_loop_expression] = STATE(221), - [sym_for_expression] = STATE(221), - [sym_const_block] = STATE(221), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(221), - [sym_async_block] = STATE(221), - [sym_block] = STATE(221), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(648), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(656), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_while] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [86] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [119] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1191), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [87] = { + [sym_token_tree] = STATE(45), + [sym_token_repetition] = STATE(45), + [sym_non_special_punctuation] = STATE(45), + [sym__literal] = STATE(45), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [88] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(608), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [89] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(592), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1119), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [90] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(994), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [91] = { + [sym_non_special_punctuation] = STATE(99), + [sym_delim_token_tree] = STATE(99), + [sym__delim_tokens] = STATE(99), + [sym__non_delim_token] = STATE(99), + [sym__literal] = STATE(99), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(686), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(690), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(686), + [anon_sym_i8] = ACTIONS(686), + [anon_sym_u16] = ACTIONS(686), + [anon_sym_i16] = ACTIONS(686), + [anon_sym_u32] = ACTIONS(686), + [anon_sym_i32] = ACTIONS(686), + [anon_sym_u64] = ACTIONS(686), + [anon_sym_i64] = ACTIONS(686), + [anon_sym_u128] = ACTIONS(686), + [anon_sym_i128] = ACTIONS(686), + [anon_sym_isize] = ACTIONS(686), + [anon_sym_usize] = ACTIONS(686), + [anon_sym_f32] = ACTIONS(686), + [anon_sym_f64] = ACTIONS(686), + [anon_sym_bool] = ACTIONS(686), + [anon_sym_str] = ACTIONS(686), + [anon_sym_char] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_async] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_fn] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_impl] = ACTIONS(686), + [anon_sym_let] = ACTIONS(686), + [anon_sym_loop] = ACTIONS(686), + [anon_sym_match] = ACTIONS(686), + [anon_sym_mod] = ACTIONS(686), + [anon_sym_pub] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_static] = ACTIONS(686), + [anon_sym_struct] = ACTIONS(686), + [anon_sym_trait] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_union] = ACTIONS(686), + [anon_sym_unsafe] = ACTIONS(686), + [anon_sym_use] = ACTIONS(686), + [anon_sym_where] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [sym_mutable_specifier] = ACTIONS(686), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(686), + [sym_super] = ACTIONS(686), + [sym_crate] = ACTIONS(686), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1185), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [92] = { + [sym_token_tree] = STATE(45), + [sym_token_repetition] = STATE(45), + [sym_non_special_punctuation] = STATE(45), + [sym__literal] = STATE(45), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [93] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(684), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [94] = { + [sym_token_tree] = STATE(79), + [sym_token_repetition] = STATE(79), + [sym_non_special_punctuation] = STATE(79), + [sym__literal] = STATE(79), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(692), + [anon_sym_i8] = ACTIONS(692), + [anon_sym_u16] = ACTIONS(692), + [anon_sym_i16] = ACTIONS(692), + [anon_sym_u32] = ACTIONS(692), + [anon_sym_i32] = ACTIONS(692), + [anon_sym_u64] = ACTIONS(692), + [anon_sym_i64] = ACTIONS(692), + [anon_sym_u128] = ACTIONS(692), + [anon_sym_i128] = ACTIONS(692), + [anon_sym_isize] = ACTIONS(692), + [anon_sym_usize] = ACTIONS(692), + [anon_sym_f32] = ACTIONS(692), + [anon_sym_f64] = ACTIONS(692), + [anon_sym_bool] = ACTIONS(692), + [anon_sym_str] = ACTIONS(692), + [anon_sym_char] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_as] = ACTIONS(692), + [anon_sym_async] = ACTIONS(692), + [anon_sym_await] = ACTIONS(692), + [anon_sym_break] = ACTIONS(692), + [anon_sym_const] = ACTIONS(692), + [anon_sym_continue] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_enum] = ACTIONS(692), + [anon_sym_fn] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_impl] = ACTIONS(692), + [anon_sym_let] = ACTIONS(692), + [anon_sym_loop] = ACTIONS(692), + [anon_sym_match] = ACTIONS(692), + [anon_sym_mod] = ACTIONS(692), + [anon_sym_pub] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_static] = ACTIONS(692), + [anon_sym_struct] = ACTIONS(692), + [anon_sym_trait] = ACTIONS(692), + [anon_sym_type] = ACTIONS(692), + [anon_sym_union] = ACTIONS(692), + [anon_sym_unsafe] = ACTIONS(692), + [anon_sym_use] = ACTIONS(692), + [anon_sym_where] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [sym_mutable_specifier] = ACTIONS(692), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(692), + [sym_super] = ACTIONS(692), + [sym_crate] = ACTIONS(692), + [sym_metavariable] = ACTIONS(696), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(985), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [95] = { + [sym_non_special_punctuation] = STATE(105), + [sym_delim_token_tree] = STATE(105), + [sym__delim_tokens] = STATE(105), + [sym__non_delim_token] = STATE(105), + [sym__literal] = STATE(105), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(105), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(983), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [96] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [97] = { + [sym_non_special_punctuation] = STATE(81), + [sym_delim_token_tree] = STATE(81), + [sym__delim_tokens] = STATE(81), + [sym__non_delim_token] = STATE(81), + [sym__literal] = STATE(81), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(704), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [98] = { + [sym_non_special_punctuation] = STATE(61), + [sym_delim_token_tree] = STATE(61), + [sym__delim_tokens] = STATE(61), + [sym__non_delim_token] = STATE(61), + [sym__literal] = STATE(61), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [99] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [100] = { + [sym_non_special_punctuation] = STATE(83), + [sym_delim_token_tree] = STATE(83), + [sym__delim_tokens] = STATE(83), + [sym__non_delim_token] = STATE(83), + [sym__literal] = STATE(83), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(712), + [anon_sym_i8] = ACTIONS(712), + [anon_sym_u16] = ACTIONS(712), + [anon_sym_i16] = ACTIONS(712), + [anon_sym_u32] = ACTIONS(712), + [anon_sym_i32] = ACTIONS(712), + [anon_sym_u64] = ACTIONS(712), + [anon_sym_i64] = ACTIONS(712), + [anon_sym_u128] = ACTIONS(712), + [anon_sym_i128] = ACTIONS(712), + [anon_sym_isize] = ACTIONS(712), + [anon_sym_usize] = ACTIONS(712), + [anon_sym_f32] = ACTIONS(712), + [anon_sym_f64] = ACTIONS(712), + [anon_sym_bool] = ACTIONS(712), + [anon_sym_str] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_SQUOTE] = ACTIONS(712), + [anon_sym_as] = ACTIONS(712), + [anon_sym_async] = ACTIONS(712), + [anon_sym_await] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_const] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_impl] = ACTIONS(712), + [anon_sym_let] = ACTIONS(712), + [anon_sym_loop] = ACTIONS(712), + [anon_sym_match] = ACTIONS(712), + [anon_sym_mod] = ACTIONS(712), + [anon_sym_pub] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_struct] = ACTIONS(712), + [anon_sym_trait] = ACTIONS(712), + [anon_sym_type] = ACTIONS(712), + [anon_sym_union] = ACTIONS(712), + [anon_sym_unsafe] = ACTIONS(712), + [anon_sym_use] = ACTIONS(712), + [anon_sym_where] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [sym_mutable_specifier] = ACTIONS(712), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1118), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [101] = { + [sym_non_special_punctuation] = STATE(96), + [sym_delim_token_tree] = STATE(96), + [sym__delim_tokens] = STATE(96), + [sym__non_delim_token] = STATE(96), + [sym__literal] = STATE(96), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(716), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(716), + [anon_sym_i8] = ACTIONS(716), + [anon_sym_u16] = ACTIONS(716), + [anon_sym_i16] = ACTIONS(716), + [anon_sym_u32] = ACTIONS(716), + [anon_sym_i32] = ACTIONS(716), + [anon_sym_u64] = ACTIONS(716), + [anon_sym_i64] = ACTIONS(716), + [anon_sym_u128] = ACTIONS(716), + [anon_sym_i128] = ACTIONS(716), + [anon_sym_isize] = ACTIONS(716), + [anon_sym_usize] = ACTIONS(716), + [anon_sym_f32] = ACTIONS(716), + [anon_sym_f64] = ACTIONS(716), + [anon_sym_bool] = ACTIONS(716), + [anon_sym_str] = ACTIONS(716), + [anon_sym_char] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(716), + [anon_sym_as] = ACTIONS(716), + [anon_sym_async] = ACTIONS(716), + [anon_sym_await] = ACTIONS(716), + [anon_sym_break] = ACTIONS(716), + [anon_sym_const] = ACTIONS(716), + [anon_sym_continue] = ACTIONS(716), + [anon_sym_default] = ACTIONS(716), + [anon_sym_enum] = ACTIONS(716), + [anon_sym_fn] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_impl] = ACTIONS(716), + [anon_sym_let] = ACTIONS(716), + [anon_sym_loop] = ACTIONS(716), + [anon_sym_match] = ACTIONS(716), + [anon_sym_mod] = ACTIONS(716), + [anon_sym_pub] = ACTIONS(716), + [anon_sym_return] = ACTIONS(716), + [anon_sym_static] = ACTIONS(716), + [anon_sym_struct] = ACTIONS(716), + [anon_sym_trait] = ACTIONS(716), + [anon_sym_type] = ACTIONS(716), + [anon_sym_union] = ACTIONS(716), + [anon_sym_unsafe] = ACTIONS(716), + [anon_sym_use] = ACTIONS(716), + [anon_sym_where] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [sym_mutable_specifier] = ACTIONS(716), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(716), + [sym_super] = ACTIONS(716), + [sym_crate] = ACTIONS(716), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [102] = { + [sym_token_tree] = STATE(92), + [sym_token_repetition] = STATE(92), + [sym_non_special_punctuation] = STATE(92), + [sym__literal] = STATE(92), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(720), + [anon_sym_i8] = ACTIONS(720), + [anon_sym_u16] = ACTIONS(720), + [anon_sym_i16] = ACTIONS(720), + [anon_sym_u32] = ACTIONS(720), + [anon_sym_i32] = ACTIONS(720), + [anon_sym_u64] = ACTIONS(720), + [anon_sym_i64] = ACTIONS(720), + [anon_sym_u128] = ACTIONS(720), + [anon_sym_i128] = ACTIONS(720), + [anon_sym_isize] = ACTIONS(720), + [anon_sym_usize] = ACTIONS(720), + [anon_sym_f32] = ACTIONS(720), + [anon_sym_f64] = ACTIONS(720), + [anon_sym_bool] = ACTIONS(720), + [anon_sym_str] = ACTIONS(720), + [anon_sym_char] = ACTIONS(720), + [anon_sym_SQUOTE] = ACTIONS(720), + [anon_sym_as] = ACTIONS(720), + [anon_sym_async] = ACTIONS(720), + [anon_sym_await] = ACTIONS(720), + [anon_sym_break] = ACTIONS(720), + [anon_sym_const] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(720), + [anon_sym_default] = ACTIONS(720), + [anon_sym_enum] = ACTIONS(720), + [anon_sym_fn] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_impl] = ACTIONS(720), + [anon_sym_let] = ACTIONS(720), + [anon_sym_loop] = ACTIONS(720), + [anon_sym_match] = ACTIONS(720), + [anon_sym_mod] = ACTIONS(720), + [anon_sym_pub] = ACTIONS(720), + [anon_sym_return] = ACTIONS(720), + [anon_sym_static] = ACTIONS(720), + [anon_sym_struct] = ACTIONS(720), + [anon_sym_trait] = ACTIONS(720), + [anon_sym_type] = ACTIONS(720), + [anon_sym_union] = ACTIONS(720), + [anon_sym_unsafe] = ACTIONS(720), + [anon_sym_use] = ACTIONS(720), + [anon_sym_where] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [sym_mutable_specifier] = ACTIONS(720), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_crate] = ACTIONS(720), + [sym_metavariable] = ACTIONS(724), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1196), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [103] = { + [sym_non_special_punctuation] = STATE(90), + [sym_delim_token_tree] = STATE(90), + [sym__delim_tokens] = STATE(90), + [sym__non_delim_token] = STATE(90), + [sym__literal] = STATE(90), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(726), + [anon_sym_as] = ACTIONS(726), + [anon_sym_async] = ACTIONS(726), + [anon_sym_await] = ACTIONS(726), + [anon_sym_break] = ACTIONS(726), + [anon_sym_const] = ACTIONS(726), + [anon_sym_continue] = ACTIONS(726), + [anon_sym_default] = ACTIONS(726), + [anon_sym_enum] = ACTIONS(726), + [anon_sym_fn] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_impl] = ACTIONS(726), + [anon_sym_let] = ACTIONS(726), + [anon_sym_loop] = ACTIONS(726), + [anon_sym_match] = ACTIONS(726), + [anon_sym_mod] = ACTIONS(726), + [anon_sym_pub] = ACTIONS(726), + [anon_sym_return] = ACTIONS(726), + [anon_sym_static] = ACTIONS(726), + [anon_sym_struct] = ACTIONS(726), + [anon_sym_trait] = ACTIONS(726), + [anon_sym_type] = ACTIONS(726), + [anon_sym_union] = ACTIONS(726), + [anon_sym_unsafe] = ACTIONS(726), + [anon_sym_use] = ACTIONS(726), + [anon_sym_where] = ACTIONS(726), + [anon_sym_while] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(726), + [sym_super] = ACTIONS(726), + [sym_crate] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [104] = { + [sym_token_tree] = STATE(87), + [sym_token_repetition] = STATE(87), + [sym_non_special_punctuation] = STATE(87), + [sym__literal] = STATE(87), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(730), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(730), + [anon_sym_as] = ACTIONS(730), + [anon_sym_async] = ACTIONS(730), + [anon_sym_await] = ACTIONS(730), + [anon_sym_break] = ACTIONS(730), + [anon_sym_const] = ACTIONS(730), + [anon_sym_continue] = ACTIONS(730), + [anon_sym_default] = ACTIONS(730), + [anon_sym_enum] = ACTIONS(730), + [anon_sym_fn] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_impl] = ACTIONS(730), + [anon_sym_let] = ACTIONS(730), + [anon_sym_loop] = ACTIONS(730), + [anon_sym_match] = ACTIONS(730), + [anon_sym_mod] = ACTIONS(730), + [anon_sym_pub] = ACTIONS(730), + [anon_sym_return] = ACTIONS(730), + [anon_sym_static] = ACTIONS(730), + [anon_sym_struct] = ACTIONS(730), + [anon_sym_trait] = ACTIONS(730), + [anon_sym_type] = ACTIONS(730), + [anon_sym_union] = ACTIONS(730), + [anon_sym_unsafe] = ACTIONS(730), + [anon_sym_use] = ACTIONS(730), + [anon_sym_where] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [sym_mutable_specifier] = ACTIONS(730), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(730), + [sym_super] = ACTIONS(730), + [sym_crate] = ACTIONS(730), + [sym_metavariable] = ACTIONS(732), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(680), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(688), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(702), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(722), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [105] = { + [sym_non_special_punctuation] = STATE(58), + [sym_delim_token_tree] = STATE(58), + [sym__delim_tokens] = STATE(58), + [sym__non_delim_token] = STATE(58), + [sym__literal] = STATE(58), + [sym_string_literal] = STATE(133), + [sym_boolean_literal] = STATE(133), + [aux_sym_delim_token_tree_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_EQ_GT] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(586), + [anon_sym__] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), + [106] = { + [sym_token_tree] = STATE(64), + [sym_token_repetition] = STATE(64), + [sym_non_special_punctuation] = STATE(64), + [sym__literal] = STATE(64), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(734), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), [anon_sym_u8] = ACTIONS(734), [anon_sym_i8] = ACTIONS(734), [anon_sym_u16] = ACTIONS(734), @@ -29530,10621 +28501,13530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(734), [anon_sym_str] = ACTIONS(734), [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(740), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_SQUOTE] = ACTIONS(734), + [anon_sym_as] = ACTIONS(734), + [anon_sym_async] = ACTIONS(734), + [anon_sym_await] = ACTIONS(734), + [anon_sym_break] = ACTIONS(734), + [anon_sym_const] = ACTIONS(734), + [anon_sym_continue] = ACTIONS(734), + [anon_sym_default] = ACTIONS(734), + [anon_sym_enum] = ACTIONS(734), + [anon_sym_fn] = ACTIONS(734), + [anon_sym_for] = ACTIONS(734), + [anon_sym_if] = ACTIONS(734), + [anon_sym_impl] = ACTIONS(734), + [anon_sym_let] = ACTIONS(734), + [anon_sym_loop] = ACTIONS(734), + [anon_sym_match] = ACTIONS(734), + [anon_sym_mod] = ACTIONS(734), + [anon_sym_pub] = ACTIONS(734), + [anon_sym_return] = ACTIONS(734), + [anon_sym_static] = ACTIONS(734), + [anon_sym_struct] = ACTIONS(734), + [anon_sym_trait] = ACTIONS(734), + [anon_sym_type] = ACTIONS(734), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(734), + [anon_sym_use] = ACTIONS(734), + [anon_sym_where] = ACTIONS(734), + [anon_sym_while] = ACTIONS(734), + [sym_mutable_specifier] = ACTIONS(734), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(734), + [sym_super] = ACTIONS(734), + [sym_crate] = ACTIONS(734), + [sym_metavariable] = ACTIONS(738), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(680), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(688), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(702), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(722), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [107] = { + [sym_token_tree] = STATE(82), + [sym_token_repetition] = STATE(82), + [sym_non_special_punctuation] = STATE(82), + [sym__literal] = STATE(82), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(740), + [anon_sym_i8] = ACTIONS(740), + [anon_sym_u16] = ACTIONS(740), + [anon_sym_i16] = ACTIONS(740), + [anon_sym_u32] = ACTIONS(740), + [anon_sym_i32] = ACTIONS(740), + [anon_sym_u64] = ACTIONS(740), + [anon_sym_i64] = ACTIONS(740), + [anon_sym_u128] = ACTIONS(740), + [anon_sym_i128] = ACTIONS(740), + [anon_sym_isize] = ACTIONS(740), + [anon_sym_usize] = ACTIONS(740), + [anon_sym_f32] = ACTIONS(740), + [anon_sym_f64] = ACTIONS(740), + [anon_sym_bool] = ACTIONS(740), + [anon_sym_str] = ACTIONS(740), + [anon_sym_char] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(740), + [anon_sym_as] = ACTIONS(740), + [anon_sym_async] = ACTIONS(740), + [anon_sym_await] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_const] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_default] = ACTIONS(740), + [anon_sym_enum] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_impl] = ACTIONS(740), + [anon_sym_let] = ACTIONS(740), + [anon_sym_loop] = ACTIONS(740), + [anon_sym_match] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_pub] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_static] = ACTIONS(740), + [anon_sym_struct] = ACTIONS(740), + [anon_sym_trait] = ACTIONS(740), + [anon_sym_type] = ACTIONS(740), + [anon_sym_union] = ACTIONS(740), + [anon_sym_unsafe] = ACTIONS(740), + [anon_sym_use] = ACTIONS(740), + [anon_sym_where] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [sym_mutable_specifier] = ACTIONS(740), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(740), + [sym_crate] = ACTIONS(740), + [sym_metavariable] = ACTIONS(742), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [108] = { + [sym_token_tree] = STATE(66), + [sym_token_repetition] = STATE(66), + [sym_non_special_punctuation] = STATE(66), + [sym__literal] = STATE(66), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(744), + [anon_sym_i8] = ACTIONS(744), + [anon_sym_u16] = ACTIONS(744), + [anon_sym_i16] = ACTIONS(744), + [anon_sym_u32] = ACTIONS(744), + [anon_sym_i32] = ACTIONS(744), + [anon_sym_u64] = ACTIONS(744), + [anon_sym_i64] = ACTIONS(744), + [anon_sym_u128] = ACTIONS(744), + [anon_sym_i128] = ACTIONS(744), + [anon_sym_isize] = ACTIONS(744), + [anon_sym_usize] = ACTIONS(744), + [anon_sym_f32] = ACTIONS(744), + [anon_sym_f64] = ACTIONS(744), + [anon_sym_bool] = ACTIONS(744), + [anon_sym_str] = ACTIONS(744), + [anon_sym_char] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_as] = ACTIONS(744), + [anon_sym_async] = ACTIONS(744), + [anon_sym_await] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_enum] = ACTIONS(744), + [anon_sym_fn] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_impl] = ACTIONS(744), + [anon_sym_let] = ACTIONS(744), + [anon_sym_loop] = ACTIONS(744), + [anon_sym_match] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_pub] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_static] = ACTIONS(744), + [anon_sym_struct] = ACTIONS(744), + [anon_sym_trait] = ACTIONS(744), + [anon_sym_type] = ACTIONS(744), + [anon_sym_union] = ACTIONS(744), + [anon_sym_unsafe] = ACTIONS(744), + [anon_sym_use] = ACTIONS(744), + [anon_sym_where] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [sym_mutable_specifier] = ACTIONS(744), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(744), + [sym_crate] = ACTIONS(744), + [sym_metavariable] = ACTIONS(746), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [109] = { + [sym_token_tree] = STATE(69), + [sym_token_repetition] = STATE(69), + [sym_non_special_punctuation] = STATE(69), + [sym__literal] = STATE(69), + [sym_string_literal] = STATE(113), + [sym_boolean_literal] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(471), + [anon_sym__] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(748), + [anon_sym_i8] = ACTIONS(748), + [anon_sym_u16] = ACTIONS(748), + [anon_sym_i16] = ACTIONS(748), + [anon_sym_u32] = ACTIONS(748), + [anon_sym_i32] = ACTIONS(748), + [anon_sym_u64] = ACTIONS(748), + [anon_sym_i64] = ACTIONS(748), + [anon_sym_u128] = ACTIONS(748), + [anon_sym_i128] = ACTIONS(748), + [anon_sym_isize] = ACTIONS(748), + [anon_sym_usize] = ACTIONS(748), + [anon_sym_f32] = ACTIONS(748), + [anon_sym_f64] = ACTIONS(748), + [anon_sym_bool] = ACTIONS(748), + [anon_sym_str] = ACTIONS(748), + [anon_sym_char] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(748), + [anon_sym_as] = ACTIONS(748), + [anon_sym_async] = ACTIONS(748), + [anon_sym_await] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_fn] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_impl] = ACTIONS(748), + [anon_sym_let] = ACTIONS(748), + [anon_sym_loop] = ACTIONS(748), + [anon_sym_match] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_pub] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_static] = ACTIONS(748), + [anon_sym_struct] = ACTIONS(748), + [anon_sym_trait] = ACTIONS(748), + [anon_sym_type] = ACTIONS(748), + [anon_sym_union] = ACTIONS(748), + [anon_sym_unsafe] = ACTIONS(748), + [anon_sym_use] = ACTIONS(748), + [anon_sym_where] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [sym_mutable_specifier] = ACTIONS(748), + [sym_integer_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(487), + [sym_char_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(489), + [anon_sym_false] = ACTIONS(489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(485), + [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [110] = { + [sym_identifier] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_EQ_GT] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_COLON] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_QMARK] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_PERCENT] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(752), + [anon_sym_PLUS_EQ] = ACTIONS(754), + [anon_sym_DASH_EQ] = ACTIONS(754), + [anon_sym_STAR_EQ] = ACTIONS(754), + [anon_sym_SLASH_EQ] = ACTIONS(754), + [anon_sym_PERCENT_EQ] = ACTIONS(754), + [anon_sym_CARET_EQ] = ACTIONS(754), + [anon_sym_AMP_EQ] = ACTIONS(754), + [anon_sym_PIPE_EQ] = ACTIONS(754), + [anon_sym_LT_LT_EQ] = ACTIONS(754), + [anon_sym_GT_GT_EQ] = ACTIONS(754), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(754), + [anon_sym_BANG_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(754), + [anon_sym_LT_EQ] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(754), + [anon_sym__] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(754), + [anon_sym_DOT_DOT_EQ] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_COLON_COLON] = ACTIONS(754), + [anon_sym_DASH_GT] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(754), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_as] = ACTIONS(752), + [anon_sym_async] = ACTIONS(752), + [anon_sym_await] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_default] = ACTIONS(752), + [anon_sym_enum] = ACTIONS(752), + [anon_sym_fn] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_impl] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_pub] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_static] = ACTIONS(752), + [anon_sym_struct] = ACTIONS(752), + [anon_sym_trait] = ACTIONS(752), + [anon_sym_type] = ACTIONS(752), + [anon_sym_union] = ACTIONS(752), + [anon_sym_unsafe] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [sym_mutable_specifier] = ACTIONS(752), + [sym_integer_literal] = ACTIONS(754), + [aux_sym_string_literal_token1] = ACTIONS(754), + [sym_char_literal] = ACTIONS(754), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(752), + [sym_super] = ACTIONS(752), + [sym_crate] = ACTIONS(752), + [sym_metavariable] = ACTIONS(754), + [sym_raw_string_literal] = ACTIONS(754), + [sym_float_literal] = ACTIONS(754), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [111] = { + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_STAR_EQ] = ACTIONS(760), + [anon_sym_SLASH_EQ] = ACTIONS(760), + [anon_sym_PERCENT_EQ] = ACTIONS(760), + [anon_sym_CARET_EQ] = ACTIONS(760), + [anon_sym_AMP_EQ] = ACTIONS(760), + [anon_sym_PIPE_EQ] = ACTIONS(760), + [anon_sym_LT_LT_EQ] = ACTIONS(760), + [anon_sym_GT_GT_EQ] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym__] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_metavariable] = ACTIONS(760), + [sym_raw_string_literal] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(228), - [sym_if_let_expression] = STATE(228), - [sym_match_expression] = STATE(228), - [sym_while_expression] = STATE(228), - [sym_while_let_expression] = STATE(228), - [sym_loop_expression] = STATE(228), - [sym_for_expression] = STATE(228), - [sym_const_block] = STATE(228), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(228), - [sym_async_block] = STATE(228), - [sym_block] = STATE(228), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(648), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(656), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_while] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [112] = { + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(762), + [anon_sym_PERCENT] = ACTIONS(762), + [anon_sym_CARET] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_LT_LT] = ACTIONS(762), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_PLUS_EQ] = ACTIONS(764), + [anon_sym_DASH_EQ] = ACTIONS(764), + [anon_sym_STAR_EQ] = ACTIONS(764), + [anon_sym_SLASH_EQ] = ACTIONS(764), + [anon_sym_PERCENT_EQ] = ACTIONS(764), + [anon_sym_CARET_EQ] = ACTIONS(764), + [anon_sym_AMP_EQ] = ACTIONS(764), + [anon_sym_PIPE_EQ] = ACTIONS(764), + [anon_sym_LT_LT_EQ] = ACTIONS(764), + [anon_sym_GT_GT_EQ] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym__] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_DOT_DOT] = ACTIONS(762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_COLON_COLON] = ACTIONS(764), + [anon_sym_DASH_GT] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_u8] = ACTIONS(762), + [anon_sym_i8] = ACTIONS(762), + [anon_sym_u16] = ACTIONS(762), + [anon_sym_i16] = ACTIONS(762), + [anon_sym_u32] = ACTIONS(762), + [anon_sym_i32] = ACTIONS(762), + [anon_sym_u64] = ACTIONS(762), + [anon_sym_i64] = ACTIONS(762), + [anon_sym_u128] = ACTIONS(762), + [anon_sym_i128] = ACTIONS(762), + [anon_sym_isize] = ACTIONS(762), + [anon_sym_usize] = ACTIONS(762), + [anon_sym_f32] = ACTIONS(762), + [anon_sym_f64] = ACTIONS(762), + [anon_sym_bool] = ACTIONS(762), + [anon_sym_str] = ACTIONS(762), + [anon_sym_char] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(762), + [anon_sym_as] = ACTIONS(762), + [anon_sym_async] = ACTIONS(762), + [anon_sym_await] = ACTIONS(762), + [anon_sym_break] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_default] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_fn] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_impl] = ACTIONS(762), + [anon_sym_let] = ACTIONS(762), + [anon_sym_loop] = ACTIONS(762), + [anon_sym_match] = ACTIONS(762), + [anon_sym_mod] = ACTIONS(762), + [anon_sym_pub] = ACTIONS(762), + [anon_sym_return] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_trait] = ACTIONS(762), + [anon_sym_type] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [anon_sym_unsafe] = ACTIONS(762), + [anon_sym_use] = ACTIONS(762), + [anon_sym_where] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [sym_mutable_specifier] = ACTIONS(762), + [sym_integer_literal] = ACTIONS(764), + [aux_sym_string_literal_token1] = ACTIONS(764), + [sym_char_literal] = ACTIONS(764), + [anon_sym_true] = ACTIONS(762), + [anon_sym_false] = ACTIONS(762), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(762), + [sym_super] = ACTIONS(762), + [sym_crate] = ACTIONS(762), + [sym_metavariable] = ACTIONS(764), + [sym_raw_string_literal] = ACTIONS(764), + [sym_float_literal] = ACTIONS(764), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [113] = { + [sym_identifier] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PERCENT] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_LT_LT] = ACTIONS(766), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_PLUS_EQ] = ACTIONS(768), + [anon_sym_DASH_EQ] = ACTIONS(768), + [anon_sym_STAR_EQ] = ACTIONS(768), + [anon_sym_SLASH_EQ] = ACTIONS(768), + [anon_sym_PERCENT_EQ] = ACTIONS(768), + [anon_sym_CARET_EQ] = ACTIONS(768), + [anon_sym_AMP_EQ] = ACTIONS(768), + [anon_sym_PIPE_EQ] = ACTIONS(768), + [anon_sym_LT_LT_EQ] = ACTIONS(768), + [anon_sym_GT_GT_EQ] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym__] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_DOT_DOT] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_COLON_COLON] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(768), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u128] = ACTIONS(766), + [anon_sym_i128] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_str] = ACTIONS(766), + [anon_sym_char] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(766), + [anon_sym_as] = ACTIONS(766), + [anon_sym_async] = ACTIONS(766), + [anon_sym_await] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_const] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_default] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_fn] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_impl] = ACTIONS(766), + [anon_sym_let] = ACTIONS(766), + [anon_sym_loop] = ACTIONS(766), + [anon_sym_match] = ACTIONS(766), + [anon_sym_mod] = ACTIONS(766), + [anon_sym_pub] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_trait] = ACTIONS(766), + [anon_sym_type] = ACTIONS(766), + [anon_sym_union] = ACTIONS(766), + [anon_sym_unsafe] = ACTIONS(766), + [anon_sym_use] = ACTIONS(766), + [anon_sym_where] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [sym_mutable_specifier] = ACTIONS(766), + [sym_integer_literal] = ACTIONS(768), + [aux_sym_string_literal_token1] = ACTIONS(768), + [sym_char_literal] = ACTIONS(768), + [anon_sym_true] = ACTIONS(766), + [anon_sym_false] = ACTIONS(766), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(766), + [sym_crate] = ACTIONS(766), + [sym_metavariable] = ACTIONS(768), + [sym_raw_string_literal] = ACTIONS(768), + [sym_float_literal] = ACTIONS(768), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [114] = { + [sym_identifier] = ACTIONS(770), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_EQ_GT] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_DOLLAR] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_PERCENT] = ACTIONS(770), + [anon_sym_CARET] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(770), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(770), + [anon_sym_GT_GT] = ACTIONS(770), + [anon_sym_PLUS_EQ] = ACTIONS(772), + [anon_sym_DASH_EQ] = ACTIONS(772), + [anon_sym_STAR_EQ] = ACTIONS(772), + [anon_sym_SLASH_EQ] = ACTIONS(772), + [anon_sym_PERCENT_EQ] = ACTIONS(772), + [anon_sym_CARET_EQ] = ACTIONS(772), + [anon_sym_AMP_EQ] = ACTIONS(772), + [anon_sym_PIPE_EQ] = ACTIONS(772), + [anon_sym_LT_LT_EQ] = ACTIONS(772), + [anon_sym_GT_GT_EQ] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(770), + [anon_sym_EQ_EQ] = ACTIONS(772), + [anon_sym_BANG_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(770), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_GT_EQ] = ACTIONS(772), + [anon_sym_LT_EQ] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [anon_sym__] = ACTIONS(770), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_DOT_DOT] = ACTIONS(770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(772), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_COLON_COLON] = ACTIONS(772), + [anon_sym_DASH_GT] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(772), + [anon_sym_u8] = ACTIONS(770), + [anon_sym_i8] = ACTIONS(770), + [anon_sym_u16] = ACTIONS(770), + [anon_sym_i16] = ACTIONS(770), + [anon_sym_u32] = ACTIONS(770), + [anon_sym_i32] = ACTIONS(770), + [anon_sym_u64] = ACTIONS(770), + [anon_sym_i64] = ACTIONS(770), + [anon_sym_u128] = ACTIONS(770), + [anon_sym_i128] = ACTIONS(770), + [anon_sym_isize] = ACTIONS(770), + [anon_sym_usize] = ACTIONS(770), + [anon_sym_f32] = ACTIONS(770), + [anon_sym_f64] = ACTIONS(770), + [anon_sym_bool] = ACTIONS(770), + [anon_sym_str] = ACTIONS(770), + [anon_sym_char] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(770), + [anon_sym_as] = ACTIONS(770), + [anon_sym_async] = ACTIONS(770), + [anon_sym_await] = ACTIONS(770), + [anon_sym_break] = ACTIONS(770), + [anon_sym_const] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_default] = ACTIONS(770), + [anon_sym_enum] = ACTIONS(770), + [anon_sym_fn] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_if] = ACTIONS(770), + [anon_sym_impl] = ACTIONS(770), + [anon_sym_let] = ACTIONS(770), + [anon_sym_loop] = ACTIONS(770), + [anon_sym_match] = ACTIONS(770), + [anon_sym_mod] = ACTIONS(770), + [anon_sym_pub] = ACTIONS(770), + [anon_sym_return] = ACTIONS(770), + [anon_sym_static] = ACTIONS(770), + [anon_sym_struct] = ACTIONS(770), + [anon_sym_trait] = ACTIONS(770), + [anon_sym_type] = ACTIONS(770), + [anon_sym_union] = ACTIONS(770), + [anon_sym_unsafe] = ACTIONS(770), + [anon_sym_use] = ACTIONS(770), + [anon_sym_where] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [sym_mutable_specifier] = ACTIONS(770), + [sym_integer_literal] = ACTIONS(772), + [aux_sym_string_literal_token1] = ACTIONS(772), + [sym_char_literal] = ACTIONS(772), + [anon_sym_true] = ACTIONS(770), + [anon_sym_false] = ACTIONS(770), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(770), + [sym_super] = ACTIONS(770), + [sym_crate] = ACTIONS(770), + [sym_metavariable] = ACTIONS(772), + [sym_raw_string_literal] = ACTIONS(772), + [sym_float_literal] = ACTIONS(772), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [115] = { + [sym_identifier] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_EQ_GT] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(776), + [anon_sym_RBRACK] = ACTIONS(776), + [anon_sym_COLON] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PERCENT] = ACTIONS(774), + [anon_sym_CARET] = ACTIONS(774), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_PLUS_EQ] = ACTIONS(776), + [anon_sym_DASH_EQ] = ACTIONS(776), + [anon_sym_STAR_EQ] = ACTIONS(776), + [anon_sym_SLASH_EQ] = ACTIONS(776), + [anon_sym_PERCENT_EQ] = ACTIONS(776), + [anon_sym_CARET_EQ] = ACTIONS(776), + [anon_sym_AMP_EQ] = ACTIONS(776), + [anon_sym_PIPE_EQ] = ACTIONS(776), + [anon_sym_LT_LT_EQ] = ACTIONS(776), + [anon_sym_GT_GT_EQ] = ACTIONS(776), + [anon_sym_EQ] = ACTIONS(774), + [anon_sym_EQ_EQ] = ACTIONS(776), + [anon_sym_BANG_EQ] = ACTIONS(776), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym__] = ACTIONS(774), + [anon_sym_DOT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(776), + [anon_sym_COLON_COLON] = ACTIONS(776), + [anon_sym_DASH_GT] = ACTIONS(776), + [anon_sym_POUND] = ACTIONS(776), + [anon_sym_u8] = ACTIONS(774), + [anon_sym_i8] = ACTIONS(774), + [anon_sym_u16] = ACTIONS(774), + [anon_sym_i16] = ACTIONS(774), + [anon_sym_u32] = ACTIONS(774), + [anon_sym_i32] = ACTIONS(774), + [anon_sym_u64] = ACTIONS(774), + [anon_sym_i64] = ACTIONS(774), + [anon_sym_u128] = ACTIONS(774), + [anon_sym_i128] = ACTIONS(774), + [anon_sym_isize] = ACTIONS(774), + [anon_sym_usize] = ACTIONS(774), + [anon_sym_f32] = ACTIONS(774), + [anon_sym_f64] = ACTIONS(774), + [anon_sym_bool] = ACTIONS(774), + [anon_sym_str] = ACTIONS(774), + [anon_sym_char] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(774), + [anon_sym_as] = ACTIONS(774), + [anon_sym_async] = ACTIONS(774), + [anon_sym_await] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_const] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_default] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(774), + [anon_sym_fn] = ACTIONS(774), + [anon_sym_for] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_impl] = ACTIONS(774), + [anon_sym_let] = ACTIONS(774), + [anon_sym_loop] = ACTIONS(774), + [anon_sym_match] = ACTIONS(774), + [anon_sym_mod] = ACTIONS(774), + [anon_sym_pub] = ACTIONS(774), + [anon_sym_return] = ACTIONS(774), + [anon_sym_static] = ACTIONS(774), + [anon_sym_struct] = ACTIONS(774), + [anon_sym_trait] = ACTIONS(774), + [anon_sym_type] = ACTIONS(774), + [anon_sym_union] = ACTIONS(774), + [anon_sym_unsafe] = ACTIONS(774), + [anon_sym_use] = ACTIONS(774), + [anon_sym_where] = ACTIONS(774), + [anon_sym_while] = ACTIONS(774), + [sym_mutable_specifier] = ACTIONS(774), + [sym_integer_literal] = ACTIONS(776), + [aux_sym_string_literal_token1] = ACTIONS(776), + [sym_char_literal] = ACTIONS(776), + [anon_sym_true] = ACTIONS(774), + [anon_sym_false] = ACTIONS(774), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(774), + [sym_super] = ACTIONS(774), + [sym_crate] = ACTIONS(774), + [sym_metavariable] = ACTIONS(776), + [sym_raw_string_literal] = ACTIONS(776), + [sym_float_literal] = ACTIONS(776), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1123), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [116] = { + [sym_identifier] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_EQ_GT] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_RBRACK] = ACTIONS(780), + [anon_sym_COLON] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(778), + [anon_sym_STAR] = ACTIONS(778), + [anon_sym_QMARK] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(778), + [anon_sym_SLASH] = ACTIONS(778), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(780), + [anon_sym_PIPE_PIPE] = ACTIONS(780), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_PLUS_EQ] = ACTIONS(780), + [anon_sym_DASH_EQ] = ACTIONS(780), + [anon_sym_STAR_EQ] = ACTIONS(780), + [anon_sym_SLASH_EQ] = ACTIONS(780), + [anon_sym_PERCENT_EQ] = ACTIONS(780), + [anon_sym_CARET_EQ] = ACTIONS(780), + [anon_sym_AMP_EQ] = ACTIONS(780), + [anon_sym_PIPE_EQ] = ACTIONS(780), + [anon_sym_LT_LT_EQ] = ACTIONS(780), + [anon_sym_GT_GT_EQ] = ACTIONS(780), + [anon_sym_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(780), + [anon_sym__] = ACTIONS(778), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_DOT_DOT] = ACTIONS(778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_COLON_COLON] = ACTIONS(780), + [anon_sym_DASH_GT] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(780), + [anon_sym_u8] = ACTIONS(778), + [anon_sym_i8] = ACTIONS(778), + [anon_sym_u16] = ACTIONS(778), + [anon_sym_i16] = ACTIONS(778), + [anon_sym_u32] = ACTIONS(778), + [anon_sym_i32] = ACTIONS(778), + [anon_sym_u64] = ACTIONS(778), + [anon_sym_i64] = ACTIONS(778), + [anon_sym_u128] = ACTIONS(778), + [anon_sym_i128] = ACTIONS(778), + [anon_sym_isize] = ACTIONS(778), + [anon_sym_usize] = ACTIONS(778), + [anon_sym_f32] = ACTIONS(778), + [anon_sym_f64] = ACTIONS(778), + [anon_sym_bool] = ACTIONS(778), + [anon_sym_str] = ACTIONS(778), + [anon_sym_char] = ACTIONS(778), + [anon_sym_SQUOTE] = ACTIONS(778), + [anon_sym_as] = ACTIONS(778), + [anon_sym_async] = ACTIONS(778), + [anon_sym_await] = ACTIONS(778), + [anon_sym_break] = ACTIONS(778), + [anon_sym_const] = ACTIONS(778), + [anon_sym_continue] = ACTIONS(778), + [anon_sym_default] = ACTIONS(778), + [anon_sym_enum] = ACTIONS(778), + [anon_sym_fn] = ACTIONS(778), + [anon_sym_for] = ACTIONS(778), + [anon_sym_if] = ACTIONS(778), + [anon_sym_impl] = ACTIONS(778), + [anon_sym_let] = ACTIONS(778), + [anon_sym_loop] = ACTIONS(778), + [anon_sym_match] = ACTIONS(778), + [anon_sym_mod] = ACTIONS(778), + [anon_sym_pub] = ACTIONS(778), + [anon_sym_return] = ACTIONS(778), + [anon_sym_static] = ACTIONS(778), + [anon_sym_struct] = ACTIONS(778), + [anon_sym_trait] = ACTIONS(778), + [anon_sym_type] = ACTIONS(778), + [anon_sym_union] = ACTIONS(778), + [anon_sym_unsafe] = ACTIONS(778), + [anon_sym_use] = ACTIONS(778), + [anon_sym_where] = ACTIONS(778), + [anon_sym_while] = ACTIONS(778), + [sym_mutable_specifier] = ACTIONS(778), + [sym_integer_literal] = ACTIONS(780), + [aux_sym_string_literal_token1] = ACTIONS(780), + [sym_char_literal] = ACTIONS(780), + [anon_sym_true] = ACTIONS(778), + [anon_sym_false] = ACTIONS(778), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(778), + [sym_super] = ACTIONS(778), + [sym_crate] = ACTIONS(778), + [sym_metavariable] = ACTIONS(780), + [sym_raw_string_literal] = ACTIONS(780), + [sym_float_literal] = ACTIONS(780), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [117] = { + [sym_identifier] = ACTIONS(782), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_EQ_GT] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_RBRACK] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(782), + [anon_sym_DOLLAR] = ACTIONS(782), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_STAR] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_SLASH] = ACTIONS(782), + [anon_sym_PERCENT] = ACTIONS(782), + [anon_sym_CARET] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(782), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_LT_LT] = ACTIONS(782), + [anon_sym_GT_GT] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(784), + [anon_sym_DASH_EQ] = ACTIONS(784), + [anon_sym_STAR_EQ] = ACTIONS(784), + [anon_sym_SLASH_EQ] = ACTIONS(784), + [anon_sym_PERCENT_EQ] = ACTIONS(784), + [anon_sym_CARET_EQ] = ACTIONS(784), + [anon_sym_AMP_EQ] = ACTIONS(784), + [anon_sym_PIPE_EQ] = ACTIONS(784), + [anon_sym_LT_LT_EQ] = ACTIONS(784), + [anon_sym_GT_GT_EQ] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(784), + [anon_sym_BANG_EQ] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(784), + [anon_sym_LT_EQ] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym__] = ACTIONS(782), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_DOT_DOT] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_COLON_COLON] = ACTIONS(784), + [anon_sym_DASH_GT] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(782), + [anon_sym_as] = ACTIONS(782), + [anon_sym_async] = ACTIONS(782), + [anon_sym_await] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_const] = ACTIONS(782), + [anon_sym_continue] = ACTIONS(782), + [anon_sym_default] = ACTIONS(782), + [anon_sym_enum] = ACTIONS(782), + [anon_sym_fn] = ACTIONS(782), + [anon_sym_for] = ACTIONS(782), + [anon_sym_if] = ACTIONS(782), + [anon_sym_impl] = ACTIONS(782), + [anon_sym_let] = ACTIONS(782), + [anon_sym_loop] = ACTIONS(782), + [anon_sym_match] = ACTIONS(782), + [anon_sym_mod] = ACTIONS(782), + [anon_sym_pub] = ACTIONS(782), + [anon_sym_return] = ACTIONS(782), + [anon_sym_static] = ACTIONS(782), + [anon_sym_struct] = ACTIONS(782), + [anon_sym_trait] = ACTIONS(782), + [anon_sym_type] = ACTIONS(782), + [anon_sym_union] = ACTIONS(782), + [anon_sym_unsafe] = ACTIONS(782), + [anon_sym_use] = ACTIONS(782), + [anon_sym_where] = ACTIONS(782), + [anon_sym_while] = ACTIONS(782), + [sym_mutable_specifier] = ACTIONS(782), + [sym_integer_literal] = ACTIONS(784), + [aux_sym_string_literal_token1] = ACTIONS(784), + [sym_char_literal] = ACTIONS(784), + [anon_sym_true] = ACTIONS(782), + [anon_sym_false] = ACTIONS(782), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(782), + [sym_super] = ACTIONS(782), + [sym_crate] = ACTIONS(782), + [sym_metavariable] = ACTIONS(784), + [sym_raw_string_literal] = ACTIONS(784), + [sym_float_literal] = ACTIONS(784), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [118] = { + [sym_identifier] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_EQ_GT] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_RBRACK] = ACTIONS(788), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_PLUS_EQ] = ACTIONS(788), + [anon_sym_DASH_EQ] = ACTIONS(788), + [anon_sym_STAR_EQ] = ACTIONS(788), + [anon_sym_SLASH_EQ] = ACTIONS(788), + [anon_sym_PERCENT_EQ] = ACTIONS(788), + [anon_sym_CARET_EQ] = ACTIONS(788), + [anon_sym_AMP_EQ] = ACTIONS(788), + [anon_sym_PIPE_EQ] = ACTIONS(788), + [anon_sym_LT_LT_EQ] = ACTIONS(788), + [anon_sym_GT_GT_EQ] = ACTIONS(788), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_EQ_EQ] = ACTIONS(788), + [anon_sym_BANG_EQ] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(788), + [anon_sym_LT_EQ] = ACTIONS(788), + [anon_sym_AT] = ACTIONS(788), + [anon_sym__] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_COLON_COLON] = ACTIONS(788), + [anon_sym_DASH_GT] = ACTIONS(788), + [anon_sym_POUND] = ACTIONS(788), + [anon_sym_u8] = ACTIONS(786), + [anon_sym_i8] = ACTIONS(786), + [anon_sym_u16] = ACTIONS(786), + [anon_sym_i16] = ACTIONS(786), + [anon_sym_u32] = ACTIONS(786), + [anon_sym_i32] = ACTIONS(786), + [anon_sym_u64] = ACTIONS(786), + [anon_sym_i64] = ACTIONS(786), + [anon_sym_u128] = ACTIONS(786), + [anon_sym_i128] = ACTIONS(786), + [anon_sym_isize] = ACTIONS(786), + [anon_sym_usize] = ACTIONS(786), + [anon_sym_f32] = ACTIONS(786), + [anon_sym_f64] = ACTIONS(786), + [anon_sym_bool] = ACTIONS(786), + [anon_sym_str] = ACTIONS(786), + [anon_sym_char] = ACTIONS(786), + [anon_sym_SQUOTE] = ACTIONS(786), + [anon_sym_as] = ACTIONS(786), + [anon_sym_async] = ACTIONS(786), + [anon_sym_await] = ACTIONS(786), + [anon_sym_break] = ACTIONS(786), + [anon_sym_const] = ACTIONS(786), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_enum] = ACTIONS(786), + [anon_sym_fn] = ACTIONS(786), + [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(786), + [anon_sym_impl] = ACTIONS(786), + [anon_sym_let] = ACTIONS(786), + [anon_sym_loop] = ACTIONS(786), + [anon_sym_match] = ACTIONS(786), + [anon_sym_mod] = ACTIONS(786), + [anon_sym_pub] = ACTIONS(786), + [anon_sym_return] = ACTIONS(786), + [anon_sym_static] = ACTIONS(786), + [anon_sym_struct] = ACTIONS(786), + [anon_sym_trait] = ACTIONS(786), + [anon_sym_type] = ACTIONS(786), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(786), + [anon_sym_use] = ACTIONS(786), + [anon_sym_where] = ACTIONS(786), + [anon_sym_while] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(786), + [sym_integer_literal] = ACTIONS(788), + [aux_sym_string_literal_token1] = ACTIONS(788), + [sym_char_literal] = ACTIONS(788), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(786), + [sym_super] = ACTIONS(786), + [sym_crate] = ACTIONS(786), + [sym_metavariable] = ACTIONS(788), + [sym_raw_string_literal] = ACTIONS(788), + [sym_float_literal] = ACTIONS(788), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [119] = { + [sym_identifier] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_EQ_GT] = ACTIONS(792), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_RBRACK] = ACTIONS(792), + [anon_sym_COLON] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_QMARK] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_PERCENT] = ACTIONS(790), + [anon_sym_CARET] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(790), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_PLUS_EQ] = ACTIONS(792), + [anon_sym_DASH_EQ] = ACTIONS(792), + [anon_sym_STAR_EQ] = ACTIONS(792), + [anon_sym_SLASH_EQ] = ACTIONS(792), + [anon_sym_PERCENT_EQ] = ACTIONS(792), + [anon_sym_CARET_EQ] = ACTIONS(792), + [anon_sym_AMP_EQ] = ACTIONS(792), + [anon_sym_PIPE_EQ] = ACTIONS(792), + [anon_sym_LT_LT_EQ] = ACTIONS(792), + [anon_sym_GT_GT_EQ] = ACTIONS(792), + [anon_sym_EQ] = ACTIONS(790), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_BANG_EQ] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_GT_EQ] = ACTIONS(792), + [anon_sym_LT_EQ] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(792), + [anon_sym__] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(790), + [anon_sym_DOT_DOT] = ACTIONS(790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(792), + [anon_sym_COLON_COLON] = ACTIONS(792), + [anon_sym_DASH_GT] = ACTIONS(792), + [anon_sym_POUND] = ACTIONS(792), + [anon_sym_u8] = ACTIONS(790), + [anon_sym_i8] = ACTIONS(790), + [anon_sym_u16] = ACTIONS(790), + [anon_sym_i16] = ACTIONS(790), + [anon_sym_u32] = ACTIONS(790), + [anon_sym_i32] = ACTIONS(790), + [anon_sym_u64] = ACTIONS(790), + [anon_sym_i64] = ACTIONS(790), + [anon_sym_u128] = ACTIONS(790), + [anon_sym_i128] = ACTIONS(790), + [anon_sym_isize] = ACTIONS(790), + [anon_sym_usize] = ACTIONS(790), + [anon_sym_f32] = ACTIONS(790), + [anon_sym_f64] = ACTIONS(790), + [anon_sym_bool] = ACTIONS(790), + [anon_sym_str] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(790), + [anon_sym_as] = ACTIONS(790), + [anon_sym_async] = ACTIONS(790), + [anon_sym_await] = ACTIONS(790), + [anon_sym_break] = ACTIONS(790), + [anon_sym_const] = ACTIONS(790), + [anon_sym_continue] = ACTIONS(790), + [anon_sym_default] = ACTIONS(790), + [anon_sym_enum] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(790), + [anon_sym_for] = ACTIONS(790), + [anon_sym_if] = ACTIONS(790), + [anon_sym_impl] = ACTIONS(790), + [anon_sym_let] = ACTIONS(790), + [anon_sym_loop] = ACTIONS(790), + [anon_sym_match] = ACTIONS(790), + [anon_sym_mod] = ACTIONS(790), + [anon_sym_pub] = ACTIONS(790), + [anon_sym_return] = ACTIONS(790), + [anon_sym_static] = ACTIONS(790), + [anon_sym_struct] = ACTIONS(790), + [anon_sym_trait] = ACTIONS(790), + [anon_sym_type] = ACTIONS(790), + [anon_sym_union] = ACTIONS(790), + [anon_sym_unsafe] = ACTIONS(790), + [anon_sym_use] = ACTIONS(790), + [anon_sym_where] = ACTIONS(790), + [anon_sym_while] = ACTIONS(790), + [sym_mutable_specifier] = ACTIONS(790), + [sym_integer_literal] = ACTIONS(792), + [aux_sym_string_literal_token1] = ACTIONS(792), + [sym_char_literal] = ACTIONS(792), + [anon_sym_true] = ACTIONS(790), + [anon_sym_false] = ACTIONS(790), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(790), + [sym_super] = ACTIONS(790), + [sym_crate] = ACTIONS(790), + [sym_metavariable] = ACTIONS(792), + [sym_raw_string_literal] = ACTIONS(792), + [sym_float_literal] = ACTIONS(792), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [120] = { + [sym_identifier] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_EQ_GT] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_COLON] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(794), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_PERCENT] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_PLUS_EQ] = ACTIONS(796), + [anon_sym_DASH_EQ] = ACTIONS(796), + [anon_sym_STAR_EQ] = ACTIONS(796), + [anon_sym_SLASH_EQ] = ACTIONS(796), + [anon_sym_PERCENT_EQ] = ACTIONS(796), + [anon_sym_CARET_EQ] = ACTIONS(796), + [anon_sym_AMP_EQ] = ACTIONS(796), + [anon_sym_PIPE_EQ] = ACTIONS(796), + [anon_sym_LT_LT_EQ] = ACTIONS(796), + [anon_sym_GT_GT_EQ] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_AT] = ACTIONS(796), + [anon_sym__] = ACTIONS(794), + [anon_sym_DOT] = ACTIONS(794), + [anon_sym_DOT_DOT] = ACTIONS(794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_COLON_COLON] = ACTIONS(796), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_POUND] = ACTIONS(796), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_as] = ACTIONS(794), + [anon_sym_async] = ACTIONS(794), + [anon_sym_await] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_const] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_fn] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_impl] = ACTIONS(794), + [anon_sym_let] = ACTIONS(794), + [anon_sym_loop] = ACTIONS(794), + [anon_sym_match] = ACTIONS(794), + [anon_sym_mod] = ACTIONS(794), + [anon_sym_pub] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_static] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_trait] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_union] = ACTIONS(794), + [anon_sym_unsafe] = ACTIONS(794), + [anon_sym_use] = ACTIONS(794), + [anon_sym_where] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [sym_mutable_specifier] = ACTIONS(794), + [sym_integer_literal] = ACTIONS(796), + [aux_sym_string_literal_token1] = ACTIONS(796), + [sym_char_literal] = ACTIONS(796), + [anon_sym_true] = ACTIONS(794), + [anon_sym_false] = ACTIONS(794), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(794), + [sym_super] = ACTIONS(794), + [sym_crate] = ACTIONS(794), + [sym_metavariable] = ACTIONS(796), + [sym_raw_string_literal] = ACTIONS(796), + [sym_float_literal] = ACTIONS(796), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [121] = { + [sym_identifier] = ACTIONS(798), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_EQ_GT] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_RBRACK] = ACTIONS(800), + [anon_sym_COLON] = ACTIONS(798), + [anon_sym_DOLLAR] = ACTIONS(798), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_SLASH] = ACTIONS(798), + [anon_sym_PERCENT] = ACTIONS(798), + [anon_sym_CARET] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(798), + [anon_sym_AMP_AMP] = ACTIONS(800), + [anon_sym_PIPE_PIPE] = ACTIONS(800), + [anon_sym_LT_LT] = ACTIONS(798), + [anon_sym_GT_GT] = ACTIONS(798), + [anon_sym_PLUS_EQ] = ACTIONS(800), + [anon_sym_DASH_EQ] = ACTIONS(800), + [anon_sym_STAR_EQ] = ACTIONS(800), + [anon_sym_SLASH_EQ] = ACTIONS(800), + [anon_sym_PERCENT_EQ] = ACTIONS(800), + [anon_sym_CARET_EQ] = ACTIONS(800), + [anon_sym_AMP_EQ] = ACTIONS(800), + [anon_sym_PIPE_EQ] = ACTIONS(800), + [anon_sym_LT_LT_EQ] = ACTIONS(800), + [anon_sym_GT_GT_EQ] = ACTIONS(800), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_EQ_EQ] = ACTIONS(800), + [anon_sym_BANG_EQ] = ACTIONS(800), + [anon_sym_GT] = ACTIONS(798), + [anon_sym_LT] = ACTIONS(798), + [anon_sym_GT_EQ] = ACTIONS(800), + [anon_sym_LT_EQ] = ACTIONS(800), + [anon_sym_AT] = ACTIONS(800), + [anon_sym__] = ACTIONS(798), + [anon_sym_DOT] = ACTIONS(798), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_COLON_COLON] = ACTIONS(800), + [anon_sym_DASH_GT] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(798), + [anon_sym_as] = ACTIONS(798), + [anon_sym_async] = ACTIONS(798), + [anon_sym_await] = ACTIONS(798), + [anon_sym_break] = ACTIONS(798), + [anon_sym_const] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(798), + [anon_sym_fn] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_impl] = ACTIONS(798), + [anon_sym_let] = ACTIONS(798), + [anon_sym_loop] = ACTIONS(798), + [anon_sym_match] = ACTIONS(798), + [anon_sym_mod] = ACTIONS(798), + [anon_sym_pub] = ACTIONS(798), + [anon_sym_return] = ACTIONS(798), + [anon_sym_static] = ACTIONS(798), + [anon_sym_struct] = ACTIONS(798), + [anon_sym_trait] = ACTIONS(798), + [anon_sym_type] = ACTIONS(798), + [anon_sym_union] = ACTIONS(798), + [anon_sym_unsafe] = ACTIONS(798), + [anon_sym_use] = ACTIONS(798), + [anon_sym_where] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(798), + [sym_integer_literal] = ACTIONS(800), + [aux_sym_string_literal_token1] = ACTIONS(800), + [sym_char_literal] = ACTIONS(800), + [anon_sym_true] = ACTIONS(798), + [anon_sym_false] = ACTIONS(798), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_crate] = ACTIONS(798), + [sym_metavariable] = ACTIONS(800), + [sym_raw_string_literal] = ACTIONS(800), + [sym_float_literal] = ACTIONS(800), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [122] = { + [sym_identifier] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_EQ_GT] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(804), + [anon_sym_COLON] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(802), + [anon_sym_PLUS] = ACTIONS(802), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_QMARK] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(802), + [anon_sym_SLASH] = ACTIONS(802), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_CARET] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(802), + [anon_sym_AMP_AMP] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(804), + [anon_sym_LT_LT] = ACTIONS(802), + [anon_sym_GT_GT] = ACTIONS(802), + [anon_sym_PLUS_EQ] = ACTIONS(804), + [anon_sym_DASH_EQ] = ACTIONS(804), + [anon_sym_STAR_EQ] = ACTIONS(804), + [anon_sym_SLASH_EQ] = ACTIONS(804), + [anon_sym_PERCENT_EQ] = ACTIONS(804), + [anon_sym_CARET_EQ] = ACTIONS(804), + [anon_sym_AMP_EQ] = ACTIONS(804), + [anon_sym_PIPE_EQ] = ACTIONS(804), + [anon_sym_LT_LT_EQ] = ACTIONS(804), + [anon_sym_GT_GT_EQ] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(802), + [anon_sym_EQ_EQ] = ACTIONS(804), + [anon_sym_BANG_EQ] = ACTIONS(804), + [anon_sym_GT] = ACTIONS(802), + [anon_sym_LT] = ACTIONS(802), + [anon_sym_GT_EQ] = ACTIONS(804), + [anon_sym_LT_EQ] = ACTIONS(804), + [anon_sym_AT] = ACTIONS(804), + [anon_sym__] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(802), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(804), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_COLON_COLON] = ACTIONS(804), + [anon_sym_DASH_GT] = ACTIONS(804), + [anon_sym_POUND] = ACTIONS(804), + [anon_sym_u8] = ACTIONS(802), + [anon_sym_i8] = ACTIONS(802), + [anon_sym_u16] = ACTIONS(802), + [anon_sym_i16] = ACTIONS(802), + [anon_sym_u32] = ACTIONS(802), + [anon_sym_i32] = ACTIONS(802), + [anon_sym_u64] = ACTIONS(802), + [anon_sym_i64] = ACTIONS(802), + [anon_sym_u128] = ACTIONS(802), + [anon_sym_i128] = ACTIONS(802), + [anon_sym_isize] = ACTIONS(802), + [anon_sym_usize] = ACTIONS(802), + [anon_sym_f32] = ACTIONS(802), + [anon_sym_f64] = ACTIONS(802), + [anon_sym_bool] = ACTIONS(802), + [anon_sym_str] = ACTIONS(802), + [anon_sym_char] = ACTIONS(802), + [anon_sym_SQUOTE] = ACTIONS(802), + [anon_sym_as] = ACTIONS(802), + [anon_sym_async] = ACTIONS(802), + [anon_sym_await] = ACTIONS(802), + [anon_sym_break] = ACTIONS(802), + [anon_sym_const] = ACTIONS(802), + [anon_sym_continue] = ACTIONS(802), + [anon_sym_default] = ACTIONS(802), + [anon_sym_enum] = ACTIONS(802), + [anon_sym_fn] = ACTIONS(802), + [anon_sym_for] = ACTIONS(802), + [anon_sym_if] = ACTIONS(802), + [anon_sym_impl] = ACTIONS(802), + [anon_sym_let] = ACTIONS(802), + [anon_sym_loop] = ACTIONS(802), + [anon_sym_match] = ACTIONS(802), + [anon_sym_mod] = ACTIONS(802), + [anon_sym_pub] = ACTIONS(802), + [anon_sym_return] = ACTIONS(802), + [anon_sym_static] = ACTIONS(802), + [anon_sym_struct] = ACTIONS(802), + [anon_sym_trait] = ACTIONS(802), + [anon_sym_type] = ACTIONS(802), + [anon_sym_union] = ACTIONS(802), + [anon_sym_unsafe] = ACTIONS(802), + [anon_sym_use] = ACTIONS(802), + [anon_sym_where] = ACTIONS(802), + [anon_sym_while] = ACTIONS(802), + [sym_mutable_specifier] = ACTIONS(802), + [sym_integer_literal] = ACTIONS(804), + [aux_sym_string_literal_token1] = ACTIONS(804), + [sym_char_literal] = ACTIONS(804), + [anon_sym_true] = ACTIONS(802), + [anon_sym_false] = ACTIONS(802), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(802), + [sym_super] = ACTIONS(802), + [sym_crate] = ACTIONS(802), + [sym_metavariable] = ACTIONS(804), + [sym_raw_string_literal] = ACTIONS(804), + [sym_float_literal] = ACTIONS(804), + [sym_block_comment] = ACTIONS(3), + }, + [123] = { + [sym_identifier] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_EQ_GT] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_DOLLAR] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(806), + [anon_sym_GT_GT] = ACTIONS(806), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT_EQ] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(808), + [anon_sym_AT] = ACTIONS(808), + [anon_sym__] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_DASH_GT] = ACTIONS(808), + [anon_sym_POUND] = ACTIONS(808), + [anon_sym_u8] = ACTIONS(806), + [anon_sym_i8] = ACTIONS(806), + [anon_sym_u16] = ACTIONS(806), + [anon_sym_i16] = ACTIONS(806), + [anon_sym_u32] = ACTIONS(806), + [anon_sym_i32] = ACTIONS(806), + [anon_sym_u64] = ACTIONS(806), + [anon_sym_i64] = ACTIONS(806), + [anon_sym_u128] = ACTIONS(806), + [anon_sym_i128] = ACTIONS(806), + [anon_sym_isize] = ACTIONS(806), + [anon_sym_usize] = ACTIONS(806), + [anon_sym_f32] = ACTIONS(806), + [anon_sym_f64] = ACTIONS(806), + [anon_sym_bool] = ACTIONS(806), + [anon_sym_str] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_as] = ACTIONS(806), + [anon_sym_async] = ACTIONS(806), + [anon_sym_await] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_const] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_impl] = ACTIONS(806), + [anon_sym_let] = ACTIONS(806), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(806), + [anon_sym_mod] = ACTIONS(806), + [anon_sym_pub] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_struct] = ACTIONS(806), + [anon_sym_trait] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_union] = ACTIONS(806), + [anon_sym_unsafe] = ACTIONS(806), + [anon_sym_use] = ACTIONS(806), + [anon_sym_where] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [sym_mutable_specifier] = ACTIONS(806), + [sym_integer_literal] = ACTIONS(808), + [aux_sym_string_literal_token1] = ACTIONS(808), + [sym_char_literal] = ACTIONS(808), + [anon_sym_true] = ACTIONS(806), + [anon_sym_false] = ACTIONS(806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_crate] = ACTIONS(806), + [sym_metavariable] = ACTIONS(808), + [sym_raw_string_literal] = ACTIONS(808), + [sym_float_literal] = ACTIONS(808), + [sym_block_comment] = ACTIONS(3), + }, + [124] = { + [sym_identifier] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_EQ_GT] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(812), + [anon_sym_COLON] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_STAR] = ACTIONS(810), + [anon_sym_QMARK] = ACTIONS(812), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_SLASH] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_PLUS_EQ] = ACTIONS(812), + [anon_sym_DASH_EQ] = ACTIONS(812), + [anon_sym_STAR_EQ] = ACTIONS(812), + [anon_sym_SLASH_EQ] = ACTIONS(812), + [anon_sym_PERCENT_EQ] = ACTIONS(812), + [anon_sym_CARET_EQ] = ACTIONS(812), + [anon_sym_AMP_EQ] = ACTIONS(812), + [anon_sym_PIPE_EQ] = ACTIONS(812), + [anon_sym_LT_LT_EQ] = ACTIONS(812), + [anon_sym_GT_GT_EQ] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(810), + [anon_sym_EQ_EQ] = ACTIONS(812), + [anon_sym_BANG_EQ] = ACTIONS(812), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT_EQ] = ACTIONS(812), + [anon_sym_LT_EQ] = ACTIONS(812), + [anon_sym_AT] = ACTIONS(812), + [anon_sym__] = ACTIONS(810), + [anon_sym_DOT] = ACTIONS(810), + [anon_sym_DOT_DOT] = ACTIONS(810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(812), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_COLON_COLON] = ACTIONS(812), + [anon_sym_DASH_GT] = ACTIONS(812), + [anon_sym_POUND] = ACTIONS(812), + [anon_sym_u8] = ACTIONS(810), + [anon_sym_i8] = ACTIONS(810), + [anon_sym_u16] = ACTIONS(810), + [anon_sym_i16] = ACTIONS(810), + [anon_sym_u32] = ACTIONS(810), + [anon_sym_i32] = ACTIONS(810), + [anon_sym_u64] = ACTIONS(810), + [anon_sym_i64] = ACTIONS(810), + [anon_sym_u128] = ACTIONS(810), + [anon_sym_i128] = ACTIONS(810), + [anon_sym_isize] = ACTIONS(810), + [anon_sym_usize] = ACTIONS(810), + [anon_sym_f32] = ACTIONS(810), + [anon_sym_f64] = ACTIONS(810), + [anon_sym_bool] = ACTIONS(810), + [anon_sym_str] = ACTIONS(810), + [anon_sym_char] = ACTIONS(810), + [anon_sym_SQUOTE] = ACTIONS(810), + [anon_sym_as] = ACTIONS(810), + [anon_sym_async] = ACTIONS(810), + [anon_sym_await] = ACTIONS(810), + [anon_sym_break] = ACTIONS(810), + [anon_sym_const] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_enum] = ACTIONS(810), + [anon_sym_fn] = ACTIONS(810), + [anon_sym_for] = ACTIONS(810), + [anon_sym_if] = ACTIONS(810), + [anon_sym_impl] = ACTIONS(810), + [anon_sym_let] = ACTIONS(810), + [anon_sym_loop] = ACTIONS(810), + [anon_sym_match] = ACTIONS(810), + [anon_sym_mod] = ACTIONS(810), + [anon_sym_pub] = ACTIONS(810), + [anon_sym_return] = ACTIONS(810), + [anon_sym_static] = ACTIONS(810), + [anon_sym_struct] = ACTIONS(810), + [anon_sym_trait] = ACTIONS(810), + [anon_sym_type] = ACTIONS(810), + [anon_sym_union] = ACTIONS(810), + [anon_sym_unsafe] = ACTIONS(810), + [anon_sym_use] = ACTIONS(810), + [anon_sym_where] = ACTIONS(810), + [anon_sym_while] = ACTIONS(810), + [sym_mutable_specifier] = ACTIONS(810), + [sym_integer_literal] = ACTIONS(812), + [aux_sym_string_literal_token1] = ACTIONS(812), + [sym_char_literal] = ACTIONS(812), + [anon_sym_true] = ACTIONS(810), + [anon_sym_false] = ACTIONS(810), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(810), + [sym_super] = ACTIONS(810), + [sym_crate] = ACTIONS(810), + [sym_metavariable] = ACTIONS(812), + [sym_raw_string_literal] = ACTIONS(812), + [sym_float_literal] = ACTIONS(812), + [sym_block_comment] = ACTIONS(3), + }, + [125] = { + [sym_identifier] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_EQ_GT] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_RBRACK] = ACTIONS(816), + [anon_sym_COLON] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(814), + [anon_sym_QMARK] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PERCENT] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(814), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_PLUS_EQ] = ACTIONS(816), + [anon_sym_DASH_EQ] = ACTIONS(816), + [anon_sym_STAR_EQ] = ACTIONS(816), + [anon_sym_SLASH_EQ] = ACTIONS(816), + [anon_sym_PERCENT_EQ] = ACTIONS(816), + [anon_sym_CARET_EQ] = ACTIONS(816), + [anon_sym_AMP_EQ] = ACTIONS(816), + [anon_sym_PIPE_EQ] = ACTIONS(816), + [anon_sym_LT_LT_EQ] = ACTIONS(816), + [anon_sym_GT_GT_EQ] = ACTIONS(816), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ_EQ] = ACTIONS(816), + [anon_sym_BANG_EQ] = ACTIONS(816), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT_EQ] = ACTIONS(816), + [anon_sym_LT_EQ] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(816), + [anon_sym__] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(816), + [anon_sym_COLON_COLON] = ACTIONS(816), + [anon_sym_DASH_GT] = ACTIONS(816), + [anon_sym_POUND] = ACTIONS(816), + [anon_sym_u8] = ACTIONS(814), + [anon_sym_i8] = ACTIONS(814), + [anon_sym_u16] = ACTIONS(814), + [anon_sym_i16] = ACTIONS(814), + [anon_sym_u32] = ACTIONS(814), + [anon_sym_i32] = ACTIONS(814), + [anon_sym_u64] = ACTIONS(814), + [anon_sym_i64] = ACTIONS(814), + [anon_sym_u128] = ACTIONS(814), + [anon_sym_i128] = ACTIONS(814), + [anon_sym_isize] = ACTIONS(814), + [anon_sym_usize] = ACTIONS(814), + [anon_sym_f32] = ACTIONS(814), + [anon_sym_f64] = ACTIONS(814), + [anon_sym_bool] = ACTIONS(814), + [anon_sym_str] = ACTIONS(814), + [anon_sym_char] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_as] = ACTIONS(814), + [anon_sym_async] = ACTIONS(814), + [anon_sym_await] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_const] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(814), + [anon_sym_for] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_impl] = ACTIONS(814), + [anon_sym_let] = ACTIONS(814), + [anon_sym_loop] = ACTIONS(814), + [anon_sym_match] = ACTIONS(814), + [anon_sym_mod] = ACTIONS(814), + [anon_sym_pub] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_struct] = ACTIONS(814), + [anon_sym_trait] = ACTIONS(814), + [anon_sym_type] = ACTIONS(814), + [anon_sym_union] = ACTIONS(814), + [anon_sym_unsafe] = ACTIONS(814), + [anon_sym_use] = ACTIONS(814), + [anon_sym_where] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [sym_mutable_specifier] = ACTIONS(814), + [sym_integer_literal] = ACTIONS(816), + [aux_sym_string_literal_token1] = ACTIONS(816), + [sym_char_literal] = ACTIONS(816), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(814), + [sym_super] = ACTIONS(814), + [sym_crate] = ACTIONS(814), + [sym_metavariable] = ACTIONS(816), + [sym_raw_string_literal] = ACTIONS(816), + [sym_float_literal] = ACTIONS(816), + [sym_block_comment] = ACTIONS(3), + }, + [126] = { + [sym_identifier] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_COLON] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_QMARK] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_PERCENT] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_PLUS_EQ] = ACTIONS(820), + [anon_sym_DASH_EQ] = ACTIONS(820), + [anon_sym_STAR_EQ] = ACTIONS(820), + [anon_sym_SLASH_EQ] = ACTIONS(820), + [anon_sym_PERCENT_EQ] = ACTIONS(820), + [anon_sym_CARET_EQ] = ACTIONS(820), + [anon_sym_AMP_EQ] = ACTIONS(820), + [anon_sym_PIPE_EQ] = ACTIONS(820), + [anon_sym_LT_LT_EQ] = ACTIONS(820), + [anon_sym_GT_GT_EQ] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_AT] = ACTIONS(820), + [anon_sym__] = ACTIONS(818), + [anon_sym_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym_DASH_GT] = ACTIONS(820), + [anon_sym_POUND] = ACTIONS(820), + [anon_sym_u8] = ACTIONS(818), + [anon_sym_i8] = ACTIONS(818), + [anon_sym_u16] = ACTIONS(818), + [anon_sym_i16] = ACTIONS(818), + [anon_sym_u32] = ACTIONS(818), + [anon_sym_i32] = ACTIONS(818), + [anon_sym_u64] = ACTIONS(818), + [anon_sym_i64] = ACTIONS(818), + [anon_sym_u128] = ACTIONS(818), + [anon_sym_i128] = ACTIONS(818), + [anon_sym_isize] = ACTIONS(818), + [anon_sym_usize] = ACTIONS(818), + [anon_sym_f32] = ACTIONS(818), + [anon_sym_f64] = ACTIONS(818), + [anon_sym_bool] = ACTIONS(818), + [anon_sym_str] = ACTIONS(818), + [anon_sym_char] = ACTIONS(818), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_as] = ACTIONS(818), + [anon_sym_async] = ACTIONS(818), + [anon_sym_await] = ACTIONS(818), + [anon_sym_break] = ACTIONS(818), + [anon_sym_const] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_enum] = ACTIONS(818), + [anon_sym_fn] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_if] = ACTIONS(818), + [anon_sym_impl] = ACTIONS(818), + [anon_sym_let] = ACTIONS(818), + [anon_sym_loop] = ACTIONS(818), + [anon_sym_match] = ACTIONS(818), + [anon_sym_mod] = ACTIONS(818), + [anon_sym_pub] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_static] = ACTIONS(818), + [anon_sym_struct] = ACTIONS(818), + [anon_sym_trait] = ACTIONS(818), + [anon_sym_type] = ACTIONS(818), + [anon_sym_union] = ACTIONS(818), + [anon_sym_unsafe] = ACTIONS(818), + [anon_sym_use] = ACTIONS(818), + [anon_sym_where] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), + [sym_mutable_specifier] = ACTIONS(818), + [sym_integer_literal] = ACTIONS(820), + [aux_sym_string_literal_token1] = ACTIONS(820), + [sym_char_literal] = ACTIONS(820), + [anon_sym_true] = ACTIONS(818), + [anon_sym_false] = ACTIONS(818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(818), + [sym_super] = ACTIONS(818), + [sym_crate] = ACTIONS(818), + [sym_metavariable] = ACTIONS(820), + [sym_raw_string_literal] = ACTIONS(820), + [sym_float_literal] = ACTIONS(820), + [sym_block_comment] = ACTIONS(3), + }, + [127] = { + [sym_identifier] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_EQ_GT] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(824), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(822), + [anon_sym_QMARK] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_SLASH] = ACTIONS(822), + [anon_sym_PERCENT] = ACTIONS(822), + [anon_sym_CARET] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(822), + [anon_sym_PLUS_EQ] = ACTIONS(824), + [anon_sym_DASH_EQ] = ACTIONS(824), + [anon_sym_STAR_EQ] = ACTIONS(824), + [anon_sym_SLASH_EQ] = ACTIONS(824), + [anon_sym_PERCENT_EQ] = ACTIONS(824), + [anon_sym_CARET_EQ] = ACTIONS(824), + [anon_sym_AMP_EQ] = ACTIONS(824), + [anon_sym_PIPE_EQ] = ACTIONS(824), + [anon_sym_LT_LT_EQ] = ACTIONS(824), + [anon_sym_GT_GT_EQ] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(822), + [anon_sym_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(824), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(824), + [anon_sym__] = ACTIONS(822), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(824), + [anon_sym_DOT_DOT_EQ] = ACTIONS(824), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(824), + [anon_sym_DASH_GT] = ACTIONS(824), + [anon_sym_POUND] = ACTIONS(824), + [anon_sym_u8] = ACTIONS(822), + [anon_sym_i8] = ACTIONS(822), + [anon_sym_u16] = ACTIONS(822), + [anon_sym_i16] = ACTIONS(822), + [anon_sym_u32] = ACTIONS(822), + [anon_sym_i32] = ACTIONS(822), + [anon_sym_u64] = ACTIONS(822), + [anon_sym_i64] = ACTIONS(822), + [anon_sym_u128] = ACTIONS(822), + [anon_sym_i128] = ACTIONS(822), + [anon_sym_isize] = ACTIONS(822), + [anon_sym_usize] = ACTIONS(822), + [anon_sym_f32] = ACTIONS(822), + [anon_sym_f64] = ACTIONS(822), + [anon_sym_bool] = ACTIONS(822), + [anon_sym_str] = ACTIONS(822), + [anon_sym_char] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_as] = ACTIONS(822), + [anon_sym_async] = ACTIONS(822), + [anon_sym_await] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_fn] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_impl] = ACTIONS(822), + [anon_sym_let] = ACTIONS(822), + [anon_sym_loop] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_mod] = ACTIONS(822), + [anon_sym_pub] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_struct] = ACTIONS(822), + [anon_sym_trait] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_union] = ACTIONS(822), + [anon_sym_unsafe] = ACTIONS(822), + [anon_sym_use] = ACTIONS(822), + [anon_sym_where] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [sym_mutable_specifier] = ACTIONS(822), + [sym_integer_literal] = ACTIONS(824), + [aux_sym_string_literal_token1] = ACTIONS(824), + [sym_char_literal] = ACTIONS(824), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(822), + [sym_super] = ACTIONS(822), + [sym_crate] = ACTIONS(822), + [sym_metavariable] = ACTIONS(824), + [sym_raw_string_literal] = ACTIONS(824), + [sym_float_literal] = ACTIONS(824), + [sym_block_comment] = ACTIONS(3), + }, + [128] = { + [sym_identifier] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_EQ_GT] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(828), + [anon_sym_RBRACK] = ACTIONS(828), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_PLUS_EQ] = ACTIONS(828), + [anon_sym_DASH_EQ] = ACTIONS(828), + [anon_sym_STAR_EQ] = ACTIONS(828), + [anon_sym_SLASH_EQ] = ACTIONS(828), + [anon_sym_PERCENT_EQ] = ACTIONS(828), + [anon_sym_CARET_EQ] = ACTIONS(828), + [anon_sym_AMP_EQ] = ACTIONS(828), + [anon_sym_PIPE_EQ] = ACTIONS(828), + [anon_sym_LT_LT_EQ] = ACTIONS(828), + [anon_sym_GT_GT_EQ] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(828), + [anon_sym__] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(828), + [anon_sym_COMMA] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(828), + [anon_sym_DASH_GT] = ACTIONS(828), + [anon_sym_POUND] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(826), + [anon_sym_i8] = ACTIONS(826), + [anon_sym_u16] = ACTIONS(826), + [anon_sym_i16] = ACTIONS(826), + [anon_sym_u32] = ACTIONS(826), + [anon_sym_i32] = ACTIONS(826), + [anon_sym_u64] = ACTIONS(826), + [anon_sym_i64] = ACTIONS(826), + [anon_sym_u128] = ACTIONS(826), + [anon_sym_i128] = ACTIONS(826), + [anon_sym_isize] = ACTIONS(826), + [anon_sym_usize] = ACTIONS(826), + [anon_sym_f32] = ACTIONS(826), + [anon_sym_f64] = ACTIONS(826), + [anon_sym_bool] = ACTIONS(826), + [anon_sym_str] = ACTIONS(826), + [anon_sym_char] = ACTIONS(826), + [anon_sym_SQUOTE] = ACTIONS(826), + [anon_sym_as] = ACTIONS(826), + [anon_sym_async] = ACTIONS(826), + [anon_sym_await] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_default] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_fn] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_impl] = ACTIONS(826), + [anon_sym_let] = ACTIONS(826), + [anon_sym_loop] = ACTIONS(826), + [anon_sym_match] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_pub] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_struct] = ACTIONS(826), + [anon_sym_trait] = ACTIONS(826), + [anon_sym_type] = ACTIONS(826), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsafe] = ACTIONS(826), + [anon_sym_use] = ACTIONS(826), + [anon_sym_where] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [sym_mutable_specifier] = ACTIONS(826), + [sym_integer_literal] = ACTIONS(828), + [aux_sym_string_literal_token1] = ACTIONS(828), + [sym_char_literal] = ACTIONS(828), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(826), + [sym_super] = ACTIONS(826), + [sym_crate] = ACTIONS(826), + [sym_raw_string_literal] = ACTIONS(828), + [sym_float_literal] = ACTIONS(828), + [sym_block_comment] = ACTIONS(3), + }, + [129] = { + [sym_identifier] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_EQ_GT] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_COLON] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_PERCENT] = ACTIONS(794), + [anon_sym_CARET] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_PLUS_EQ] = ACTIONS(796), + [anon_sym_DASH_EQ] = ACTIONS(796), + [anon_sym_STAR_EQ] = ACTIONS(796), + [anon_sym_SLASH_EQ] = ACTIONS(796), + [anon_sym_PERCENT_EQ] = ACTIONS(796), + [anon_sym_CARET_EQ] = ACTIONS(796), + [anon_sym_AMP_EQ] = ACTIONS(796), + [anon_sym_PIPE_EQ] = ACTIONS(796), + [anon_sym_LT_LT_EQ] = ACTIONS(796), + [anon_sym_GT_GT_EQ] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(794), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_AT] = ACTIONS(796), + [anon_sym__] = ACTIONS(794), + [anon_sym_DOT] = ACTIONS(794), + [anon_sym_DOT_DOT] = ACTIONS(794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_COLON_COLON] = ACTIONS(796), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_POUND] = ACTIONS(796), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_as] = ACTIONS(794), + [anon_sym_async] = ACTIONS(794), + [anon_sym_await] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_const] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_fn] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_impl] = ACTIONS(794), + [anon_sym_let] = ACTIONS(794), + [anon_sym_loop] = ACTIONS(794), + [anon_sym_match] = ACTIONS(794), + [anon_sym_mod] = ACTIONS(794), + [anon_sym_pub] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_static] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(794), + [anon_sym_trait] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_union] = ACTIONS(794), + [anon_sym_unsafe] = ACTIONS(794), + [anon_sym_use] = ACTIONS(794), + [anon_sym_where] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [sym_mutable_specifier] = ACTIONS(794), + [sym_integer_literal] = ACTIONS(796), + [aux_sym_string_literal_token1] = ACTIONS(796), + [sym_char_literal] = ACTIONS(796), + [anon_sym_true] = ACTIONS(794), + [anon_sym_false] = ACTIONS(794), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(794), + [sym_super] = ACTIONS(794), + [sym_crate] = ACTIONS(794), + [sym_raw_string_literal] = ACTIONS(796), + [sym_float_literal] = ACTIONS(796), + [sym_block_comment] = ACTIONS(3), + }, + [130] = { + [sym_identifier] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_EQ_GT] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(806), + [anon_sym_DOLLAR] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_SLASH] = ACTIONS(806), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_CARET] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(806), + [anon_sym_GT_GT] = ACTIONS(806), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_EQ_EQ] = ACTIONS(808), + [anon_sym_BANG_EQ] = ACTIONS(808), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT_EQ] = ACTIONS(808), + [anon_sym_LT_EQ] = ACTIONS(808), + [anon_sym_AT] = ACTIONS(808), + [anon_sym__] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_DASH_GT] = ACTIONS(808), + [anon_sym_POUND] = ACTIONS(808), + [anon_sym_u8] = ACTIONS(806), + [anon_sym_i8] = ACTIONS(806), + [anon_sym_u16] = ACTIONS(806), + [anon_sym_i16] = ACTIONS(806), + [anon_sym_u32] = ACTIONS(806), + [anon_sym_i32] = ACTIONS(806), + [anon_sym_u64] = ACTIONS(806), + [anon_sym_i64] = ACTIONS(806), + [anon_sym_u128] = ACTIONS(806), + [anon_sym_i128] = ACTIONS(806), + [anon_sym_isize] = ACTIONS(806), + [anon_sym_usize] = ACTIONS(806), + [anon_sym_f32] = ACTIONS(806), + [anon_sym_f64] = ACTIONS(806), + [anon_sym_bool] = ACTIONS(806), + [anon_sym_str] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_SQUOTE] = ACTIONS(806), + [anon_sym_as] = ACTIONS(806), + [anon_sym_async] = ACTIONS(806), + [anon_sym_await] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_const] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_impl] = ACTIONS(806), + [anon_sym_let] = ACTIONS(806), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(806), + [anon_sym_mod] = ACTIONS(806), + [anon_sym_pub] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_struct] = ACTIONS(806), + [anon_sym_trait] = ACTIONS(806), + [anon_sym_type] = ACTIONS(806), + [anon_sym_union] = ACTIONS(806), + [anon_sym_unsafe] = ACTIONS(806), + [anon_sym_use] = ACTIONS(806), + [anon_sym_where] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [sym_mutable_specifier] = ACTIONS(806), + [sym_integer_literal] = ACTIONS(808), + [aux_sym_string_literal_token1] = ACTIONS(808), + [sym_char_literal] = ACTIONS(808), + [anon_sym_true] = ACTIONS(806), + [anon_sym_false] = ACTIONS(806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_crate] = ACTIONS(806), + [sym_raw_string_literal] = ACTIONS(808), + [sym_float_literal] = ACTIONS(808), + [sym_block_comment] = ACTIONS(3), + }, + [131] = { + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_STAR_EQ] = ACTIONS(760), + [anon_sym_SLASH_EQ] = ACTIONS(760), + [anon_sym_PERCENT_EQ] = ACTIONS(760), + [anon_sym_CARET_EQ] = ACTIONS(760), + [anon_sym_AMP_EQ] = ACTIONS(760), + [anon_sym_PIPE_EQ] = ACTIONS(760), + [anon_sym_LT_LT_EQ] = ACTIONS(760), + [anon_sym_GT_GT_EQ] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym__] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_raw_string_literal] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { + [sym_identifier] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_RBRACK] = ACTIONS(832), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_PLUS_EQ] = ACTIONS(832), + [anon_sym_DASH_EQ] = ACTIONS(832), + [anon_sym_STAR_EQ] = ACTIONS(832), + [anon_sym_SLASH_EQ] = ACTIONS(832), + [anon_sym_PERCENT_EQ] = ACTIONS(832), + [anon_sym_CARET_EQ] = ACTIONS(832), + [anon_sym_AMP_EQ] = ACTIONS(832), + [anon_sym_PIPE_EQ] = ACTIONS(832), + [anon_sym_LT_LT_EQ] = ACTIONS(832), + [anon_sym_GT_GT_EQ] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_BANG_EQ] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT_EQ] = ACTIONS(832), + [anon_sym_LT_EQ] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(832), + [anon_sym__] = ACTIONS(830), + [anon_sym_DOT] = ACTIONS(830), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(832), + [anon_sym_COMMA] = ACTIONS(832), + [anon_sym_COLON_COLON] = ACTIONS(832), + [anon_sym_DASH_GT] = ACTIONS(832), + [anon_sym_POUND] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(830), + [anon_sym_i8] = ACTIONS(830), + [anon_sym_u16] = ACTIONS(830), + [anon_sym_i16] = ACTIONS(830), + [anon_sym_u32] = ACTIONS(830), + [anon_sym_i32] = ACTIONS(830), + [anon_sym_u64] = ACTIONS(830), + [anon_sym_i64] = ACTIONS(830), + [anon_sym_u128] = ACTIONS(830), + [anon_sym_i128] = ACTIONS(830), + [anon_sym_isize] = ACTIONS(830), + [anon_sym_usize] = ACTIONS(830), + [anon_sym_f32] = ACTIONS(830), + [anon_sym_f64] = ACTIONS(830), + [anon_sym_bool] = ACTIONS(830), + [anon_sym_str] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_as] = ACTIONS(830), + [anon_sym_async] = ACTIONS(830), + [anon_sym_await] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_default] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [anon_sym_fn] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_if] = ACTIONS(830), + [anon_sym_impl] = ACTIONS(830), + [anon_sym_let] = ACTIONS(830), + [anon_sym_loop] = ACTIONS(830), + [anon_sym_match] = ACTIONS(830), + [anon_sym_mod] = ACTIONS(830), + [anon_sym_pub] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_struct] = ACTIONS(830), + [anon_sym_trait] = ACTIONS(830), + [anon_sym_type] = ACTIONS(830), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsafe] = ACTIONS(830), + [anon_sym_use] = ACTIONS(830), + [anon_sym_where] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [sym_mutable_specifier] = ACTIONS(830), + [sym_integer_literal] = ACTIONS(832), + [aux_sym_string_literal_token1] = ACTIONS(832), + [sym_char_literal] = ACTIONS(832), + [anon_sym_true] = ACTIONS(830), + [anon_sym_false] = ACTIONS(830), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_raw_string_literal] = ACTIONS(832), + [sym_float_literal] = ACTIONS(832), + [sym_block_comment] = ACTIONS(3), + }, + [133] = { + [sym_identifier] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_EQ_GT] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(766), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PERCENT] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_LT_LT] = ACTIONS(766), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_PLUS_EQ] = ACTIONS(768), + [anon_sym_DASH_EQ] = ACTIONS(768), + [anon_sym_STAR_EQ] = ACTIONS(768), + [anon_sym_SLASH_EQ] = ACTIONS(768), + [anon_sym_PERCENT_EQ] = ACTIONS(768), + [anon_sym_CARET_EQ] = ACTIONS(768), + [anon_sym_AMP_EQ] = ACTIONS(768), + [anon_sym_PIPE_EQ] = ACTIONS(768), + [anon_sym_LT_LT_EQ] = ACTIONS(768), + [anon_sym_GT_GT_EQ] = ACTIONS(768), + [anon_sym_EQ] = ACTIONS(766), + [anon_sym_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym__] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_DOT_DOT] = ACTIONS(766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_COLON_COLON] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(768), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u128] = ACTIONS(766), + [anon_sym_i128] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_str] = ACTIONS(766), + [anon_sym_char] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(766), + [anon_sym_as] = ACTIONS(766), + [anon_sym_async] = ACTIONS(766), + [anon_sym_await] = ACTIONS(766), + [anon_sym_break] = ACTIONS(766), + [anon_sym_const] = ACTIONS(766), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_default] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_fn] = ACTIONS(766), + [anon_sym_for] = ACTIONS(766), + [anon_sym_if] = ACTIONS(766), + [anon_sym_impl] = ACTIONS(766), + [anon_sym_let] = ACTIONS(766), + [anon_sym_loop] = ACTIONS(766), + [anon_sym_match] = ACTIONS(766), + [anon_sym_mod] = ACTIONS(766), + [anon_sym_pub] = ACTIONS(766), + [anon_sym_return] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_trait] = ACTIONS(766), + [anon_sym_type] = ACTIONS(766), + [anon_sym_union] = ACTIONS(766), + [anon_sym_unsafe] = ACTIONS(766), + [anon_sym_use] = ACTIONS(766), + [anon_sym_where] = ACTIONS(766), + [anon_sym_while] = ACTIONS(766), + [sym_mutable_specifier] = ACTIONS(766), + [sym_integer_literal] = ACTIONS(768), + [aux_sym_string_literal_token1] = ACTIONS(768), + [sym_char_literal] = ACTIONS(768), + [anon_sym_true] = ACTIONS(766), + [anon_sym_false] = ACTIONS(766), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(766), + [sym_crate] = ACTIONS(766), + [sym_raw_string_literal] = ACTIONS(768), + [sym_float_literal] = ACTIONS(768), + [sym_block_comment] = ACTIONS(3), + }, + [134] = { + [sym_identifier] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_RPAREN] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_EQ_GT] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(788), + [anon_sym_RBRACK] = ACTIONS(788), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(786), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_PLUS_EQ] = ACTIONS(788), + [anon_sym_DASH_EQ] = ACTIONS(788), + [anon_sym_STAR_EQ] = ACTIONS(788), + [anon_sym_SLASH_EQ] = ACTIONS(788), + [anon_sym_PERCENT_EQ] = ACTIONS(788), + [anon_sym_CARET_EQ] = ACTIONS(788), + [anon_sym_AMP_EQ] = ACTIONS(788), + [anon_sym_PIPE_EQ] = ACTIONS(788), + [anon_sym_LT_LT_EQ] = ACTIONS(788), + [anon_sym_GT_GT_EQ] = ACTIONS(788), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_EQ_EQ] = ACTIONS(788), + [anon_sym_BANG_EQ] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_GT_EQ] = ACTIONS(788), + [anon_sym_LT_EQ] = ACTIONS(788), + [anon_sym_AT] = ACTIONS(788), + [anon_sym__] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(788), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_COLON_COLON] = ACTIONS(788), + [anon_sym_DASH_GT] = ACTIONS(788), + [anon_sym_POUND] = ACTIONS(788), + [anon_sym_u8] = ACTIONS(786), + [anon_sym_i8] = ACTIONS(786), + [anon_sym_u16] = ACTIONS(786), + [anon_sym_i16] = ACTIONS(786), + [anon_sym_u32] = ACTIONS(786), + [anon_sym_i32] = ACTIONS(786), + [anon_sym_u64] = ACTIONS(786), + [anon_sym_i64] = ACTIONS(786), + [anon_sym_u128] = ACTIONS(786), + [anon_sym_i128] = ACTIONS(786), + [anon_sym_isize] = ACTIONS(786), + [anon_sym_usize] = ACTIONS(786), + [anon_sym_f32] = ACTIONS(786), + [anon_sym_f64] = ACTIONS(786), + [anon_sym_bool] = ACTIONS(786), + [anon_sym_str] = ACTIONS(786), + [anon_sym_char] = ACTIONS(786), + [anon_sym_SQUOTE] = ACTIONS(786), + [anon_sym_as] = ACTIONS(786), + [anon_sym_async] = ACTIONS(786), + [anon_sym_await] = ACTIONS(786), + [anon_sym_break] = ACTIONS(786), + [anon_sym_const] = ACTIONS(786), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_enum] = ACTIONS(786), + [anon_sym_fn] = ACTIONS(786), + [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(786), + [anon_sym_impl] = ACTIONS(786), + [anon_sym_let] = ACTIONS(786), + [anon_sym_loop] = ACTIONS(786), + [anon_sym_match] = ACTIONS(786), + [anon_sym_mod] = ACTIONS(786), + [anon_sym_pub] = ACTIONS(786), + [anon_sym_return] = ACTIONS(786), + [anon_sym_static] = ACTIONS(786), + [anon_sym_struct] = ACTIONS(786), + [anon_sym_trait] = ACTIONS(786), + [anon_sym_type] = ACTIONS(786), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(786), + [anon_sym_use] = ACTIONS(786), + [anon_sym_where] = ACTIONS(786), + [anon_sym_while] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(786), + [sym_integer_literal] = ACTIONS(788), + [aux_sym_string_literal_token1] = ACTIONS(788), + [sym_char_literal] = ACTIONS(788), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(786), + [sym_super] = ACTIONS(786), + [sym_crate] = ACTIONS(786), + [sym_raw_string_literal] = ACTIONS(788), + [sym_float_literal] = ACTIONS(788), + [sym_block_comment] = ACTIONS(3), + }, + [135] = { + [sym_attribute_item] = STATE(137), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1337), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [136] = { + [sym_attribute_item] = STATE(152), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1389), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [137] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1332), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(844), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(846), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [138] = { + [sym_attribute_item] = STATE(154), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1392), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [139] = { + [sym_attribute_item] = STATE(140), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1342), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(854), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1978), - [sym_variadic_parameter] = STATE(1978), - [sym_parameter] = STATE(1978), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1688), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(680), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(688), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(702), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(722), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [140] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1359), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(858), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [141] = { + [sym_attribute_item] = STATE(151), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [142] = { + [sym_attribute_item] = STATE(151), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(228), - [sym_if_let_expression] = STATE(228), - [sym_match_expression] = STATE(228), - [sym_while_expression] = STATE(228), - [sym_while_let_expression] = STATE(228), - [sym_loop_expression] = STATE(228), - [sym_for_expression] = STATE(228), - [sym_const_block] = STATE(228), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(228), - [sym_async_block] = STATE(228), - [sym_block] = STATE(228), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [143] = { + [sym_attribute_item] = STATE(151), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(648), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(656), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_while] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [144] = { + [sym_attribute_item] = STATE(151), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1183), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [145] = { + [sym_attribute_item] = STATE(151), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [146] = { + [sym_attribute_item] = STATE(151), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1131), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [147] = { + [sym_attribute_item] = STATE(149), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1466), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [148] = { + [sym_attribute_item] = STATE(153), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1429), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [149] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [150] = { + [sym_attribute_item] = STATE(151), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [151] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [152] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1379), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [153] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1610), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1033), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [154] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1391), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [155] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1422), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [156] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1515), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [157] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1465), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [158] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1465), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_COLON_COLON] = ACTIONS(911), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(917), + [anon_sym_async] = ACTIONS(920), + [anon_sym_break] = ACTIONS(923), + [anon_sym_const] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_default] = ACTIONS(932), + [anon_sym_for] = ACTIONS(935), + [anon_sym_if] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_match] = ACTIONS(944), + [anon_sym_return] = ACTIONS(947), + [anon_sym_union] = ACTIONS(932), + [anon_sym_unsafe] = ACTIONS(950), + [anon_sym_while] = ACTIONS(953), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_move] = ACTIONS(959), + [sym_integer_literal] = ACTIONS(962), + [aux_sym_string_literal_token1] = ACTIONS(965), + [sym_char_literal] = ACTIONS(962), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(971), + [sym_super] = ACTIONS(974), + [sym_crate] = ACTIONS(974), + [sym_metavariable] = ACTIONS(977), + [sym_raw_string_literal] = ACTIONS(962), + [sym_float_literal] = ACTIONS(962), + [sym_block_comment] = ACTIONS(3), + }, + [160] = { + [sym_else_clause] = STATE(294), + [ts_builtin_sym_end] = ACTIONS(980), + [sym_identifier] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_macro_rules_BANG] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(982), + [anon_sym_PERCENT] = ACTIONS(982), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT_LT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PERCENT_EQ] = ACTIONS(980), + [anon_sym_CARET_EQ] = ACTIONS(980), + [anon_sym_AMP_EQ] = ACTIONS(980), + [anon_sym_PIPE_EQ] = ACTIONS(980), + [anon_sym_LT_LT_EQ] = ACTIONS(980), + [anon_sym_GT_GT_EQ] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_COLON_COLON] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_u8] = ACTIONS(982), + [anon_sym_i8] = ACTIONS(982), + [anon_sym_u16] = ACTIONS(982), + [anon_sym_i16] = ACTIONS(982), + [anon_sym_u32] = ACTIONS(982), + [anon_sym_i32] = ACTIONS(982), + [anon_sym_u64] = ACTIONS(982), + [anon_sym_i64] = ACTIONS(982), + [anon_sym_u128] = ACTIONS(982), + [anon_sym_i128] = ACTIONS(982), + [anon_sym_isize] = ACTIONS(982), + [anon_sym_usize] = ACTIONS(982), + [anon_sym_f32] = ACTIONS(982), + [anon_sym_f64] = ACTIONS(982), + [anon_sym_bool] = ACTIONS(982), + [anon_sym_str] = ACTIONS(982), + [anon_sym_char] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_async] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_enum] = ACTIONS(982), + [anon_sym_fn] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_impl] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_mod] = ACTIONS(982), + [anon_sym_pub] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_static] = ACTIONS(982), + [anon_sym_struct] = ACTIONS(982), + [anon_sym_trait] = ACTIONS(982), + [anon_sym_type] = ACTIONS(982), + [anon_sym_union] = ACTIONS(982), + [anon_sym_unsafe] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_yield] = ACTIONS(982), + [anon_sym_else] = ACTIONS(984), + [anon_sym_move] = ACTIONS(982), + [sym_integer_literal] = ACTIONS(980), + [aux_sym_string_literal_token1] = ACTIONS(980), + [sym_char_literal] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(982), + [sym_super] = ACTIONS(982), + [sym_crate] = ACTIONS(982), + [sym_metavariable] = ACTIONS(980), + [sym_raw_string_literal] = ACTIONS(980), + [sym_float_literal] = ACTIONS(980), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [sym_else_clause] = STATE(275), + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_macro_rules_BANG] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PERCENT_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_POUND] = 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_str] = ACTIONS(988), + [anon_sym_char] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_async] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_default] = 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_loop] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(988), + [anon_sym_pub] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_static] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_trait] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_unsafe] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_yield] = ACTIONS(988), + [anon_sym_else] = ACTIONS(984), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(988), + [sym_super] = ACTIONS(988), + [sym_crate] = ACTIONS(988), + [sym_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(986), + [sym_float_literal] = ACTIONS(986), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1481), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1417), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1552), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [165] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1552), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [aux_sym_tuple_expression_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [166] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1437), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [167] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_DASH_GT] = ACTIONS(1006), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [168] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1838), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(910), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(88), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(275), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1413), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1008), [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = 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_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [169] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1471), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [sym_mutable_specifier] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [170] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [sym_mutable_specifier] = ACTIONS(1014), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [171] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1413), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [172] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [173] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1459), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [174] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1448), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [175] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1413), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [176] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1433), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [177] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1994), - [sym_variadic_parameter] = STATE(1994), - [sym_parameter] = STATE(1994), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1764), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1503), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [sym_mutable_specifier] = ACTIONS(1034), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, [178] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(761), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_DASH_GT] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, [179] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_DASH_GT] = ACTIONS(1038), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym_bracketed_type] = STATE(2370), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1887), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(1167), - [sym_scoped_type_identifier_in_expression_position] = STATE(2165), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_const_block] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2419), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(811), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(965), - [sym_boolean_literal] = STATE(965), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(337), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(339), - [anon_sym_union] = ACTIONS(337), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(343), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(345), - [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(347), - [sym_super] = ACTIONS(349), - [sym_crate] = ACTIONS(349), - [sym_metavariable] = ACTIONS(351), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_DASH_GT] = ACTIONS(1006), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [181] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1490), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [182] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1474), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [184] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_macro_rules_BANG] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PERCENT_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_COLON_COLON] = ACTIONS(1046), + [anon_sym_POUND] = 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_str] = ACTIONS(1048), + [anon_sym_char] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_async] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_default] = 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_loop] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_mod] = ACTIONS(1048), + [anon_sym_pub] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_trait] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_unsafe] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_else] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1048), + [sym_super] = ACTIONS(1048), + [sym_crate] = ACTIONS(1048), + [sym_metavariable] = ACTIONS(1046), + [sym_raw_string_literal] = ACTIONS(1046), + [sym_float_literal] = ACTIONS(1046), [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1413), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1413), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_attribute_item] = STATE(190), - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2086), - [sym_variadic_parameter] = STATE(2086), - [sym_parameter] = STATE(2086), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1444), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(1857), - [sym_variadic_parameter] = STATE(1857), - [sym_parameter] = STATE(1857), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1697), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(782), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_macro_rules_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), + [anon_sym_COLON_COLON] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(1056), + [anon_sym_u8] = ACTIONS(1058), + [anon_sym_i8] = ACTIONS(1058), + [anon_sym_u16] = ACTIONS(1058), + [anon_sym_i16] = ACTIONS(1058), + [anon_sym_u32] = ACTIONS(1058), + [anon_sym_i32] = ACTIONS(1058), + [anon_sym_u64] = ACTIONS(1058), + [anon_sym_i64] = ACTIONS(1058), + [anon_sym_u128] = ACTIONS(1058), + [anon_sym_i128] = ACTIONS(1058), + [anon_sym_isize] = ACTIONS(1058), + [anon_sym_usize] = ACTIONS(1058), + [anon_sym_f32] = ACTIONS(1058), + [anon_sym_f64] = ACTIONS(1058), + [anon_sym_bool] = ACTIONS(1058), + [anon_sym_str] = ACTIONS(1058), + [anon_sym_char] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_fn] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_impl] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_mod] = ACTIONS(1058), + [anon_sym_pub] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1058), + [anon_sym_trait] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1058), + [anon_sym_unsafe] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_yield] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_move] = ACTIONS(1058), + [sym_integer_literal] = ACTIONS(1056), + [aux_sym_string_literal_token1] = ACTIONS(1056), + [sym_char_literal] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1058), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1056), + [sym_raw_string_literal] = ACTIONS(1056), + [sym_float_literal] = ACTIONS(1056), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2020), - [sym_variadic_parameter] = STATE(2020), - [sym_parameter] = STATE(2020), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1740), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(784), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_function_modifiers] = STATE(2308), - [sym_self_parameter] = STATE(2218), - [sym_variadic_parameter] = STATE(2218), - [sym_parameter] = STATE(2218), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1922), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(736), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(738), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(786), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(706), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(710), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(748), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1413), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1750), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_DASH_GT] = ACTIONS(1064), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1750), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_macro_rules_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1068), + [anon_sym_GT_GT] = ACTIONS(1068), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(1066), + [anon_sym_POUND] = 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_str] = ACTIONS(1068), + [anon_sym_char] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_default] = 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_loop] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_pub] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_trait] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_unsafe] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_yield] = ACTIONS(1068), + [anon_sym_else] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1068), + [sym_super] = ACTIONS(1068), + [sym_crate] = ACTIONS(1068), + [sym_metavariable] = ACTIONS(1066), + [sym_raw_string_literal] = ACTIONS(1066), + [sym_float_literal] = ACTIONS(1066), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1823), - [sym_bracketed_type] = STATE(2413), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2414), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1475), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(824), - [sym_crate] = ACTIONS(824), - [sym_metavariable] = ACTIONS(826), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1575), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1750), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1452), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_let] = ACTIONS(1072), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(548), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_DASH_GT] = ACTIONS(1064), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_identifier] = ACTIONS(836), - [anon_sym_SEMI] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_RBRACE] = ACTIONS(838), - [anon_sym_EQ_GT] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_RBRACK] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_QMARK] = ACTIONS(838), - [anon_sym_u8] = ACTIONS(836), - [anon_sym_i8] = ACTIONS(836), - [anon_sym_u16] = ACTIONS(836), - [anon_sym_i16] = ACTIONS(836), - [anon_sym_u32] = ACTIONS(836), - [anon_sym_i32] = ACTIONS(836), - [anon_sym_u64] = ACTIONS(836), - [anon_sym_i64] = ACTIONS(836), - [anon_sym_u128] = ACTIONS(836), - [anon_sym_i128] = ACTIONS(836), - [anon_sym_isize] = ACTIONS(836), - [anon_sym_usize] = ACTIONS(836), - [anon_sym_f32] = ACTIONS(836), - [anon_sym_f64] = ACTIONS(836), - [anon_sym_bool] = ACTIONS(836), - [anon_sym_str] = ACTIONS(836), - [anon_sym_char] = ACTIONS(836), - [anon_sym_SQUOTE] = ACTIONS(836), - [anon_sym_as] = ACTIONS(836), - [anon_sym_async] = ACTIONS(836), - [anon_sym_break] = ACTIONS(836), - [anon_sym_const] = ACTIONS(836), - [anon_sym_continue] = ACTIONS(836), - [anon_sym_default] = ACTIONS(836), - [anon_sym_for] = ACTIONS(836), - [anon_sym_if] = ACTIONS(836), - [anon_sym_loop] = ACTIONS(836), - [anon_sym_match] = ACTIONS(836), - [anon_sym_return] = ACTIONS(836), - [anon_sym_union] = ACTIONS(836), - [anon_sym_unsafe] = ACTIONS(836), - [anon_sym_while] = ACTIONS(836), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_COLON_COLON] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(838), - [anon_sym_DOT_DOT] = ACTIONS(836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(838), - [anon_sym_DASH] = ACTIONS(836), - [anon_sym_AMP_AMP] = ACTIONS(838), - [anon_sym_PIPE_PIPE] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_EQ_EQ] = ACTIONS(838), - [anon_sym_BANG_EQ] = ACTIONS(838), - [anon_sym_LT_EQ] = ACTIONS(838), - [anon_sym_GT_EQ] = ACTIONS(838), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_PLUS_EQ] = ACTIONS(838), - [anon_sym_DASH_EQ] = ACTIONS(838), - [anon_sym_STAR_EQ] = ACTIONS(838), - [anon_sym_SLASH_EQ] = ACTIONS(838), - [anon_sym_PERCENT_EQ] = ACTIONS(838), - [anon_sym_AMP_EQ] = ACTIONS(838), - [anon_sym_PIPE_EQ] = ACTIONS(838), - [anon_sym_CARET_EQ] = ACTIONS(838), - [anon_sym_LT_LT_EQ] = ACTIONS(838), - [anon_sym_GT_GT_EQ] = ACTIONS(838), - [anon_sym_move] = ACTIONS(836), - [anon_sym_DOT] = ACTIONS(836), - [sym_integer_literal] = ACTIONS(838), - [aux_sym_string_literal_token1] = ACTIONS(838), - [sym_char_literal] = ACTIONS(838), - [anon_sym_true] = ACTIONS(836), - [anon_sym_false] = ACTIONS(836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(836), - [sym_super] = ACTIONS(836), - [sym_crate] = ACTIONS(836), - [sym_metavariable] = ACTIONS(838), - [sym_raw_string_literal] = ACTIONS(838), - [sym_float_literal] = ACTIONS(838), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1625), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(548), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(842), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(848), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1505), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(568), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(842), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(750), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1501), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(852), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1411), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(842), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(750), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(832), + [sym_identifier] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_macro_rules_BANG] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(830), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_PLUS_EQ] = ACTIONS(832), + [anon_sym_DASH_EQ] = ACTIONS(832), + [anon_sym_STAR_EQ] = ACTIONS(832), + [anon_sym_SLASH_EQ] = ACTIONS(832), + [anon_sym_PERCENT_EQ] = ACTIONS(832), + [anon_sym_CARET_EQ] = ACTIONS(832), + [anon_sym_AMP_EQ] = ACTIONS(832), + [anon_sym_PIPE_EQ] = ACTIONS(832), + [anon_sym_LT_LT_EQ] = ACTIONS(832), + [anon_sym_GT_GT_EQ] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_BANG_EQ] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_GT_EQ] = ACTIONS(832), + [anon_sym_LT_EQ] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(830), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(832), + [anon_sym_COLON_COLON] = ACTIONS(832), + [anon_sym_POUND] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(830), + [anon_sym_i8] = ACTIONS(830), + [anon_sym_u16] = ACTIONS(830), + [anon_sym_i16] = ACTIONS(830), + [anon_sym_u32] = ACTIONS(830), + [anon_sym_i32] = ACTIONS(830), + [anon_sym_u64] = ACTIONS(830), + [anon_sym_i64] = ACTIONS(830), + [anon_sym_u128] = ACTIONS(830), + [anon_sym_i128] = ACTIONS(830), + [anon_sym_isize] = ACTIONS(830), + [anon_sym_usize] = ACTIONS(830), + [anon_sym_f32] = ACTIONS(830), + [anon_sym_f64] = ACTIONS(830), + [anon_sym_bool] = ACTIONS(830), + [anon_sym_str] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_as] = ACTIONS(830), + [anon_sym_async] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_default] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [anon_sym_fn] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_if] = ACTIONS(830), + [anon_sym_impl] = ACTIONS(830), + [anon_sym_let] = ACTIONS(830), + [anon_sym_loop] = ACTIONS(830), + [anon_sym_match] = ACTIONS(830), + [anon_sym_mod] = ACTIONS(830), + [anon_sym_pub] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_struct] = ACTIONS(830), + [anon_sym_trait] = ACTIONS(830), + [anon_sym_type] = ACTIONS(830), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsafe] = ACTIONS(830), + [anon_sym_use] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [anon_sym_extern] = ACTIONS(830), + [anon_sym_yield] = ACTIONS(830), + [anon_sym_move] = ACTIONS(830), + [sym_integer_literal] = ACTIONS(832), + [aux_sym_string_literal_token1] = ACTIONS(832), + [sym_char_literal] = ACTIONS(832), + [anon_sym_true] = ACTIONS(830), + [anon_sym_false] = ACTIONS(830), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), + [sym_raw_string_literal] = ACTIONS(832), + [sym_float_literal] = ACTIONS(832), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2413), - [sym_lifetime] = STATE(568), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2414), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1475), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(824), - [sym_crate] = ACTIONS(824), - [sym_metavariable] = ACTIONS(826), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2407), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2408), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1532), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(734), - [anon_sym_i8] = ACTIONS(734), - [anon_sym_u16] = ACTIONS(734), - [anon_sym_i16] = ACTIONS(734), - [anon_sym_u32] = ACTIONS(734), - [anon_sym_i32] = ACTIONS(734), - [anon_sym_u64] = ACTIONS(734), - [anon_sym_i64] = ACTIONS(734), - [anon_sym_u128] = ACTIONS(734), - [anon_sym_i128] = ACTIONS(734), - [anon_sym_isize] = ACTIONS(734), - [anon_sym_usize] = ACTIONS(734), - [anon_sym_f32] = ACTIONS(734), - [anon_sym_f64] = ACTIONS(734), - [anon_sym_bool] = ACTIONS(734), - [anon_sym_str] = ACTIONS(734), - [anon_sym_char] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(840), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(842), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(742), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(856), - [sym_super] = ACTIONS(750), - [sym_crate] = ACTIONS(750), - [sym_metavariable] = ACTIONS(752), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_macro_rules_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT_LT] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_PLUS_EQ] = ACTIONS(1074), + [anon_sym_DASH_EQ] = ACTIONS(1074), + [anon_sym_STAR_EQ] = ACTIONS(1074), + [anon_sym_SLASH_EQ] = ACTIONS(1074), + [anon_sym_PERCENT_EQ] = ACTIONS(1074), + [anon_sym_CARET_EQ] = ACTIONS(1074), + [anon_sym_AMP_EQ] = ACTIONS(1074), + [anon_sym_PIPE_EQ] = ACTIONS(1074), + [anon_sym_LT_LT_EQ] = ACTIONS(1074), + [anon_sym_GT_GT_EQ] = ACTIONS(1074), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1074), + [anon_sym_LT_EQ] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(1074), + [anon_sym_POUND] = 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_str] = ACTIONS(1076), + [anon_sym_char] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_default] = 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_loop] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_pub] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_trait] = ACTIONS(1076), + [anon_sym_type] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_unsafe] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1074), + [sym_raw_string_literal] = ACTIONS(1074), + [sym_float_literal] = ACTIONS(1074), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2413), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2414), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1475), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(814), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(816), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(824), - [sym_crate] = ACTIONS(824), - [sym_metavariable] = ACTIONS(826), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1569), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2410), - [sym_lifetime] = STATE(568), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2411), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(1446), - [sym_scoped_type_identifier] = STATE(1418), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(672), - [anon_sym_i8] = ACTIONS(672), - [anon_sym_u16] = ACTIONS(672), - [anon_sym_i16] = ACTIONS(672), - [anon_sym_u32] = ACTIONS(672), - [anon_sym_i32] = ACTIONS(672), - [anon_sym_u64] = ACTIONS(672), - [anon_sym_i64] = ACTIONS(672), - [anon_sym_u128] = ACTIONS(672), - [anon_sym_i128] = ACTIONS(672), - [anon_sym_isize] = ACTIONS(672), - [anon_sym_usize] = ACTIONS(672), - [anon_sym_f32] = ACTIONS(672), - [anon_sym_f64] = ACTIONS(672), - [anon_sym_bool] = ACTIONS(672), - [anon_sym_str] = ACTIONS(672), - [anon_sym_char] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(830), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(790), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(700), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(724), - [sym_super] = ACTIONS(724), - [sym_crate] = ACTIONS(724), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_macro_rules_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1078), + [anon_sym_POUND] = 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_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_as] = ACTIONS(1080), + [anon_sym_async] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_default] = 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_loop] = ACTIONS(1080), + [anon_sym_match] = ACTIONS(1080), + [anon_sym_mod] = ACTIONS(1080), + [anon_sym_pub] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_trait] = ACTIONS(1080), + [anon_sym_type] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_unsafe] = ACTIONS(1080), + [anon_sym_use] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [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_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1080), + [sym_super] = ACTIONS(1080), + [sym_crate] = ACTIONS(1080), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1078), + [sym_float_literal] = ACTIONS(1078), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1393), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_u8] = ACTIONS(860), - [anon_sym_i8] = ACTIONS(860), - [anon_sym_u16] = ACTIONS(860), - [anon_sym_i16] = ACTIONS(860), - [anon_sym_u32] = ACTIONS(860), - [anon_sym_i32] = ACTIONS(860), - [anon_sym_u64] = ACTIONS(860), - [anon_sym_i64] = ACTIONS(860), - [anon_sym_u128] = ACTIONS(860), - [anon_sym_i128] = ACTIONS(860), - [anon_sym_isize] = ACTIONS(860), - [anon_sym_usize] = ACTIONS(860), - [anon_sym_f32] = ACTIONS(860), - [anon_sym_f64] = ACTIONS(860), - [anon_sym_bool] = ACTIONS(860), - [anon_sym_str] = ACTIONS(860), - [anon_sym_char] = ACTIONS(860), - [anon_sym_SQUOTE] = ACTIONS(860), - [anon_sym_async] = ACTIONS(860), - [anon_sym_break] = ACTIONS(860), - [anon_sym_const] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_default] = ACTIONS(860), - [anon_sym_for] = ACTIONS(860), - [anon_sym_if] = ACTIONS(860), - [anon_sym_loop] = ACTIONS(860), - [anon_sym_match] = ACTIONS(860), - [anon_sym_return] = ACTIONS(860), - [anon_sym_union] = ACTIONS(860), - [anon_sym_unsafe] = ACTIONS(860), - [anon_sym_while] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_DASH_GT] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_COLON_COLON] = ACTIONS(862), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(862), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_move] = ACTIONS(860), - [sym_integer_literal] = ACTIONS(862), - [aux_sym_string_literal_token1] = ACTIONS(862), - [sym_char_literal] = ACTIONS(862), - [anon_sym_true] = ACTIONS(860), - [anon_sym_false] = ACTIONS(860), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(860), - [sym_super] = ACTIONS(860), - [sym_crate] = ACTIONS(860), - [sym_metavariable] = ACTIONS(862), - [sym_raw_string_literal] = ACTIONS(862), - [sym_float_literal] = ACTIONS(862), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1507), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_else_clause] = STATE(227), - [sym_identifier] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(385), - [anon_sym_i8] = ACTIONS(385), - [anon_sym_u16] = ACTIONS(385), - [anon_sym_i16] = ACTIONS(385), - [anon_sym_u32] = ACTIONS(385), - [anon_sym_i32] = ACTIONS(385), - [anon_sym_u64] = ACTIONS(385), - [anon_sym_i64] = ACTIONS(385), - [anon_sym_u128] = ACTIONS(385), - [anon_sym_i128] = ACTIONS(385), - [anon_sym_isize] = ACTIONS(385), - [anon_sym_usize] = ACTIONS(385), - [anon_sym_f32] = ACTIONS(385), - [anon_sym_f64] = ACTIONS(385), - [anon_sym_bool] = ACTIONS(385), - [anon_sym_str] = ACTIONS(385), - [anon_sym_char] = ACTIONS(385), - [anon_sym_as] = ACTIONS(385), - [anon_sym_const] = ACTIONS(385), - [anon_sym_default] = ACTIONS(385), - [anon_sym_union] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(383), - [anon_sym_ref] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(383), - [anon_sym__] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [sym_mutable_specifier] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_else] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(385), - [sym_integer_literal] = ACTIONS(383), - [aux_sym_string_literal_token1] = ACTIONS(383), - [sym_char_literal] = ACTIONS(383), - [anon_sym_true] = ACTIONS(385), - [anon_sym_false] = ACTIONS(385), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(385), - [sym_super] = ACTIONS(385), - [sym_crate] = ACTIONS(385), - [sym_metavariable] = ACTIONS(383), - [sym_raw_string_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(383), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1621), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_else_clause] = STATE(225), - [sym_identifier] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(377), - [anon_sym_i8] = ACTIONS(377), - [anon_sym_u16] = ACTIONS(377), - [anon_sym_i16] = ACTIONS(377), - [anon_sym_u32] = ACTIONS(377), - [anon_sym_i32] = ACTIONS(377), - [anon_sym_u64] = ACTIONS(377), - [anon_sym_i64] = ACTIONS(377), - [anon_sym_u128] = ACTIONS(377), - [anon_sym_i128] = ACTIONS(377), - [anon_sym_isize] = ACTIONS(377), - [anon_sym_usize] = ACTIONS(377), - [anon_sym_f32] = ACTIONS(377), - [anon_sym_f64] = ACTIONS(377), - [anon_sym_bool] = ACTIONS(377), - [anon_sym_str] = ACTIONS(377), - [anon_sym_char] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), - [anon_sym_const] = ACTIONS(377), - [anon_sym_default] = ACTIONS(377), - [anon_sym_union] = ACTIONS(377), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_COMMA] = ACTIONS(375), - [anon_sym_ref] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(375), - [anon_sym__] = ACTIONS(377), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [sym_mutable_specifier] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_else] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(377), - [sym_integer_literal] = ACTIONS(375), - [aux_sym_string_literal_token1] = ACTIONS(375), - [sym_char_literal] = ACTIONS(375), - [anon_sym_true] = ACTIONS(377), - [anon_sym_false] = ACTIONS(377), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(377), - [sym_super] = ACTIONS(377), - [sym_crate] = ACTIONS(377), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(375), - [sym_float_literal] = ACTIONS(375), + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_identifier] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(391), - [anon_sym_i8] = ACTIONS(391), - [anon_sym_u16] = ACTIONS(391), - [anon_sym_i16] = ACTIONS(391), - [anon_sym_u32] = ACTIONS(391), - [anon_sym_i32] = ACTIONS(391), - [anon_sym_u64] = ACTIONS(391), - [anon_sym_i64] = ACTIONS(391), - [anon_sym_u128] = ACTIONS(391), - [anon_sym_i128] = ACTIONS(391), - [anon_sym_isize] = ACTIONS(391), - [anon_sym_usize] = ACTIONS(391), - [anon_sym_f32] = ACTIONS(391), - [anon_sym_f64] = ACTIONS(391), - [anon_sym_bool] = ACTIONS(391), - [anon_sym_str] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_as] = ACTIONS(391), - [anon_sym_const] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_union] = ACTIONS(391), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_ref] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym__] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [sym_mutable_specifier] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_else] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(391), - [sym_integer_literal] = ACTIONS(389), - [aux_sym_string_literal_token1] = ACTIONS(389), - [sym_char_literal] = ACTIONS(389), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(391), - [sym_super] = ACTIONS(391), - [sym_crate] = ACTIONS(391), - [sym_metavariable] = ACTIONS(389), - [sym_raw_string_literal] = ACTIONS(389), - [sym_float_literal] = ACTIONS(389), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_macro_rules_BANG] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1084), + [anon_sym_DASH_EQ] = ACTIONS(1084), + [anon_sym_STAR_EQ] = ACTIONS(1084), + [anon_sym_SLASH_EQ] = ACTIONS(1084), + [anon_sym_PERCENT_EQ] = ACTIONS(1084), + [anon_sym_CARET_EQ] = ACTIONS(1084), + [anon_sym_AMP_EQ] = ACTIONS(1084), + [anon_sym_PIPE_EQ] = ACTIONS(1084), + [anon_sym_LT_LT_EQ] = ACTIONS(1084), + [anon_sym_GT_GT_EQ] = ACTIONS(1084), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT_DOT] = ACTIONS(1086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1084), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_fn] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_impl] = ACTIONS(1086), + [anon_sym_let] = ACTIONS(1086), + [anon_sym_loop] = ACTIONS(1086), + [anon_sym_match] = ACTIONS(1086), + [anon_sym_mod] = ACTIONS(1086), + [anon_sym_pub] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_trait] = ACTIONS(1086), + [anon_sym_type] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_unsafe] = ACTIONS(1086), + [anon_sym_use] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_move] = ACTIONS(1086), + [sym_integer_literal] = ACTIONS(1084), + [aux_sym_string_literal_token1] = ACTIONS(1084), + [sym_char_literal] = ACTIONS(1084), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1086), + [sym_super] = ACTIONS(1086), + [sym_crate] = ACTIONS(1086), + [sym_metavariable] = ACTIONS(1084), + [sym_raw_string_literal] = ACTIONS(1084), + [sym_float_literal] = ACTIONS(1084), [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_identifier] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_const] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_union] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_ref] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym__] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [sym_mutable_specifier] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_else] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(397), - [aux_sym_string_literal_token1] = ACTIONS(397), - [sym_char_literal] = ACTIONS(397), - [anon_sym_true] = ACTIONS(399), - [anon_sym_false] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_crate] = ACTIONS(399), - [sym_metavariable] = ACTIONS(397), - [sym_raw_string_literal] = ACTIONS(397), - [sym_float_literal] = ACTIONS(397), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_identifier] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_macro_rules_BANG] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), + [anon_sym_STAR_EQ] = ACTIONS(1088), + [anon_sym_SLASH_EQ] = ACTIONS(1088), + [anon_sym_PERCENT_EQ] = ACTIONS(1088), + [anon_sym_CARET_EQ] = ACTIONS(1088), + [anon_sym_AMP_EQ] = ACTIONS(1088), + [anon_sym_PIPE_EQ] = ACTIONS(1088), + [anon_sym_LT_LT_EQ] = ACTIONS(1088), + [anon_sym_GT_GT_EQ] = ACTIONS(1088), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1088), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1088), + [anon_sym_COLON_COLON] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1088), + [anon_sym_u8] = ACTIONS(1090), + [anon_sym_i8] = ACTIONS(1090), + [anon_sym_u16] = ACTIONS(1090), + [anon_sym_i16] = ACTIONS(1090), + [anon_sym_u32] = ACTIONS(1090), + [anon_sym_i32] = ACTIONS(1090), + [anon_sym_u64] = ACTIONS(1090), + [anon_sym_i64] = ACTIONS(1090), + [anon_sym_u128] = ACTIONS(1090), + [anon_sym_i128] = ACTIONS(1090), + [anon_sym_isize] = ACTIONS(1090), + [anon_sym_usize] = ACTIONS(1090), + [anon_sym_f32] = ACTIONS(1090), + [anon_sym_f64] = ACTIONS(1090), + [anon_sym_bool] = ACTIONS(1090), + [anon_sym_str] = ACTIONS(1090), + [anon_sym_char] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_as] = ACTIONS(1090), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_impl] = ACTIONS(1090), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_loop] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_mod] = ACTIONS(1090), + [anon_sym_pub] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_struct] = ACTIONS(1090), + [anon_sym_trait] = ACTIONS(1090), + [anon_sym_type] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_yield] = ACTIONS(1090), + [anon_sym_move] = ACTIONS(1090), + [sym_integer_literal] = ACTIONS(1088), + [aux_sym_string_literal_token1] = ACTIONS(1088), + [sym_char_literal] = ACTIONS(1088), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1088), + [sym_raw_string_literal] = ACTIONS(1088), + [sym_float_literal] = ACTIONS(1088), [sym_block_comment] = ACTIONS(3), }, [211] = { - [sym_identifier] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(395), - [anon_sym_i8] = ACTIONS(395), - [anon_sym_u16] = ACTIONS(395), - [anon_sym_i16] = ACTIONS(395), - [anon_sym_u32] = ACTIONS(395), - [anon_sym_i32] = ACTIONS(395), - [anon_sym_u64] = ACTIONS(395), - [anon_sym_i64] = ACTIONS(395), - [anon_sym_u128] = ACTIONS(395), - [anon_sym_i128] = ACTIONS(395), - [anon_sym_isize] = ACTIONS(395), - [anon_sym_usize] = ACTIONS(395), - [anon_sym_f32] = ACTIONS(395), - [anon_sym_f64] = ACTIONS(395), - [anon_sym_bool] = ACTIONS(395), - [anon_sym_str] = ACTIONS(395), - [anon_sym_char] = ACTIONS(395), - [anon_sym_as] = ACTIONS(395), - [anon_sym_const] = ACTIONS(395), - [anon_sym_default] = ACTIONS(395), - [anon_sym_union] = ACTIONS(395), - [anon_sym_POUND] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_ref] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(393), - [anon_sym__] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [sym_mutable_specifier] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_else] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(395), - [sym_integer_literal] = ACTIONS(393), - [aux_sym_string_literal_token1] = ACTIONS(393), - [sym_char_literal] = ACTIONS(393), - [anon_sym_true] = ACTIONS(395), - [anon_sym_false] = ACTIONS(395), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(395), - [sym_super] = ACTIONS(395), - [sym_crate] = ACTIONS(395), - [sym_metavariable] = ACTIONS(393), - [sym_raw_string_literal] = ACTIONS(393), - [sym_float_literal] = ACTIONS(393), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [212] = { - [sym_identifier] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = 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_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_str] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_const] = ACTIONS(441), - [anon_sym_default] = ACTIONS(441), - [anon_sym_union] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_ref] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(441), - [anon_sym_AMP] = 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), - [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_super] = ACTIONS(441), - [sym_crate] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_macro_rules_BANG] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(1094), + [anon_sym_PERCENT] = ACTIONS(1094), + [anon_sym_CARET] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1092), + [anon_sym_DASH_EQ] = ACTIONS(1092), + [anon_sym_STAR_EQ] = ACTIONS(1092), + [anon_sym_SLASH_EQ] = ACTIONS(1092), + [anon_sym_PERCENT_EQ] = ACTIONS(1092), + [anon_sym_CARET_EQ] = ACTIONS(1092), + [anon_sym_AMP_EQ] = ACTIONS(1092), + [anon_sym_PIPE_EQ] = ACTIONS(1092), + [anon_sym_LT_LT_EQ] = ACTIONS(1092), + [anon_sym_GT_GT_EQ] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_DOT] = ACTIONS(1094), + [anon_sym_DOT_DOT] = ACTIONS(1094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1092), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(1092), + [anon_sym_u8] = ACTIONS(1094), + [anon_sym_i8] = ACTIONS(1094), + [anon_sym_u16] = ACTIONS(1094), + [anon_sym_i16] = ACTIONS(1094), + [anon_sym_u32] = ACTIONS(1094), + [anon_sym_i32] = ACTIONS(1094), + [anon_sym_u64] = ACTIONS(1094), + [anon_sym_i64] = ACTIONS(1094), + [anon_sym_u128] = ACTIONS(1094), + [anon_sym_i128] = ACTIONS(1094), + [anon_sym_isize] = ACTIONS(1094), + [anon_sym_usize] = ACTIONS(1094), + [anon_sym_f32] = ACTIONS(1094), + [anon_sym_f64] = ACTIONS(1094), + [anon_sym_bool] = ACTIONS(1094), + [anon_sym_str] = ACTIONS(1094), + [anon_sym_char] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_as] = ACTIONS(1094), + [anon_sym_async] = ACTIONS(1094), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_impl] = ACTIONS(1094), + [anon_sym_let] = ACTIONS(1094), + [anon_sym_loop] = ACTIONS(1094), + [anon_sym_match] = ACTIONS(1094), + [anon_sym_mod] = ACTIONS(1094), + [anon_sym_pub] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_struct] = ACTIONS(1094), + [anon_sym_trait] = ACTIONS(1094), + [anon_sym_type] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_unsafe] = ACTIONS(1094), + [anon_sym_use] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym_yield] = ACTIONS(1094), + [anon_sym_move] = ACTIONS(1094), + [sym_integer_literal] = ACTIONS(1092), + [aux_sym_string_literal_token1] = ACTIONS(1092), + [sym_char_literal] = ACTIONS(1092), + [anon_sym_true] = ACTIONS(1094), + [anon_sym_false] = ACTIONS(1094), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(1092), + [sym_float_literal] = ACTIONS(1092), [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_identifier] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(582), - [anon_sym_i8] = ACTIONS(582), - [anon_sym_u16] = ACTIONS(582), - [anon_sym_i16] = ACTIONS(582), - [anon_sym_u32] = ACTIONS(582), - [anon_sym_i32] = ACTIONS(582), - [anon_sym_u64] = ACTIONS(582), - [anon_sym_i64] = ACTIONS(582), - [anon_sym_u128] = ACTIONS(582), - [anon_sym_i128] = ACTIONS(582), - [anon_sym_isize] = ACTIONS(582), - [anon_sym_usize] = ACTIONS(582), - [anon_sym_f32] = ACTIONS(582), - [anon_sym_f64] = ACTIONS(582), - [anon_sym_bool] = ACTIONS(582), - [anon_sym_str] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_as] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_union] = ACTIONS(582), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_ref] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_COLON_COLON] = ACTIONS(580), - [anon_sym__] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(580), - [sym_mutable_specifier] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT_EQ] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(580), - [anon_sym_PIPE_PIPE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(580), - [anon_sym_BANG_EQ] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_PLUS_EQ] = ACTIONS(580), - [anon_sym_DASH_EQ] = ACTIONS(580), - [anon_sym_STAR_EQ] = ACTIONS(580), - [anon_sym_SLASH_EQ] = ACTIONS(580), - [anon_sym_PERCENT_EQ] = ACTIONS(580), - [anon_sym_AMP_EQ] = ACTIONS(580), - [anon_sym_PIPE_EQ] = ACTIONS(580), - [anon_sym_CARET_EQ] = ACTIONS(580), - [anon_sym_LT_LT_EQ] = ACTIONS(580), - [anon_sym_GT_GT_EQ] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [sym_integer_literal] = ACTIONS(580), - [aux_sym_string_literal_token1] = ACTIONS(580), - [sym_char_literal] = ACTIONS(580), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_crate] = ACTIONS(582), - [sym_metavariable] = ACTIONS(580), - [sym_raw_string_literal] = ACTIONS(580), - [sym_float_literal] = ACTIONS(580), + [ts_builtin_sym_end] = ACTIONS(1096), + [sym_identifier] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_macro_rules_BANG] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1096), + [anon_sym_SLASH_EQ] = ACTIONS(1096), + [anon_sym_PERCENT_EQ] = ACTIONS(1096), + [anon_sym_CARET_EQ] = ACTIONS(1096), + [anon_sym_AMP_EQ] = ACTIONS(1096), + [anon_sym_PIPE_EQ] = ACTIONS(1096), + [anon_sym_LT_LT_EQ] = ACTIONS(1096), + [anon_sym_GT_GT_EQ] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1098), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_DOT] = ACTIONS(1098), + [anon_sym_DOT_DOT] = ACTIONS(1098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1096), + [anon_sym_POUND] = ACTIONS(1096), + [anon_sym_u8] = ACTIONS(1098), + [anon_sym_i8] = ACTIONS(1098), + [anon_sym_u16] = ACTIONS(1098), + [anon_sym_i16] = ACTIONS(1098), + [anon_sym_u32] = ACTIONS(1098), + [anon_sym_i32] = ACTIONS(1098), + [anon_sym_u64] = ACTIONS(1098), + [anon_sym_i64] = ACTIONS(1098), + [anon_sym_u128] = ACTIONS(1098), + [anon_sym_i128] = ACTIONS(1098), + [anon_sym_isize] = ACTIONS(1098), + [anon_sym_usize] = ACTIONS(1098), + [anon_sym_f32] = ACTIONS(1098), + [anon_sym_f64] = ACTIONS(1098), + [anon_sym_bool] = ACTIONS(1098), + [anon_sym_str] = ACTIONS(1098), + [anon_sym_char] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_as] = ACTIONS(1098), + [anon_sym_async] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_fn] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1098), + [anon_sym_let] = ACTIONS(1098), + [anon_sym_loop] = ACTIONS(1098), + [anon_sym_match] = ACTIONS(1098), + [anon_sym_mod] = ACTIONS(1098), + [anon_sym_pub] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_struct] = ACTIONS(1098), + [anon_sym_trait] = ACTIONS(1098), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1098), + [anon_sym_use] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym_yield] = ACTIONS(1098), + [anon_sym_move] = ACTIONS(1098), + [sym_integer_literal] = ACTIONS(1096), + [aux_sym_string_literal_token1] = ACTIONS(1096), + [sym_char_literal] = ACTIONS(1096), + [anon_sym_true] = ACTIONS(1098), + [anon_sym_false] = ACTIONS(1098), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1098), + [sym_super] = ACTIONS(1098), + [sym_crate] = ACTIONS(1098), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(1096), + [sym_float_literal] = ACTIONS(1096), [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym_identifier] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_ref] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym__] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1551), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_identifier] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_ref] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym__] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [sym_mutable_specifier] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1427), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(423), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(423), - [anon_sym_PLUS] = ACTIONS(425), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(425), - [anon_sym_i8] = ACTIONS(425), - [anon_sym_u16] = ACTIONS(425), - [anon_sym_i16] = ACTIONS(425), - [anon_sym_u32] = ACTIONS(425), - [anon_sym_i32] = ACTIONS(425), - [anon_sym_u64] = ACTIONS(425), - [anon_sym_i64] = ACTIONS(425), - [anon_sym_u128] = ACTIONS(425), - [anon_sym_i128] = ACTIONS(425), - [anon_sym_isize] = ACTIONS(425), - [anon_sym_usize] = ACTIONS(425), - [anon_sym_f32] = ACTIONS(425), - [anon_sym_f64] = ACTIONS(425), - [anon_sym_bool] = ACTIONS(425), - [anon_sym_str] = ACTIONS(425), - [anon_sym_char] = ACTIONS(425), - [anon_sym_as] = ACTIONS(425), - [anon_sym_const] = ACTIONS(425), - [anon_sym_default] = ACTIONS(425), - [anon_sym_union] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_COMMA] = ACTIONS(423), - [anon_sym_ref] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_GT] = ACTIONS(425), - [anon_sym_COLON_COLON] = ACTIONS(423), - [anon_sym__] = ACTIONS(425), - [anon_sym_AMP] = ACTIONS(425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(423), - [sym_mutable_specifier] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(425), - [anon_sym_AMP_AMP] = ACTIONS(423), - [anon_sym_PIPE_PIPE] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_CARET] = ACTIONS(425), - [anon_sym_EQ_EQ] = ACTIONS(423), - [anon_sym_BANG_EQ] = ACTIONS(423), - [anon_sym_LT_EQ] = ACTIONS(423), - [anon_sym_GT_EQ] = ACTIONS(423), - [anon_sym_LT_LT] = ACTIONS(425), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_SLASH] = ACTIONS(425), - [anon_sym_PERCENT] = ACTIONS(425), - [anon_sym_PLUS_EQ] = ACTIONS(423), - [anon_sym_DASH_EQ] = ACTIONS(423), - [anon_sym_STAR_EQ] = ACTIONS(423), - [anon_sym_SLASH_EQ] = ACTIONS(423), - [anon_sym_PERCENT_EQ] = ACTIONS(423), - [anon_sym_AMP_EQ] = ACTIONS(423), - [anon_sym_PIPE_EQ] = ACTIONS(423), - [anon_sym_CARET_EQ] = ACTIONS(423), - [anon_sym_LT_LT_EQ] = ACTIONS(423), - [anon_sym_GT_GT_EQ] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(425), - [sym_integer_literal] = ACTIONS(423), - [aux_sym_string_literal_token1] = ACTIONS(423), - [sym_char_literal] = ACTIONS(423), - [anon_sym_true] = ACTIONS(425), - [anon_sym_false] = ACTIONS(425), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(425), - [sym_super] = ACTIONS(425), - [sym_crate] = ACTIONS(425), - [sym_metavariable] = ACTIONS(423), - [sym_raw_string_literal] = ACTIONS(423), - [sym_float_literal] = ACTIONS(423), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1432), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [217] = { - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(403), - [anon_sym_i8] = ACTIONS(403), - [anon_sym_u16] = ACTIONS(403), - [anon_sym_i16] = ACTIONS(403), - [anon_sym_u32] = ACTIONS(403), - [anon_sym_i32] = ACTIONS(403), - [anon_sym_u64] = ACTIONS(403), - [anon_sym_i64] = ACTIONS(403), - [anon_sym_u128] = ACTIONS(403), - [anon_sym_i128] = ACTIONS(403), - [anon_sym_isize] = ACTIONS(403), - [anon_sym_usize] = ACTIONS(403), - [anon_sym_f32] = ACTIONS(403), - [anon_sym_f64] = ACTIONS(403), - [anon_sym_bool] = ACTIONS(403), - [anon_sym_str] = ACTIONS(403), - [anon_sym_char] = ACTIONS(403), - [anon_sym_as] = ACTIONS(403), - [anon_sym_const] = ACTIONS(403), - [anon_sym_default] = ACTIONS(403), - [anon_sym_union] = ACTIONS(403), - [anon_sym_POUND] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(401), - [anon_sym_ref] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym__] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [sym_mutable_specifier] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [sym_integer_literal] = ACTIONS(401), - [aux_sym_string_literal_token1] = ACTIONS(401), - [sym_char_literal] = ACTIONS(401), - [anon_sym_true] = ACTIONS(403), - [anon_sym_false] = ACTIONS(403), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(403), - [sym_super] = ACTIONS(403), - [sym_crate] = ACTIONS(403), - [sym_metavariable] = ACTIONS(401), - [sym_raw_string_literal] = ACTIONS(401), - [sym_float_literal] = ACTIONS(401), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym_identifier] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(405), - [anon_sym_u8] = ACTIONS(407), - [anon_sym_i8] = ACTIONS(407), - [anon_sym_u16] = ACTIONS(407), - [anon_sym_i16] = ACTIONS(407), - [anon_sym_u32] = ACTIONS(407), - [anon_sym_i32] = ACTIONS(407), - [anon_sym_u64] = ACTIONS(407), - [anon_sym_i64] = ACTIONS(407), - [anon_sym_u128] = ACTIONS(407), - [anon_sym_i128] = ACTIONS(407), - [anon_sym_isize] = ACTIONS(407), - [anon_sym_usize] = ACTIONS(407), - [anon_sym_f32] = ACTIONS(407), - [anon_sym_f64] = ACTIONS(407), - [anon_sym_bool] = ACTIONS(407), - [anon_sym_str] = ACTIONS(407), - [anon_sym_char] = ACTIONS(407), - [anon_sym_as] = ACTIONS(407), - [anon_sym_const] = ACTIONS(407), - [anon_sym_default] = ACTIONS(407), - [anon_sym_union] = ACTIONS(407), - [anon_sym_POUND] = ACTIONS(405), - [anon_sym_EQ] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_COLON_COLON] = ACTIONS(405), - [anon_sym__] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(405), - [sym_mutable_specifier] = ACTIONS(407), - [anon_sym_DOT_DOT] = ACTIONS(407), - [anon_sym_DOT_DOT_EQ] = ACTIONS(405), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_AMP_AMP] = ACTIONS(405), - [anon_sym_PIPE_PIPE] = ACTIONS(405), - [anon_sym_PIPE] = ACTIONS(407), - [anon_sym_CARET] = ACTIONS(407), - [anon_sym_EQ_EQ] = ACTIONS(405), - [anon_sym_BANG_EQ] = ACTIONS(405), - [anon_sym_LT_EQ] = ACTIONS(405), - [anon_sym_GT_EQ] = ACTIONS(405), - [anon_sym_LT_LT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_PLUS_EQ] = ACTIONS(405), - [anon_sym_DASH_EQ] = ACTIONS(405), - [anon_sym_STAR_EQ] = ACTIONS(405), - [anon_sym_SLASH_EQ] = ACTIONS(405), - [anon_sym_PERCENT_EQ] = ACTIONS(405), - [anon_sym_AMP_EQ] = ACTIONS(405), - [anon_sym_PIPE_EQ] = ACTIONS(405), - [anon_sym_CARET_EQ] = ACTIONS(405), - [anon_sym_LT_LT_EQ] = ACTIONS(405), - [anon_sym_GT_GT_EQ] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(407), - [sym_integer_literal] = ACTIONS(405), - [aux_sym_string_literal_token1] = ACTIONS(405), - [sym_char_literal] = ACTIONS(405), - [anon_sym_true] = ACTIONS(407), - [anon_sym_false] = ACTIONS(407), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(407), - [sym_super] = ACTIONS(407), - [sym_crate] = ACTIONS(407), - [sym_metavariable] = ACTIONS(405), - [sym_raw_string_literal] = ACTIONS(405), - [sym_float_literal] = ACTIONS(405), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1640), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [219] = { - [sym_identifier] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_QMARK] = 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_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_str] = ACTIONS(437), - [anon_sym_char] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_const] = ACTIONS(437), - [anon_sym_default] = ACTIONS(437), - [anon_sym_union] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_ref] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_COLON_COLON] = ACTIONS(435), - [anon_sym__] = ACTIONS(437), - [anon_sym_AMP] = 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), - [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(437), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(435), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_macro_rules_BANG] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1100), + [anon_sym_DASH_EQ] = ACTIONS(1100), + [anon_sym_STAR_EQ] = ACTIONS(1100), + [anon_sym_SLASH_EQ] = ACTIONS(1100), + [anon_sym_PERCENT_EQ] = ACTIONS(1100), + [anon_sym_CARET_EQ] = ACTIONS(1100), + [anon_sym_AMP_EQ] = ACTIONS(1100), + [anon_sym_PIPE_EQ] = ACTIONS(1100), + [anon_sym_LT_LT_EQ] = ACTIONS(1100), + [anon_sym_GT_GT_EQ] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1100), + [anon_sym_DOT] = ACTIONS(1102), + [anon_sym_DOT_DOT] = ACTIONS(1102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1100), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1100), + [anon_sym_COLON_COLON] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1100), + [anon_sym_u8] = ACTIONS(1102), + [anon_sym_i8] = ACTIONS(1102), + [anon_sym_u16] = ACTIONS(1102), + [anon_sym_i16] = ACTIONS(1102), + [anon_sym_u32] = ACTIONS(1102), + [anon_sym_i32] = ACTIONS(1102), + [anon_sym_u64] = ACTIONS(1102), + [anon_sym_i64] = ACTIONS(1102), + [anon_sym_u128] = ACTIONS(1102), + [anon_sym_i128] = ACTIONS(1102), + [anon_sym_isize] = ACTIONS(1102), + [anon_sym_usize] = ACTIONS(1102), + [anon_sym_f32] = ACTIONS(1102), + [anon_sym_f64] = ACTIONS(1102), + [anon_sym_bool] = ACTIONS(1102), + [anon_sym_str] = ACTIONS(1102), + [anon_sym_char] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_as] = ACTIONS(1102), + [anon_sym_async] = ACTIONS(1102), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_fn] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_let] = ACTIONS(1102), + [anon_sym_loop] = ACTIONS(1102), + [anon_sym_match] = ACTIONS(1102), + [anon_sym_mod] = ACTIONS(1102), + [anon_sym_pub] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_struct] = ACTIONS(1102), + [anon_sym_trait] = ACTIONS(1102), + [anon_sym_type] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_unsafe] = ACTIONS(1102), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym_yield] = ACTIONS(1102), + [anon_sym_move] = ACTIONS(1102), + [sym_integer_literal] = ACTIONS(1100), + [aux_sym_string_literal_token1] = ACTIONS(1100), + [sym_char_literal] = ACTIONS(1100), + [anon_sym_true] = ACTIONS(1102), + [anon_sym_false] = ACTIONS(1102), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1102), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1100), + [sym_raw_string_literal] = ACTIONS(1100), + [sym_float_literal] = ACTIONS(1100), [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym_identifier] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_QMARK] = 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_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_str] = ACTIONS(449), - [anon_sym_char] = ACTIONS(449), - [anon_sym_as] = ACTIONS(449), - [anon_sym_const] = ACTIONS(449), - [anon_sym_default] = ACTIONS(449), - [anon_sym_union] = ACTIONS(449), - [anon_sym_POUND] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(447), - [anon_sym_ref] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_COLON_COLON] = ACTIONS(447), - [anon_sym__] = ACTIONS(449), - [anon_sym_AMP] = 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), - [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(449), - [sym_super] = ACTIONS(449), - [sym_crate] = ACTIONS(449), - [sym_metavariable] = ACTIONS(447), - [sym_raw_string_literal] = ACTIONS(447), - [sym_float_literal] = ACTIONS(447), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1462), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u128] = ACTIONS(866), - [anon_sym_i128] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_str] = ACTIONS(866), - [anon_sym_char] = ACTIONS(866), - [anon_sym_as] = ACTIONS(461), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(866), - [anon_sym_union] = ACTIONS(866), - [anon_sym_POUND] = ACTIONS(868), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_COMMA] = ACTIONS(459), - [anon_sym_ref] = ACTIONS(866), - [anon_sym_LT] = ACTIONS(866), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(868), - [anon_sym__] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [sym_mutable_specifier] = ACTIONS(866), - [anon_sym_DOT_DOT] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(866), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(868), - [aux_sym_string_literal_token1] = ACTIONS(868), - [sym_char_literal] = ACTIONS(868), - [anon_sym_true] = ACTIONS(866), - [anon_sym_false] = ACTIONS(866), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), - [sym_super] = ACTIONS(866), - [sym_crate] = ACTIONS(866), - [sym_metavariable] = ACTIONS(868), - [sym_raw_string_literal] = ACTIONS(868), - [sym_float_literal] = ACTIONS(868), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1616), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(392), + [sym_if_let_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_while_let_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3044), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_loop] = ACTIONS(1114), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym_identifier] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_ref] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [sym_mutable_specifier] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1453), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [223] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1622), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [224] = { - [sym_identifier] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_as] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [anon_sym_default] = ACTIONS(411), - [anon_sym_union] = ACTIONS(411), - [anon_sym_POUND] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(409), - [anon_sym_ref] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_COLON_COLON] = ACTIONS(409), - [anon_sym__] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(409), - [sym_mutable_specifier] = ACTIONS(411), - [anon_sym_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_CARET] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_BANG_EQ] = ACTIONS(409), - [anon_sym_LT_EQ] = ACTIONS(409), - [anon_sym_GT_EQ] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_PERCENT] = ACTIONS(411), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_DOT] = ACTIONS(411), - [sym_integer_literal] = ACTIONS(409), - [aux_sym_string_literal_token1] = ACTIONS(409), - [sym_char_literal] = ACTIONS(409), - [anon_sym_true] = ACTIONS(411), - [anon_sym_false] = ACTIONS(411), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(411), - [sym_super] = ACTIONS(411), - [sym_crate] = ACTIONS(411), - [sym_metavariable] = ACTIONS(409), - [sym_raw_string_literal] = ACTIONS(409), - [sym_float_literal] = ACTIONS(409), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [225] = { - [sym_identifier] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_LBRACK] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_u8] = ACTIONS(453), - [anon_sym_i8] = ACTIONS(453), - [anon_sym_u16] = ACTIONS(453), - [anon_sym_i16] = ACTIONS(453), - [anon_sym_u32] = ACTIONS(453), - [anon_sym_i32] = ACTIONS(453), - [anon_sym_u64] = ACTIONS(453), - [anon_sym_i64] = ACTIONS(453), - [anon_sym_u128] = ACTIONS(453), - [anon_sym_i128] = ACTIONS(453), - [anon_sym_isize] = ACTIONS(453), - [anon_sym_usize] = ACTIONS(453), - [anon_sym_f32] = ACTIONS(453), - [anon_sym_f64] = ACTIONS(453), - [anon_sym_bool] = ACTIONS(453), - [anon_sym_str] = ACTIONS(453), - [anon_sym_char] = ACTIONS(453), - [anon_sym_as] = ACTIONS(453), - [anon_sym_const] = ACTIONS(453), - [anon_sym_default] = ACTIONS(453), - [anon_sym_union] = ACTIONS(453), - [anon_sym_POUND] = ACTIONS(451), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(451), - [anon_sym_ref] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_COLON_COLON] = ACTIONS(451), - [anon_sym__] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(451), - [sym_mutable_specifier] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_LT_EQ] = ACTIONS(451), - [anon_sym_GT_EQ] = ACTIONS(451), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(453), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(451), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(453), - [anon_sym_false] = ACTIONS(453), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(453), - [sym_super] = ACTIONS(453), - [sym_crate] = ACTIONS(453), - [sym_metavariable] = ACTIONS(451), - [sym_raw_string_literal] = ACTIONS(451), - [sym_float_literal] = ACTIONS(451), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [226] = { - [sym_identifier] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(586), - [anon_sym_i8] = ACTIONS(586), - [anon_sym_u16] = ACTIONS(586), - [anon_sym_i16] = ACTIONS(586), - [anon_sym_u32] = ACTIONS(586), - [anon_sym_i32] = ACTIONS(586), - [anon_sym_u64] = ACTIONS(586), - [anon_sym_i64] = ACTIONS(586), - [anon_sym_u128] = ACTIONS(586), - [anon_sym_i128] = ACTIONS(586), - [anon_sym_isize] = ACTIONS(586), - [anon_sym_usize] = ACTIONS(586), - [anon_sym_f32] = ACTIONS(586), - [anon_sym_f64] = ACTIONS(586), - [anon_sym_bool] = ACTIONS(586), - [anon_sym_str] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_union] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_ref] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(584), - [anon_sym__] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [sym_mutable_specifier] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(584), - [aux_sym_string_literal_token1] = ACTIONS(584), - [sym_char_literal] = ACTIONS(584), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(586), - [sym_super] = ACTIONS(586), - [sym_crate] = ACTIONS(586), - [sym_metavariable] = ACTIONS(584), - [sym_raw_string_literal] = ACTIONS(584), - [sym_float_literal] = ACTIONS(584), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(391), + [sym_if_let_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_while_let_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3044), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_loop] = ACTIONS(1114), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [227] = { - [sym_identifier] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(479), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(479), - [anon_sym_u8] = ACTIONS(481), - [anon_sym_i8] = ACTIONS(481), - [anon_sym_u16] = ACTIONS(481), - [anon_sym_i16] = ACTIONS(481), - [anon_sym_u32] = ACTIONS(481), - [anon_sym_i32] = ACTIONS(481), - [anon_sym_u64] = ACTIONS(481), - [anon_sym_i64] = ACTIONS(481), - [anon_sym_u128] = ACTIONS(481), - [anon_sym_i128] = ACTIONS(481), - [anon_sym_isize] = ACTIONS(481), - [anon_sym_usize] = ACTIONS(481), - [anon_sym_f32] = ACTIONS(481), - [anon_sym_f64] = ACTIONS(481), - [anon_sym_bool] = ACTIONS(481), - [anon_sym_str] = ACTIONS(481), - [anon_sym_char] = ACTIONS(481), - [anon_sym_as] = ACTIONS(481), - [anon_sym_const] = ACTIONS(481), - [anon_sym_default] = ACTIONS(481), - [anon_sym_union] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(479), - [anon_sym_ref] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym__] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(479), - [sym_mutable_specifier] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(481), - [anon_sym_EQ_EQ] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(479), - [anon_sym_GT_EQ] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(481), - [anon_sym_PLUS_EQ] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(479), - [anon_sym_STAR_EQ] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(479), - [anon_sym_AMP_EQ] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(479), - [anon_sym_CARET_EQ] = ACTIONS(479), - [anon_sym_LT_LT_EQ] = ACTIONS(479), - [anon_sym_GT_GT_EQ] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(481), - [sym_integer_literal] = ACTIONS(479), - [aux_sym_string_literal_token1] = ACTIONS(479), - [sym_char_literal] = ACTIONS(479), - [anon_sym_true] = ACTIONS(481), - [anon_sym_false] = ACTIONS(481), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(481), - [sym_super] = ACTIONS(481), - [sym_crate] = ACTIONS(481), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(479), - [sym_float_literal] = ACTIONS(479), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1456), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [228] = { - [sym_identifier] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(459), - [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_str] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), - [anon_sym_as] = ACTIONS(461), - [anon_sym_const] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_union] = ACTIONS(896), - [anon_sym_POUND] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_COMMA] = ACTIONS(459), - [anon_sym_ref] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(898), - [anon_sym__] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(459), - [sym_mutable_specifier] = ACTIONS(896), - [anon_sym_DOT_DOT] = ACTIONS(896), - [anon_sym_DOT_DOT_EQ] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_PIPE_PIPE] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(459), - [anon_sym_BANG_EQ] = ACTIONS(459), - [anon_sym_LT_EQ] = ACTIONS(459), - [anon_sym_GT_EQ] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_PLUS_EQ] = ACTIONS(459), - [anon_sym_DASH_EQ] = ACTIONS(459), - [anon_sym_STAR_EQ] = ACTIONS(459), - [anon_sym_SLASH_EQ] = ACTIONS(459), - [anon_sym_PERCENT_EQ] = ACTIONS(459), - [anon_sym_AMP_EQ] = ACTIONS(459), - [anon_sym_PIPE_EQ] = ACTIONS(459), - [anon_sym_CARET_EQ] = ACTIONS(459), - [anon_sym_LT_LT_EQ] = ACTIONS(459), - [anon_sym_GT_GT_EQ] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(898), - [aux_sym_string_literal_token1] = ACTIONS(898), - [sym_char_literal] = ACTIONS(898), - [anon_sym_true] = ACTIONS(896), - [anon_sym_false] = ACTIONS(896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(896), - [sym_super] = ACTIONS(896), - [sym_crate] = ACTIONS(896), - [sym_metavariable] = ACTIONS(898), - [sym_raw_string_literal] = ACTIONS(898), - [sym_float_literal] = ACTIONS(898), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1623), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [229] = { - [sym_identifier] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_u8] = ACTIONS(433), - [anon_sym_i8] = ACTIONS(433), - [anon_sym_u16] = ACTIONS(433), - [anon_sym_i16] = ACTIONS(433), - [anon_sym_u32] = ACTIONS(433), - [anon_sym_i32] = ACTIONS(433), - [anon_sym_u64] = ACTIONS(433), - [anon_sym_i64] = ACTIONS(433), - [anon_sym_u128] = ACTIONS(433), - [anon_sym_i128] = ACTIONS(433), - [anon_sym_isize] = ACTIONS(433), - [anon_sym_usize] = ACTIONS(433), - [anon_sym_f32] = ACTIONS(433), - [anon_sym_f64] = ACTIONS(433), - [anon_sym_bool] = ACTIONS(433), - [anon_sym_str] = ACTIONS(433), - [anon_sym_char] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_const] = ACTIONS(433), - [anon_sym_default] = ACTIONS(433), - [anon_sym_union] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_ref] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_COLON_COLON] = ACTIONS(431), - [anon_sym__] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_mutable_specifier] = ACTIONS(433), - [anon_sym_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(431), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(433), - [sym_super] = ACTIONS(433), - [sym_crate] = ACTIONS(433), - [sym_metavariable] = ACTIONS(431), - [sym_raw_string_literal] = ACTIONS(431), - [sym_float_literal] = ACTIONS(431), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [230] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [231] = { - [sym_identifier] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_QMARK] = 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_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_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_as] = ACTIONS(477), - [anon_sym_const] = ACTIONS(477), - [anon_sym_default] = ACTIONS(477), - [anon_sym_union] = ACTIONS(477), - [anon_sym_POUND] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(475), - [anon_sym_ref] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_COLON_COLON] = ACTIONS(475), - [anon_sym__] = ACTIONS(477), - [anon_sym_AMP] = 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), - [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_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(475), - [sym_raw_string_literal] = ACTIONS(475), - [sym_float_literal] = ACTIONS(475), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_PLUS] = ACTIONS(445), - [anon_sym_STAR] = ACTIONS(445), - [anon_sym_QMARK] = ACTIONS(443), - [anon_sym_u8] = ACTIONS(445), - [anon_sym_i8] = ACTIONS(445), - [anon_sym_u16] = ACTIONS(445), - [anon_sym_i16] = ACTIONS(445), - [anon_sym_u32] = ACTIONS(445), - [anon_sym_i32] = ACTIONS(445), - [anon_sym_u64] = ACTIONS(445), - [anon_sym_i64] = ACTIONS(445), - [anon_sym_u128] = ACTIONS(445), - [anon_sym_i128] = ACTIONS(445), - [anon_sym_isize] = ACTIONS(445), - [anon_sym_usize] = ACTIONS(445), - [anon_sym_f32] = ACTIONS(445), - [anon_sym_f64] = ACTIONS(445), - [anon_sym_bool] = ACTIONS(445), - [anon_sym_str] = ACTIONS(445), - [anon_sym_char] = ACTIONS(445), - [anon_sym_as] = ACTIONS(445), - [anon_sym_const] = ACTIONS(445), - [anon_sym_default] = ACTIONS(445), - [anon_sym_union] = ACTIONS(445), - [anon_sym_POUND] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(445), - [anon_sym_COMMA] = ACTIONS(443), - [anon_sym_ref] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_GT] = ACTIONS(445), - [anon_sym_COLON_COLON] = ACTIONS(443), - [anon_sym__] = ACTIONS(445), - [anon_sym_AMP] = ACTIONS(445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(445), - [anon_sym_DOT_DOT] = ACTIONS(445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(445), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_CARET] = ACTIONS(445), - [anon_sym_EQ_EQ] = ACTIONS(443), - [anon_sym_BANG_EQ] = ACTIONS(443), - [anon_sym_LT_EQ] = ACTIONS(443), - [anon_sym_GT_EQ] = ACTIONS(443), - [anon_sym_LT_LT] = ACTIONS(445), - [anon_sym_GT_GT] = ACTIONS(445), - [anon_sym_SLASH] = ACTIONS(445), - [anon_sym_PERCENT] = ACTIONS(445), - [anon_sym_PLUS_EQ] = ACTIONS(443), - [anon_sym_DASH_EQ] = ACTIONS(443), - [anon_sym_STAR_EQ] = ACTIONS(443), - [anon_sym_SLASH_EQ] = ACTIONS(443), - [anon_sym_PERCENT_EQ] = ACTIONS(443), - [anon_sym_AMP_EQ] = ACTIONS(443), - [anon_sym_PIPE_EQ] = ACTIONS(443), - [anon_sym_CARET_EQ] = ACTIONS(443), - [anon_sym_LT_LT_EQ] = ACTIONS(443), - [anon_sym_GT_GT_EQ] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(445), - [sym_integer_literal] = ACTIONS(443), - [aux_sym_string_literal_token1] = ACTIONS(443), - [sym_char_literal] = ACTIONS(443), - [anon_sym_true] = ACTIONS(445), - [anon_sym_false] = ACTIONS(445), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(445), - [sym_super] = ACTIONS(445), - [sym_crate] = ACTIONS(445), - [sym_metavariable] = ACTIONS(443), - [sym_raw_string_literal] = ACTIONS(443), - [sym_float_literal] = ACTIONS(443), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_u8] = ACTIONS(419), - [anon_sym_i8] = ACTIONS(419), - [anon_sym_u16] = ACTIONS(419), - [anon_sym_i16] = ACTIONS(419), - [anon_sym_u32] = ACTIONS(419), - [anon_sym_i32] = ACTIONS(419), - [anon_sym_u64] = ACTIONS(419), - [anon_sym_i64] = ACTIONS(419), - [anon_sym_u128] = ACTIONS(419), - [anon_sym_i128] = ACTIONS(419), - [anon_sym_isize] = ACTIONS(419), - [anon_sym_usize] = ACTIONS(419), - [anon_sym_f32] = ACTIONS(419), - [anon_sym_f64] = ACTIONS(419), - [anon_sym_bool] = ACTIONS(419), - [anon_sym_str] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_as] = ACTIONS(419), - [anon_sym_const] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_union] = ACTIONS(419), - [anon_sym_POUND] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(417), - [anon_sym_ref] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_COLON_COLON] = ACTIONS(417), - [anon_sym__] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(417), - [sym_mutable_specifier] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), - [anon_sym_STAR_EQ] = ACTIONS(417), - [anon_sym_SLASH_EQ] = ACTIONS(417), - [anon_sym_PERCENT_EQ] = ACTIONS(417), - [anon_sym_AMP_EQ] = ACTIONS(417), - [anon_sym_PIPE_EQ] = ACTIONS(417), - [anon_sym_CARET_EQ] = ACTIONS(417), - [anon_sym_LT_LT_EQ] = ACTIONS(417), - [anon_sym_GT_GT_EQ] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(419), - [sym_integer_literal] = ACTIONS(417), - [aux_sym_string_literal_token1] = ACTIONS(417), - [sym_char_literal] = ACTIONS(417), - [anon_sym_true] = ACTIONS(419), - [anon_sym_false] = ACTIONS(419), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_crate] = ACTIONS(419), - [sym_metavariable] = ACTIONS(417), - [sym_raw_string_literal] = ACTIONS(417), - [sym_float_literal] = ACTIONS(417), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(465), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_u8] = ACTIONS(465), - [anon_sym_i8] = ACTIONS(465), - [anon_sym_u16] = ACTIONS(465), - [anon_sym_i16] = ACTIONS(465), - [anon_sym_u32] = ACTIONS(465), - [anon_sym_i32] = ACTIONS(465), - [anon_sym_u64] = ACTIONS(465), - [anon_sym_i64] = ACTIONS(465), - [anon_sym_u128] = ACTIONS(465), - [anon_sym_i128] = ACTIONS(465), - [anon_sym_isize] = ACTIONS(465), - [anon_sym_usize] = ACTIONS(465), - [anon_sym_f32] = ACTIONS(465), - [anon_sym_f64] = ACTIONS(465), - [anon_sym_bool] = ACTIONS(465), - [anon_sym_str] = ACTIONS(465), - [anon_sym_char] = ACTIONS(465), - [anon_sym_as] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_default] = ACTIONS(465), - [anon_sym_union] = ACTIONS(465), - [anon_sym_POUND] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(465), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_ref] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_GT] = ACTIONS(465), - [anon_sym_COLON_COLON] = ACTIONS(463), - [anon_sym__] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(463), - [sym_mutable_specifier] = ACTIONS(465), - [anon_sym_DOT_DOT] = ACTIONS(465), - [anon_sym_DOT_DOT_EQ] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_CARET] = ACTIONS(465), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_LT_LT] = ACTIONS(465), - [anon_sym_GT_GT] = ACTIONS(465), - [anon_sym_SLASH] = ACTIONS(465), - [anon_sym_PERCENT] = ACTIONS(465), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(465), - [sym_integer_literal] = ACTIONS(463), - [aux_sym_string_literal_token1] = ACTIONS(463), - [sym_char_literal] = ACTIONS(463), - [anon_sym_true] = ACTIONS(465), - [anon_sym_false] = ACTIONS(465), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(465), - [sym_super] = ACTIONS(465), - [sym_crate] = ACTIONS(465), - [sym_metavariable] = ACTIONS(463), - [sym_raw_string_literal] = ACTIONS(463), - [sym_float_literal] = ACTIONS(463), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2029), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [238] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1778), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1782), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(2001), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(2001), - [sym__literal] = STATE(2001), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1761), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1760), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_type_binding] = STATE(1925), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [sym_block] = STATE(1925), - [sym__literal] = STATE(1925), - [sym_string_literal] = STATE(2186), - [sym_boolean_literal] = STATE(2186), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { - [sym_empty_statement] = STATE(244), - [sym_macro_definition] = STATE(244), - [sym_attribute_item] = STATE(244), - [sym_inner_attribute_item] = STATE(244), - [sym_mod_item] = STATE(244), - [sym_foreign_mod_item] = STATE(244), - [sym_struct_item] = STATE(244), - [sym_union_item] = STATE(244), - [sym_enum_item] = STATE(244), - [sym_extern_crate_declaration] = STATE(244), - [sym_const_item] = STATE(244), - [sym_static_item] = STATE(244), - [sym_type_item] = STATE(244), - [sym_function_item] = STATE(244), - [sym_function_signature_item] = STATE(244), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(244), - [sym_trait_item] = STATE(244), - [sym_associated_type] = STATE(244), - [sym_let_declaration] = STATE(244), - [sym_use_declaration] = STATE(244), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(922), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(926), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(950), - [sym_super] = ACTIONS(950), - [sym_crate] = ACTIONS(952), - [sym_metavariable] = ACTIONS(954), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym_empty_statement] = STATE(245), - [sym_macro_definition] = STATE(245), - [sym_attribute_item] = STATE(245), - [sym_inner_attribute_item] = STATE(245), - [sym_mod_item] = STATE(245), - [sym_foreign_mod_item] = STATE(245), - [sym_struct_item] = STATE(245), - [sym_union_item] = STATE(245), - [sym_enum_item] = STATE(245), - [sym_extern_crate_declaration] = STATE(245), - [sym_const_item] = STATE(245), - [sym_static_item] = STATE(245), - [sym_type_item] = STATE(245), - [sym_function_item] = STATE(245), - [sym_function_signature_item] = STATE(245), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(245), - [sym_trait_item] = STATE(245), - [sym_associated_type] = STATE(245), - [sym_let_declaration] = STATE(245), - [sym_use_declaration] = STATE(245), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(245), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(245), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(922), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(926), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(950), - [sym_super] = ACTIONS(950), - [sym_crate] = ACTIONS(952), - [sym_metavariable] = ACTIONS(954), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [sym_empty_statement] = STATE(241), - [sym_macro_definition] = STATE(241), - [sym_attribute_item] = STATE(241), - [sym_inner_attribute_item] = STATE(241), - [sym_mod_item] = STATE(241), - [sym_foreign_mod_item] = STATE(241), - [sym_struct_item] = STATE(241), - [sym_union_item] = STATE(241), - [sym_enum_item] = STATE(241), - [sym_extern_crate_declaration] = STATE(241), - [sym_const_item] = STATE(241), - [sym_static_item] = STATE(241), - [sym_type_item] = STATE(241), - [sym_function_item] = STATE(241), - [sym_function_signature_item] = STATE(241), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(241), - [sym_trait_item] = STATE(241), - [sym_associated_type] = STATE(241), - [sym_let_declaration] = STATE(241), - [sym_use_declaration] = STATE(241), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(241), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(241), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(922), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(926), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(950), - [sym_super] = ACTIONS(950), - [sym_crate] = ACTIONS(952), - [sym_metavariable] = ACTIONS(954), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_RBRACK] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(974), - [sym_non_special_punctuation] = ACTIONS(960), - [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_str] = ACTIONS(960), - [anon_sym_char] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_as] = ACTIONS(960), - [anon_sym_async] = ACTIONS(960), - [anon_sym_await] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_default] = 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_loop] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_mod] = ACTIONS(960), - [anon_sym_pub] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_trait] = ACTIONS(960), - [anon_sym_type] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_unsafe] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [sym_mutable_specifier] = ACTIONS(960), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(980), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(960), - [sym_super] = ACTIONS(960), - [sym_crate] = ACTIONS(960), - [sym_metavariable] = ACTIONS(988), - [sym_raw_string_literal] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), - [sym_block_comment] = ACTIONS(3), - }, - [244] = { - [sym_empty_statement] = STATE(245), - [sym_macro_definition] = STATE(245), - [sym_attribute_item] = STATE(245), - [sym_inner_attribute_item] = STATE(245), - [sym_mod_item] = STATE(245), - [sym_foreign_mod_item] = STATE(245), - [sym_struct_item] = STATE(245), - [sym_union_item] = STATE(245), - [sym_enum_item] = STATE(245), - [sym_extern_crate_declaration] = STATE(245), - [sym_const_item] = STATE(245), - [sym_static_item] = STATE(245), - [sym_type_item] = STATE(245), - [sym_function_item] = STATE(245), - [sym_function_signature_item] = STATE(245), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(245), - [sym_trait_item] = STATE(245), - [sym_associated_type] = STATE(245), - [sym_let_declaration] = STATE(245), - [sym_use_declaration] = STATE(245), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(245), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(245), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_fn] = ACTIONS(922), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(926), - [anon_sym_mod] = ACTIONS(928), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(950), - [sym_super] = ACTIONS(950), - [sym_crate] = ACTIONS(952), - [sym_metavariable] = ACTIONS(954), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [sym_empty_statement] = STATE(245), - [sym_macro_definition] = STATE(245), - [sym_attribute_item] = STATE(245), - [sym_inner_attribute_item] = STATE(245), - [sym_mod_item] = STATE(245), - [sym_foreign_mod_item] = STATE(245), - [sym_struct_item] = STATE(245), - [sym_union_item] = STATE(245), - [sym_enum_item] = STATE(245), - [sym_extern_crate_declaration] = STATE(245), - [sym_const_item] = STATE(245), - [sym_static_item] = STATE(245), - [sym_type_item] = STATE(245), - [sym_function_item] = STATE(245), - [sym_function_signature_item] = STATE(245), - [sym_function_modifiers] = STATE(2461), - [sym_impl_item] = STATE(245), - [sym_trait_item] = STATE(245), - [sym_associated_type] = STATE(245), - [sym_let_declaration] = STATE(245), - [sym_use_declaration] = STATE(245), - [sym_extern_modifier] = STATE(1431), - [sym_visibility_modifier] = STATE(1270), - [sym_bracketed_type] = STATE(2287), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(245), - [sym_scoped_identifier] = STATE(2223), - [aux_sym_declaration_list_repeat1] = STATE(245), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_macro_rules_BANG] = ACTIONS(999), - [anon_sym_RBRACE] = 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_str] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(1019), - [anon_sym_impl] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1028), - [anon_sym_pub] = ACTIONS(1031), - [anon_sym_static] = ACTIONS(1034), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1040), - [anon_sym_type] = ACTIONS(1043), - [anon_sym_union] = ACTIONS(1046), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(1055), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(1064), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1067), - [sym_super] = ACTIONS(1067), - [sym_crate] = ACTIONS(1070), - [sym_metavariable] = ACTIONS(1073), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(290), - [sym_last_match_arm] = STATE(2323), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [247] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(353), - [sym_last_match_arm] = STATE(2463), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [248] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(293), - [sym_last_match_arm] = STATE(2330), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(293), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_macro_rules_BANG] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_STAR] = 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_str] = ACTIONS(1104), - [anon_sym_char] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_async] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_default] = 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_loop] = ACTIONS(1104), - [anon_sym_match] = ACTIONS(1104), - [anon_sym_mod] = ACTIONS(1104), - [anon_sym_pub] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_trait] = ACTIONS(1104), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_unsafe] = ACTIONS(1104), - [anon_sym_use] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1104), - [sym_crate] = ACTIONS(1104), - [sym_metavariable] = ACTIONS(1102), - [sym_raw_string_literal] = ACTIONS(1102), - [sym_float_literal] = ACTIONS(1102), - [sym_block_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_macro_rules_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_STAR] = 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_str] = ACTIONS(1108), - [anon_sym_char] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_async] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_default] = 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_loop] = ACTIONS(1108), - [anon_sym_match] = ACTIONS(1108), - [anon_sym_mod] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_trait] = ACTIONS(1108), - [anon_sym_type] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_unsafe] = ACTIONS(1108), - [anon_sym_use] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1108), - [sym_super] = ACTIONS(1108), - [sym_crate] = ACTIONS(1108), - [sym_metavariable] = ACTIONS(1106), - [sym_raw_string_literal] = ACTIONS(1106), - [sym_float_literal] = ACTIONS(1106), - [sym_block_comment] = ACTIONS(3), - }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_macro_rules_BANG] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_STAR] = 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_str] = ACTIONS(1112), - [anon_sym_char] = ACTIONS(1112), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_default] = 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_loop] = ACTIONS(1112), - [anon_sym_match] = ACTIONS(1112), - [anon_sym_mod] = ACTIONS(1112), - [anon_sym_pub] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_trait] = ACTIONS(1112), - [anon_sym_type] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_unsafe] = ACTIONS(1112), - [anon_sym_use] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_LT] = ACTIONS(1110), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1112), - [sym_super] = ACTIONS(1112), - [sym_crate] = ACTIONS(1112), - [sym_metavariable] = ACTIONS(1110), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1116), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_macro_rules_BANG] = ACTIONS(1114), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_STAR] = 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_str] = ACTIONS(1116), - [anon_sym_char] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_default] = 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_loop] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_mod] = ACTIONS(1116), - [anon_sym_pub] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_trait] = ACTIONS(1116), - [anon_sym_type] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_unsafe] = ACTIONS(1116), - [anon_sym_use] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_POUND] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1114), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1116), - [sym_super] = ACTIONS(1116), - [sym_crate] = ACTIONS(1116), - [sym_metavariable] = ACTIONS(1114), - [sym_raw_string_literal] = ACTIONS(1114), - [sym_float_literal] = ACTIONS(1114), - [sym_block_comment] = ACTIONS(3), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_macro_rules_BANG] = ACTIONS(1118), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_STAR] = 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_str] = ACTIONS(1120), - [anon_sym_char] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_async] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_default] = 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_loop] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1120), - [anon_sym_mod] = ACTIONS(1120), - [anon_sym_pub] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_trait] = ACTIONS(1120), - [anon_sym_type] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_unsafe] = ACTIONS(1120), - [anon_sym_use] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_POUND] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1120), - [sym_super] = ACTIONS(1120), - [sym_crate] = ACTIONS(1120), - [sym_metavariable] = ACTIONS(1118), - [sym_raw_string_literal] = ACTIONS(1118), - [sym_float_literal] = ACTIONS(1118), - [sym_block_comment] = ACTIONS(3), - }, - [254] = { [ts_builtin_sym_end] = ACTIONS(1122), [sym_identifier] = ACTIONS(1124), [anon_sym_SEMI] = ACTIONS(1122), @@ -40153,7 +42033,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1122), [anon_sym_RBRACE] = ACTIONS(1122), [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_QMARK] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_SLASH] = ACTIONS(1124), + [anon_sym_PERCENT] = ACTIONS(1124), + [anon_sym_CARET] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS_EQ] = ACTIONS(1122), + [anon_sym_DASH_EQ] = ACTIONS(1122), + [anon_sym_STAR_EQ] = ACTIONS(1122), + [anon_sym_SLASH_EQ] = ACTIONS(1122), + [anon_sym_PERCENT_EQ] = ACTIONS(1122), + [anon_sym_CARET_EQ] = ACTIONS(1122), + [anon_sym_AMP_EQ] = ACTIONS(1122), + [anon_sym_PIPE_EQ] = ACTIONS(1122), + [anon_sym_LT_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_GT_EQ] = ACTIONS(1122), + [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_EQ_EQ] = ACTIONS(1122), + [anon_sym_BANG_EQ] = ACTIONS(1122), + [anon_sym_GT] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1124), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1124), + [anon_sym_DOT_DOT] = ACTIONS(1124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1122), + [anon_sym_COLON_COLON] = ACTIONS(1122), + [anon_sym_POUND] = ACTIONS(1122), [anon_sym_u8] = ACTIONS(1124), [anon_sym_i8] = ACTIONS(1124), [anon_sym_u16] = ACTIONS(1124), @@ -40172,6 +42088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1124), [anon_sym_char] = ACTIONS(1124), [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_as] = ACTIONS(1124), [anon_sym_async] = ACTIONS(1124), [anon_sym_break] = ACTIONS(1124), [anon_sym_const] = ACTIONS(1124), @@ -40196,15 +42113,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1124), [anon_sym_use] = ACTIONS(1124), [anon_sym_while] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), [anon_sym_extern] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_COLON_COLON] = 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), @@ -40220,7 +42130,961 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1122), [sym_block_comment] = ACTIONS(3), }, - [255] = { + [232] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [236] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [237] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [241] = { [ts_builtin_sym_end] = ACTIONS(1126), [sym_identifier] = ACTIONS(1128), [anon_sym_SEMI] = ACTIONS(1126), @@ -40229,7 +43093,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1126), [anon_sym_RBRACE] = ACTIONS(1126), [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_SLASH] = ACTIONS(1128), + [anon_sym_PERCENT] = ACTIONS(1128), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1128), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_PLUS_EQ] = ACTIONS(1126), + [anon_sym_DASH_EQ] = ACTIONS(1126), + [anon_sym_STAR_EQ] = ACTIONS(1126), + [anon_sym_SLASH_EQ] = ACTIONS(1126), + [anon_sym_PERCENT_EQ] = ACTIONS(1126), + [anon_sym_CARET_EQ] = ACTIONS(1126), + [anon_sym_AMP_EQ] = ACTIONS(1126), + [anon_sym_PIPE_EQ] = ACTIONS(1126), + [anon_sym_LT_LT_EQ] = ACTIONS(1126), + [anon_sym_GT_GT_EQ] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(1126), + [anon_sym_BANG_EQ] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1128), + [anon_sym_GT_EQ] = ACTIONS(1126), + [anon_sym_LT_EQ] = ACTIONS(1126), + [anon_sym_DOT] = ACTIONS(1128), + [anon_sym_DOT_DOT] = ACTIONS(1128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1126), + [anon_sym_COLON_COLON] = ACTIONS(1126), + [anon_sym_POUND] = ACTIONS(1126), [anon_sym_u8] = ACTIONS(1128), [anon_sym_i8] = ACTIONS(1128), [anon_sym_u16] = ACTIONS(1128), @@ -40248,6 +43148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1128), [anon_sym_char] = ACTIONS(1128), [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_as] = ACTIONS(1128), [anon_sym_async] = ACTIONS(1128), [anon_sym_break] = ACTIONS(1128), [anon_sym_const] = ACTIONS(1128), @@ -40272,15 +43173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1128), [anon_sym_use] = ACTIONS(1128), [anon_sym_while] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_COLON_COLON] = 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), @@ -40296,7 +43190,2021 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1126), [sym_block_comment] = ACTIONS(3), }, + [242] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1571), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [243] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(391), + [sym_if_let_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_while_let_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3044), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_loop] = ACTIONS(1114), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [245] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1605), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [246] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1606), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [247] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1576), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [248] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [249] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1611), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [251] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [252] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [253] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1512), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [254] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [255] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1493), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [256] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1599), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [257] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1557), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [258] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1554), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [259] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1550), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [260] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1413), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [261] = { [ts_builtin_sym_end] = ACTIONS(1130), [sym_identifier] = ACTIONS(1132), [anon_sym_SEMI] = ACTIONS(1130), @@ -40305,7 +45213,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1130), [anon_sym_RBRACE] = ACTIONS(1130), [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_PERCENT] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_DOT_DOT] = ACTIONS(1132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_POUND] = ACTIONS(1130), [anon_sym_u8] = ACTIONS(1132), [anon_sym_i8] = ACTIONS(1132), [anon_sym_u16] = ACTIONS(1132), @@ -40324,6 +45268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1132), [anon_sym_char] = ACTIONS(1132), [anon_sym_SQUOTE] = ACTIONS(1132), + [anon_sym_as] = ACTIONS(1132), [anon_sym_async] = ACTIONS(1132), [anon_sym_break] = ACTIONS(1132), [anon_sym_const] = ACTIONS(1132), @@ -40348,15 +45293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1132), [anon_sym_use] = ACTIONS(1132), [anon_sym_while] = ACTIONS(1132), - [anon_sym_POUND] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), [anon_sym_extern] = ACTIONS(1132), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_COLON_COLON] = 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), @@ -40372,7 +45310,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1130), [sym_block_comment] = ACTIONS(3), }, - [257] = { + [262] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1549), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [263] = { [ts_builtin_sym_end] = ACTIONS(1134), [sym_identifier] = ACTIONS(1136), [anon_sym_SEMI] = ACTIONS(1134), @@ -40381,7 +45425,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1134), [anon_sym_RBRACE] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_AMP_AMP] = ACTIONS(1134), + [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [anon_sym_LT_LT] = ACTIONS(1136), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_PLUS_EQ] = ACTIONS(1134), + [anon_sym_DASH_EQ] = ACTIONS(1134), + [anon_sym_STAR_EQ] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1134), + [anon_sym_PERCENT_EQ] = ACTIONS(1134), + [anon_sym_CARET_EQ] = ACTIONS(1134), + [anon_sym_AMP_EQ] = ACTIONS(1134), + [anon_sym_PIPE_EQ] = ACTIONS(1134), + [anon_sym_LT_LT_EQ] = ACTIONS(1134), + [anon_sym_GT_GT_EQ] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1136), + [anon_sym_EQ_EQ] = ACTIONS(1134), + [anon_sym_BANG_EQ] = ACTIONS(1134), + [anon_sym_GT] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_GT_EQ] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1134), + [anon_sym_DOT] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1134), + [anon_sym_COLON_COLON] = ACTIONS(1134), + [anon_sym_POUND] = ACTIONS(1134), [anon_sym_u8] = ACTIONS(1136), [anon_sym_i8] = ACTIONS(1136), [anon_sym_u16] = ACTIONS(1136), @@ -40400,6 +45480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1136), [anon_sym_char] = ACTIONS(1136), [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_as] = ACTIONS(1136), [anon_sym_async] = ACTIONS(1136), [anon_sym_break] = ACTIONS(1136), [anon_sym_const] = ACTIONS(1136), @@ -40424,15 +45505,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1136), [anon_sym_use] = ACTIONS(1136), [anon_sym_while] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), [anon_sym_extern] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_COLON_COLON] = 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), @@ -40448,7 +45522,1173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1134), [sym_block_comment] = ACTIONS(3), }, - [258] = { + [264] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1548), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [265] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1547), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [266] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [267] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1546), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [268] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [269] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [270] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1435), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [271] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1617), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [272] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [273] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [274] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [275] = { [ts_builtin_sym_end] = ACTIONS(1138), [sym_identifier] = ACTIONS(1140), [anon_sym_SEMI] = ACTIONS(1138), @@ -40457,7 +46697,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1138), [anon_sym_RBRACE] = ACTIONS(1138), [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_QMARK] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_SLASH] = ACTIONS(1140), + [anon_sym_PERCENT] = ACTIONS(1140), + [anon_sym_CARET] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1140), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_PLUS_EQ] = ACTIONS(1138), + [anon_sym_DASH_EQ] = ACTIONS(1138), + [anon_sym_STAR_EQ] = ACTIONS(1138), + [anon_sym_SLASH_EQ] = ACTIONS(1138), + [anon_sym_PERCENT_EQ] = ACTIONS(1138), + [anon_sym_CARET_EQ] = ACTIONS(1138), + [anon_sym_AMP_EQ] = ACTIONS(1138), + [anon_sym_PIPE_EQ] = ACTIONS(1138), + [anon_sym_LT_LT_EQ] = ACTIONS(1138), + [anon_sym_GT_GT_EQ] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1140), + [anon_sym_EQ_EQ] = ACTIONS(1138), + [anon_sym_BANG_EQ] = ACTIONS(1138), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_GT_EQ] = ACTIONS(1138), + [anon_sym_LT_EQ] = ACTIONS(1138), + [anon_sym_DOT] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1138), + [anon_sym_COLON_COLON] = ACTIONS(1138), + [anon_sym_POUND] = ACTIONS(1138), [anon_sym_u8] = ACTIONS(1140), [anon_sym_i8] = ACTIONS(1140), [anon_sym_u16] = ACTIONS(1140), @@ -40476,6 +46752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1140), [anon_sym_char] = ACTIONS(1140), [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_as] = ACTIONS(1140), [anon_sym_async] = ACTIONS(1140), [anon_sym_break] = ACTIONS(1140), [anon_sym_const] = ACTIONS(1140), @@ -40500,15 +46777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1140), [anon_sym_use] = ACTIONS(1140), [anon_sym_while] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), [anon_sym_extern] = ACTIONS(1140), - [anon_sym_LT] = ACTIONS(1138), - [anon_sym_COLON_COLON] = 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), @@ -40524,7 +46794,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1138), [sym_block_comment] = ACTIONS(3), }, - [259] = { + [276] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [278] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1491), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(392), + [sym_if_let_expression] = STATE(392), + [sym_match_expression] = STATE(392), + [sym_while_expression] = STATE(392), + [sym_while_let_expression] = STATE(392), + [sym_loop_expression] = STATE(392), + [sym_for_expression] = STATE(392), + [sym_const_block] = STATE(392), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3044), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(392), + [sym_async_block] = STATE(392), + [sym_block] = STATE(392), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_loop] = ACTIONS(1114), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [279] = { [ts_builtin_sym_end] = ACTIONS(1142), [sym_identifier] = ACTIONS(1144), [anon_sym_SEMI] = ACTIONS(1142), @@ -40533,7 +47121,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1142), [anon_sym_RBRACE] = ACTIONS(1142), [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_SLASH] = ACTIONS(1144), + [anon_sym_PERCENT] = ACTIONS(1144), + [anon_sym_CARET] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1144), + [anon_sym_AMP_AMP] = ACTIONS(1142), + [anon_sym_PIPE_PIPE] = ACTIONS(1142), + [anon_sym_LT_LT] = ACTIONS(1144), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_PLUS_EQ] = ACTIONS(1142), + [anon_sym_DASH_EQ] = ACTIONS(1142), + [anon_sym_STAR_EQ] = ACTIONS(1142), + [anon_sym_SLASH_EQ] = ACTIONS(1142), + [anon_sym_PERCENT_EQ] = ACTIONS(1142), + [anon_sym_CARET_EQ] = ACTIONS(1142), + [anon_sym_AMP_EQ] = ACTIONS(1142), + [anon_sym_PIPE_EQ] = ACTIONS(1142), + [anon_sym_LT_LT_EQ] = ACTIONS(1142), + [anon_sym_GT_GT_EQ] = ACTIONS(1142), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_EQ_EQ] = ACTIONS(1142), + [anon_sym_BANG_EQ] = ACTIONS(1142), + [anon_sym_GT] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_GT_EQ] = ACTIONS(1142), + [anon_sym_LT_EQ] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(1144), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(1142), + [anon_sym_POUND] = ACTIONS(1142), [anon_sym_u8] = ACTIONS(1144), [anon_sym_i8] = ACTIONS(1144), [anon_sym_u16] = ACTIONS(1144), @@ -40552,6 +47176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1144), [anon_sym_char] = ACTIONS(1144), [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_as] = ACTIONS(1144), [anon_sym_async] = ACTIONS(1144), [anon_sym_break] = ACTIONS(1144), [anon_sym_const] = ACTIONS(1144), @@ -40576,15 +47201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1144), [anon_sym_use] = ACTIONS(1144), [anon_sym_while] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1142), [anon_sym_extern] = ACTIONS(1144), - [anon_sym_LT] = ACTIONS(1142), - [anon_sym_COLON_COLON] = 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), @@ -40600,16 +47218,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1142), [sym_block_comment] = ACTIONS(3), }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_macro_rules_BANG] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_RBRACE] = ACTIONS(1146), + [280] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1426), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [281] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [282] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1467), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_macro_rules_BANG] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_PERCENT] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(1148), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1146), + [anon_sym_DASH_EQ] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1146), + [anon_sym_SLASH_EQ] = ACTIONS(1146), + [anon_sym_PERCENT_EQ] = ACTIONS(1146), + [anon_sym_CARET_EQ] = ACTIONS(1146), + [anon_sym_AMP_EQ] = ACTIONS(1146), + [anon_sym_PIPE_EQ] = ACTIONS(1146), + [anon_sym_LT_LT_EQ] = ACTIONS(1146), + [anon_sym_GT_GT_EQ] = ACTIONS(1146), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_EQ_EQ] = ACTIONS(1146), + [anon_sym_BANG_EQ] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_GT_EQ] = ACTIONS(1146), + [anon_sym_LT_EQ] = ACTIONS(1146), + [anon_sym_DOT] = ACTIONS(1148), + [anon_sym_DOT_DOT] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1146), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym_POUND] = ACTIONS(1146), [anon_sym_u8] = ACTIONS(1148), [anon_sym_i8] = ACTIONS(1148), [anon_sym_u16] = ACTIONS(1148), @@ -40628,6 +47600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1148), [anon_sym_char] = ACTIONS(1148), [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_as] = ACTIONS(1148), [anon_sym_async] = ACTIONS(1148), [anon_sym_break] = ACTIONS(1148), [anon_sym_const] = ACTIONS(1148), @@ -40652,15 +47625,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1148), [anon_sym_use] = ACTIONS(1148), [anon_sym_while] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), [anon_sym_extern] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_COLON_COLON] = 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), @@ -40676,7 +47642,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1146), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [284] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1608), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [285] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [286] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1603), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [287] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1630), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [288] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1415), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [289] = { [ts_builtin_sym_end] = ACTIONS(1150), [sym_identifier] = ACTIONS(1152), [anon_sym_SEMI] = ACTIONS(1150), @@ -40685,7 +48181,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1150), [anon_sym_RBRACE] = ACTIONS(1150), [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_QMARK] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1152), + [anon_sym_PERCENT] = ACTIONS(1152), + [anon_sym_CARET] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_LT_LT] = ACTIONS(1152), + [anon_sym_GT_GT] = ACTIONS(1152), + [anon_sym_PLUS_EQ] = ACTIONS(1150), + [anon_sym_DASH_EQ] = ACTIONS(1150), + [anon_sym_STAR_EQ] = ACTIONS(1150), + [anon_sym_SLASH_EQ] = ACTIONS(1150), + [anon_sym_PERCENT_EQ] = ACTIONS(1150), + [anon_sym_CARET_EQ] = ACTIONS(1150), + [anon_sym_AMP_EQ] = ACTIONS(1150), + [anon_sym_PIPE_EQ] = ACTIONS(1150), + [anon_sym_LT_LT_EQ] = ACTIONS(1150), + [anon_sym_GT_GT_EQ] = ACTIONS(1150), + [anon_sym_EQ] = ACTIONS(1152), + [anon_sym_EQ_EQ] = ACTIONS(1150), + [anon_sym_BANG_EQ] = ACTIONS(1150), + [anon_sym_GT] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_GT_EQ] = ACTIONS(1150), + [anon_sym_LT_EQ] = ACTIONS(1150), + [anon_sym_DOT] = ACTIONS(1152), + [anon_sym_DOT_DOT] = ACTIONS(1152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1150), + [anon_sym_COLON_COLON] = ACTIONS(1150), + [anon_sym_POUND] = ACTIONS(1150), [anon_sym_u8] = ACTIONS(1152), [anon_sym_i8] = ACTIONS(1152), [anon_sym_u16] = ACTIONS(1152), @@ -40704,6 +48236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1152), [anon_sym_char] = ACTIONS(1152), [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_as] = ACTIONS(1152), [anon_sym_async] = ACTIONS(1152), [anon_sym_break] = ACTIONS(1152), [anon_sym_const] = ACTIONS(1152), @@ -40728,15 +48261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1152), [anon_sym_use] = ACTIONS(1152), [anon_sym_while] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), [anon_sym_extern] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_COLON_COLON] = 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), @@ -40752,7 +48278,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1150), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [290] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1634), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [291] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1615), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [292] = { + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_macro_rules_BANG] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(828), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_PLUS_EQ] = ACTIONS(828), + [anon_sym_DASH_EQ] = ACTIONS(828), + [anon_sym_STAR_EQ] = ACTIONS(828), + [anon_sym_SLASH_EQ] = ACTIONS(828), + [anon_sym_PERCENT_EQ] = ACTIONS(828), + [anon_sym_CARET_EQ] = ACTIONS(828), + [anon_sym_AMP_EQ] = ACTIONS(828), + [anon_sym_PIPE_EQ] = ACTIONS(828), + [anon_sym_LT_LT_EQ] = ACTIONS(828), + [anon_sym_GT_GT_EQ] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(828), + [anon_sym_POUND] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(826), + [anon_sym_i8] = ACTIONS(826), + [anon_sym_u16] = ACTIONS(826), + [anon_sym_i16] = ACTIONS(826), + [anon_sym_u32] = ACTIONS(826), + [anon_sym_i32] = ACTIONS(826), + [anon_sym_u64] = ACTIONS(826), + [anon_sym_i64] = ACTIONS(826), + [anon_sym_u128] = ACTIONS(826), + [anon_sym_i128] = ACTIONS(826), + [anon_sym_isize] = ACTIONS(826), + [anon_sym_usize] = ACTIONS(826), + [anon_sym_f32] = ACTIONS(826), + [anon_sym_f64] = ACTIONS(826), + [anon_sym_bool] = ACTIONS(826), + [anon_sym_str] = ACTIONS(826), + [anon_sym_char] = ACTIONS(826), + [anon_sym_SQUOTE] = ACTIONS(826), + [anon_sym_as] = ACTIONS(826), + [anon_sym_async] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_default] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_fn] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_impl] = ACTIONS(826), + [anon_sym_let] = ACTIONS(826), + [anon_sym_loop] = ACTIONS(826), + [anon_sym_match] = ACTIONS(826), + [anon_sym_mod] = ACTIONS(826), + [anon_sym_pub] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_struct] = ACTIONS(826), + [anon_sym_trait] = ACTIONS(826), + [anon_sym_type] = ACTIONS(826), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsafe] = ACTIONS(826), + [anon_sym_use] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(826), + [anon_sym_move] = ACTIONS(826), + [sym_integer_literal] = ACTIONS(828), + [aux_sym_string_literal_token1] = ACTIONS(828), + [sym_char_literal] = ACTIONS(828), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(826), + [sym_super] = ACTIONS(826), + [sym_crate] = ACTIONS(826), + [sym_metavariable] = ACTIONS(828), + [sym_raw_string_literal] = ACTIONS(828), + [sym_float_literal] = ACTIONS(828), + [sym_block_comment] = ACTIONS(3), + }, + [293] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1423), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [294] = { [ts_builtin_sym_end] = ACTIONS(1154), [sym_identifier] = ACTIONS(1156), [anon_sym_SEMI] = ACTIONS(1154), @@ -40761,7 +48711,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1154), [anon_sym_RBRACE] = ACTIONS(1154), [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_QMARK] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_PERCENT] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE_PIPE] = ACTIONS(1154), + [anon_sym_LT_LT] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_PLUS_EQ] = ACTIONS(1154), + [anon_sym_DASH_EQ] = ACTIONS(1154), + [anon_sym_STAR_EQ] = ACTIONS(1154), + [anon_sym_SLASH_EQ] = ACTIONS(1154), + [anon_sym_PERCENT_EQ] = ACTIONS(1154), + [anon_sym_CARET_EQ] = ACTIONS(1154), + [anon_sym_AMP_EQ] = ACTIONS(1154), + [anon_sym_PIPE_EQ] = ACTIONS(1154), + [anon_sym_LT_LT_EQ] = ACTIONS(1154), + [anon_sym_GT_GT_EQ] = ACTIONS(1154), + [anon_sym_EQ] = ACTIONS(1156), + [anon_sym_EQ_EQ] = ACTIONS(1154), + [anon_sym_BANG_EQ] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_GT_EQ] = ACTIONS(1154), + [anon_sym_LT_EQ] = ACTIONS(1154), + [anon_sym_DOT] = ACTIONS(1156), + [anon_sym_DOT_DOT] = ACTIONS(1156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), + [anon_sym_COLON_COLON] = ACTIONS(1154), + [anon_sym_POUND] = ACTIONS(1154), [anon_sym_u8] = ACTIONS(1156), [anon_sym_i8] = ACTIONS(1156), [anon_sym_u16] = ACTIONS(1156), @@ -40780,6 +48766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1156), [anon_sym_char] = ACTIONS(1156), [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_as] = ACTIONS(1156), [anon_sym_async] = ACTIONS(1156), [anon_sym_break] = ACTIONS(1156), [anon_sym_const] = ACTIONS(1156), @@ -40804,15 +48791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1156), [anon_sym_use] = ACTIONS(1156), [anon_sym_while] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), [anon_sym_extern] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1154), - [anon_sym_COLON_COLON] = 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), @@ -40828,7 +48808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1154), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [295] = { [ts_builtin_sym_end] = ACTIONS(1158), [sym_identifier] = ACTIONS(1160), [anon_sym_SEMI] = ACTIONS(1158), @@ -40837,7 +48817,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1158), [anon_sym_RBRACE] = ACTIONS(1158), [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_SLASH] = ACTIONS(1162), + [anon_sym_PERCENT] = ACTIONS(1162), + [anon_sym_CARET] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_PLUS_EQ] = ACTIONS(1164), + [anon_sym_DASH_EQ] = ACTIONS(1164), + [anon_sym_STAR_EQ] = ACTIONS(1164), + [anon_sym_SLASH_EQ] = ACTIONS(1164), + [anon_sym_PERCENT_EQ] = ACTIONS(1164), + [anon_sym_CARET_EQ] = ACTIONS(1164), + [anon_sym_AMP_EQ] = ACTIONS(1164), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_LT_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_GT_EQ] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1164), + [anon_sym_BANG_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1164), + [anon_sym_COLON_COLON] = ACTIONS(1158), + [anon_sym_POUND] = ACTIONS(1158), [anon_sym_u8] = ACTIONS(1160), [anon_sym_i8] = ACTIONS(1160), [anon_sym_u16] = ACTIONS(1160), @@ -40856,6 +48872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1160), [anon_sym_char] = ACTIONS(1160), [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_as] = ACTIONS(1162), [anon_sym_async] = ACTIONS(1160), [anon_sym_break] = ACTIONS(1160), [anon_sym_const] = ACTIONS(1160), @@ -40880,15 +48897,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1160), [anon_sym_use] = ACTIONS(1160), [anon_sym_while] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), [anon_sym_extern] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1158), - [anon_sym_COLON_COLON] = 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), @@ -40904,92 +48914,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1158), [sym_block_comment] = ACTIONS(3), }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_macro_rules_BANG] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_STAR] = 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_str] = ACTIONS(1164), - [anon_sym_char] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_default] = 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_loop] = ACTIONS(1164), - [anon_sym_match] = ACTIONS(1164), - [anon_sym_mod] = ACTIONS(1164), - [anon_sym_pub] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_trait] = ACTIONS(1164), - [anon_sym_type] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_unsafe] = ACTIONS(1164), - [anon_sym_use] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1162), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1164), - [sym_super] = ACTIONS(1164), - [sym_crate] = ACTIONS(1164), - [sym_metavariable] = ACTIONS(1162), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), - }, - [265] = { + [296] = { [ts_builtin_sym_end] = ACTIONS(1166), [sym_identifier] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1164), [anon_sym_macro_rules_BANG] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_SLASH] = ACTIONS(1162), + [anon_sym_PERCENT] = ACTIONS(1162), + [anon_sym_CARET] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_PLUS_EQ] = ACTIONS(1164), + [anon_sym_DASH_EQ] = ACTIONS(1164), + [anon_sym_STAR_EQ] = ACTIONS(1164), + [anon_sym_SLASH_EQ] = ACTIONS(1164), + [anon_sym_PERCENT_EQ] = ACTIONS(1164), + [anon_sym_CARET_EQ] = ACTIONS(1164), + [anon_sym_AMP_EQ] = ACTIONS(1164), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_LT_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_GT_EQ] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1164), + [anon_sym_BANG_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1164), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_POUND] = ACTIONS(1166), [anon_sym_u8] = ACTIONS(1168), [anon_sym_i8] = ACTIONS(1168), [anon_sym_u16] = ACTIONS(1168), @@ -41008,6 +48978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1168), [anon_sym_char] = ACTIONS(1168), [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_as] = ACTIONS(1162), [anon_sym_async] = ACTIONS(1168), [anon_sym_break] = ACTIONS(1168), [anon_sym_const] = ACTIONS(1168), @@ -41032,15 +49003,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1168), [anon_sym_use] = ACTIONS(1168), [anon_sym_while] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), [anon_sym_extern] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_COLON_COLON] = 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), @@ -41056,7 +49020,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1166), [sym_block_comment] = ACTIONS(3), }, - [266] = { + [297] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1457), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [298] = { [ts_builtin_sym_end] = ACTIONS(1170), [sym_identifier] = ACTIONS(1172), [anon_sym_SEMI] = ACTIONS(1170), @@ -41065,7 +49135,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1170), [anon_sym_RBRACE] = ACTIONS(1170), [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_SLASH] = ACTIONS(1172), + [anon_sym_PERCENT] = ACTIONS(1172), + [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1170), + [anon_sym_LT_LT] = ACTIONS(1172), + [anon_sym_GT_GT] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1170), + [anon_sym_DASH_EQ] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1170), + [anon_sym_SLASH_EQ] = ACTIONS(1170), + [anon_sym_PERCENT_EQ] = ACTIONS(1170), + [anon_sym_CARET_EQ] = ACTIONS(1170), + [anon_sym_AMP_EQ] = ACTIONS(1170), + [anon_sym_PIPE_EQ] = ACTIONS(1170), + [anon_sym_LT_LT_EQ] = ACTIONS(1170), + [anon_sym_GT_GT_EQ] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1172), + [anon_sym_EQ_EQ] = ACTIONS(1170), + [anon_sym_BANG_EQ] = ACTIONS(1170), + [anon_sym_GT] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1172), + [anon_sym_GT_EQ] = ACTIONS(1170), + [anon_sym_LT_EQ] = ACTIONS(1170), + [anon_sym_DOT] = ACTIONS(1172), + [anon_sym_DOT_DOT] = ACTIONS(1172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1170), + [anon_sym_POUND] = ACTIONS(1170), [anon_sym_u8] = ACTIONS(1172), [anon_sym_i8] = ACTIONS(1172), [anon_sym_u16] = ACTIONS(1172), @@ -41084,6 +49190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1172), [anon_sym_char] = ACTIONS(1172), [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_as] = ACTIONS(1172), [anon_sym_async] = ACTIONS(1172), [anon_sym_break] = ACTIONS(1172), [anon_sym_const] = ACTIONS(1172), @@ -41108,15 +49215,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1172), [anon_sym_use] = ACTIONS(1172), [anon_sym_while] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), [anon_sym_extern] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_COLON_COLON] = 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), @@ -41132,7 +49232,749 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1170), [sym_block_comment] = ACTIONS(3), }, - [267] = { + [299] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [300] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [301] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1591), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [302] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1418), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [303] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1570), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [304] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1598), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [305] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [306] = { [ts_builtin_sym_end] = ACTIONS(1174), [sym_identifier] = ACTIONS(1176), [anon_sym_SEMI] = ACTIONS(1174), @@ -41141,7 +49983,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1174), [anon_sym_RBRACE] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_QMARK] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_PERCENT] = ACTIONS(1176), + [anon_sym_CARET] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1174), + [anon_sym_LT_LT] = ACTIONS(1176), + [anon_sym_GT_GT] = ACTIONS(1176), + [anon_sym_PLUS_EQ] = ACTIONS(1174), + [anon_sym_DASH_EQ] = ACTIONS(1174), + [anon_sym_STAR_EQ] = ACTIONS(1174), + [anon_sym_SLASH_EQ] = ACTIONS(1174), + [anon_sym_PERCENT_EQ] = ACTIONS(1174), + [anon_sym_CARET_EQ] = ACTIONS(1174), + [anon_sym_AMP_EQ] = ACTIONS(1174), + [anon_sym_PIPE_EQ] = ACTIONS(1174), + [anon_sym_LT_LT_EQ] = ACTIONS(1174), + [anon_sym_GT_GT_EQ] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_EQ_EQ] = ACTIONS(1174), + [anon_sym_BANG_EQ] = ACTIONS(1174), + [anon_sym_GT] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_GT_EQ] = ACTIONS(1174), + [anon_sym_LT_EQ] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(1174), [anon_sym_u8] = ACTIONS(1176), [anon_sym_i8] = ACTIONS(1176), [anon_sym_u16] = ACTIONS(1176), @@ -41160,6 +50038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1176), [anon_sym_char] = ACTIONS(1176), [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_as] = ACTIONS(1176), [anon_sym_async] = ACTIONS(1176), [anon_sym_break] = ACTIONS(1176), [anon_sym_const] = ACTIONS(1176), @@ -41184,15 +50063,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1176), [anon_sym_use] = ACTIONS(1176), [anon_sym_while] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), [anon_sym_extern] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1174), - [anon_sym_COLON_COLON] = 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), @@ -41208,7 +50080,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, - [268] = { + [307] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [308] = { [ts_builtin_sym_end] = ACTIONS(1178), [sym_identifier] = ACTIONS(1180), [anon_sym_SEMI] = ACTIONS(1178), @@ -41217,7 +50195,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1178), [anon_sym_RBRACE] = ACTIONS(1178), [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_QMARK] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(1180), + [anon_sym_PERCENT] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_LT_LT] = ACTIONS(1180), + [anon_sym_GT_GT] = ACTIONS(1180), + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_STAR_EQ] = ACTIONS(1178), + [anon_sym_SLASH_EQ] = ACTIONS(1178), + [anon_sym_PERCENT_EQ] = ACTIONS(1178), + [anon_sym_CARET_EQ] = ACTIONS(1178), + [anon_sym_AMP_EQ] = ACTIONS(1178), + [anon_sym_PIPE_EQ] = ACTIONS(1178), + [anon_sym_LT_LT_EQ] = ACTIONS(1178), + [anon_sym_GT_GT_EQ] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1180), + [anon_sym_EQ_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_DOT] = ACTIONS(1180), + [anon_sym_DOT_DOT] = ACTIONS(1180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1178), [anon_sym_u8] = ACTIONS(1180), [anon_sym_i8] = ACTIONS(1180), [anon_sym_u16] = ACTIONS(1180), @@ -41236,6 +50250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1180), [anon_sym_char] = ACTIONS(1180), [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_as] = ACTIONS(1180), [anon_sym_async] = ACTIONS(1180), [anon_sym_break] = ACTIONS(1180), [anon_sym_const] = ACTIONS(1180), @@ -41260,15 +50275,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1180), [anon_sym_use] = ACTIONS(1180), [anon_sym_while] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), [anon_sym_extern] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_COLON_COLON] = 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), @@ -41284,7 +50292,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, - [269] = { + [309] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1464), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [310] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [311] = { [ts_builtin_sym_end] = ACTIONS(1182), [sym_identifier] = ACTIONS(1184), [anon_sym_SEMI] = ACTIONS(1182), @@ -41293,7 +50513,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1182), [anon_sym_RBRACE] = ACTIONS(1182), [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_QMARK] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_SLASH] = ACTIONS(1184), + [anon_sym_PERCENT] = ACTIONS(1184), + [anon_sym_CARET] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_AMP_AMP] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_PLUS_EQ] = ACTIONS(1182), + [anon_sym_DASH_EQ] = ACTIONS(1182), + [anon_sym_STAR_EQ] = ACTIONS(1182), + [anon_sym_SLASH_EQ] = ACTIONS(1182), + [anon_sym_PERCENT_EQ] = ACTIONS(1182), + [anon_sym_CARET_EQ] = ACTIONS(1182), + [anon_sym_AMP_EQ] = ACTIONS(1182), + [anon_sym_PIPE_EQ] = ACTIONS(1182), + [anon_sym_LT_LT_EQ] = ACTIONS(1182), + [anon_sym_GT_GT_EQ] = ACTIONS(1182), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_BANG_EQ] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_GT_EQ] = ACTIONS(1182), + [anon_sym_LT_EQ] = ACTIONS(1182), + [anon_sym_DOT] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(1182), + [anon_sym_POUND] = ACTIONS(1182), [anon_sym_u8] = ACTIONS(1184), [anon_sym_i8] = ACTIONS(1184), [anon_sym_u16] = ACTIONS(1184), @@ -41312,6 +50568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1184), [anon_sym_char] = ACTIONS(1184), [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_as] = ACTIONS(1184), [anon_sym_async] = ACTIONS(1184), [anon_sym_break] = ACTIONS(1184), [anon_sym_const] = ACTIONS(1184), @@ -41336,15 +50593,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1184), [anon_sym_use] = ACTIONS(1184), [anon_sym_while] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), [anon_sym_extern] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1182), - [anon_sym_COLON_COLON] = 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), @@ -41360,7 +50610,1385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, - [270] = { + [312] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1614), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [313] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1522), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [314] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1597), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [315] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [316] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [317] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1492), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [318] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [319] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [320] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [321] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1542), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [322] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1410), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [323] = { + [sym_bracketed_type] = STATE(2985), + [sym_generic_function] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2309), + [sym__expression_except_range] = STATE(1362), + [sym__expression] = STATE(1510), + [sym_macro_invocation] = STATE(1362), + [sym_scoped_identifier] = STATE(1346), + [sym_scoped_type_identifier_in_expression_position] = STATE(2695), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1362), + [sym_try_expression] = STATE(1362), + [sym_reference_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_assignment_expression] = STATE(1362), + [sym_compound_assignment_expr] = STATE(1362), + [sym_type_cast_expression] = STATE(1362), + [sym_return_expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_call_expression] = STATE(1362), + [sym_array_expression] = STATE(1362), + [sym_parenthesized_expression] = STATE(1362), + [sym_tuple_expression] = STATE(1362), + [sym_unit_expression] = STATE(1362), + [sym_struct_expression] = STATE(1362), + [sym_if_expression] = STATE(1362), + [sym_if_let_expression] = STATE(1362), + [sym_match_expression] = STATE(1362), + [sym_while_expression] = STATE(1362), + [sym_while_let_expression] = STATE(1362), + [sym_loop_expression] = STATE(1362), + [sym_for_expression] = STATE(1362), + [sym_const_block] = STATE(1362), + [sym_closure_expression] = STATE(1362), + [sym_closure_parameters] = STATE(179), + [sym_loop_label] = STATE(3051), + [sym_break_expression] = STATE(1362), + [sym_continue_expression] = STATE(1362), + [sym_index_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_field_expression] = STATE(1385), + [sym_unsafe_block] = STATE(1362), + [sym_async_block] = STATE(1362), + [sym_block] = STATE(1362), + [sym__literal] = STATE(1362), + [sym_string_literal] = STATE(1401), + [sym_boolean_literal] = STATE(1401), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u128] = ACTIONS(354), + [anon_sym_i128] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_str] = ACTIONS(354), + [anon_sym_char] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(358), + [anon_sym_const] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_default] = ACTIONS(364), + [anon_sym_for] = ACTIONS(366), + [anon_sym_if] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(370), + [anon_sym_match] = ACTIONS(372), + [anon_sym_return] = ACTIONS(374), + [anon_sym_union] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(376), + [anon_sym_while] = ACTIONS(378), + [anon_sym_yield] = ACTIONS(380), + [anon_sym_move] = ACTIONS(382), + [sym_integer_literal] = ACTIONS(384), + [aux_sym_string_literal_token1] = ACTIONS(386), + [sym_char_literal] = ACTIONS(384), + [anon_sym_true] = ACTIONS(388), + [anon_sym_false] = ACTIONS(388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(390), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(384), + [sym_float_literal] = ACTIONS(384), + [sym_block_comment] = ACTIONS(3), + }, + [324] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [325] = { [ts_builtin_sym_end] = ACTIONS(1186), [sym_identifier] = ACTIONS(1188), [anon_sym_SEMI] = ACTIONS(1186), @@ -41369,7 +51997,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1186), [anon_sym_RBRACE] = ACTIONS(1186), [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_QMARK] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_SLASH] = ACTIONS(1188), + [anon_sym_PERCENT] = ACTIONS(1188), + [anon_sym_CARET] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_AMP_AMP] = ACTIONS(1186), + [anon_sym_PIPE_PIPE] = ACTIONS(1186), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_PLUS_EQ] = ACTIONS(1186), + [anon_sym_DASH_EQ] = ACTIONS(1186), + [anon_sym_STAR_EQ] = ACTIONS(1186), + [anon_sym_SLASH_EQ] = ACTIONS(1186), + [anon_sym_PERCENT_EQ] = ACTIONS(1186), + [anon_sym_CARET_EQ] = ACTIONS(1186), + [anon_sym_AMP_EQ] = ACTIONS(1186), + [anon_sym_PIPE_EQ] = ACTIONS(1186), + [anon_sym_LT_LT_EQ] = ACTIONS(1186), + [anon_sym_GT_GT_EQ] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1186), + [anon_sym_BANG_EQ] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1186), + [anon_sym_DOT] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), + [anon_sym_COLON_COLON] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1186), [anon_sym_u8] = ACTIONS(1188), [anon_sym_i8] = ACTIONS(1188), [anon_sym_u16] = ACTIONS(1188), @@ -41388,6 +52052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1188), [anon_sym_char] = ACTIONS(1188), [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_as] = ACTIONS(1188), [anon_sym_async] = ACTIONS(1188), [anon_sym_break] = ACTIONS(1188), [anon_sym_const] = ACTIONS(1188), @@ -41412,15 +52077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1188), [anon_sym_use] = ACTIONS(1188), [anon_sym_while] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), [anon_sym_extern] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_COLON_COLON] = 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), @@ -41436,10799 +52094,11078 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1186), [sym_block_comment] = ACTIONS(3), }, - [271] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [326] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1450), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_macro_rules_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_STAR] = 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_str] = ACTIONS(1212), - [anon_sym_char] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_default] = 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_loop] = ACTIONS(1212), - [anon_sym_match] = ACTIONS(1212), - [anon_sym_mod] = ACTIONS(1212), - [anon_sym_pub] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_trait] = ACTIONS(1212), - [anon_sym_type] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_unsafe] = ACTIONS(1212), - [anon_sym_use] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_POUND] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1212), - [sym_super] = ACTIONS(1212), - [sym_crate] = ACTIONS(1212), - [sym_metavariable] = ACTIONS(1210), - [sym_raw_string_literal] = ACTIONS(1210), - [sym_float_literal] = ACTIONS(1210), + [327] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1480), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [273] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [328] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1520), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(393), - [sym_identifier] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_macro_rules_BANG] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(395), - [anon_sym_i8] = ACTIONS(395), - [anon_sym_u16] = ACTIONS(395), - [anon_sym_i16] = ACTIONS(395), - [anon_sym_u32] = ACTIONS(395), - [anon_sym_i32] = ACTIONS(395), - [anon_sym_u64] = ACTIONS(395), - [anon_sym_i64] = ACTIONS(395), - [anon_sym_u128] = ACTIONS(395), - [anon_sym_i128] = ACTIONS(395), - [anon_sym_isize] = ACTIONS(395), - [anon_sym_usize] = ACTIONS(395), - [anon_sym_f32] = ACTIONS(395), - [anon_sym_f64] = ACTIONS(395), - [anon_sym_bool] = ACTIONS(395), - [anon_sym_str] = ACTIONS(395), - [anon_sym_char] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_async] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_const] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_default] = ACTIONS(395), - [anon_sym_enum] = ACTIONS(395), - [anon_sym_fn] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_impl] = ACTIONS(395), - [anon_sym_let] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(395), - [anon_sym_match] = ACTIONS(395), - [anon_sym_mod] = ACTIONS(395), - [anon_sym_pub] = ACTIONS(395), - [anon_sym_return] = ACTIONS(395), - [anon_sym_static] = ACTIONS(395), - [anon_sym_struct] = ACTIONS(395), - [anon_sym_trait] = ACTIONS(395), - [anon_sym_type] = ACTIONS(395), - [anon_sym_union] = ACTIONS(395), - [anon_sym_unsafe] = ACTIONS(395), - [anon_sym_use] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [anon_sym_POUND] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_extern] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_move] = ACTIONS(395), - [sym_integer_literal] = ACTIONS(393), - [aux_sym_string_literal_token1] = ACTIONS(393), - [sym_char_literal] = ACTIONS(393), - [anon_sym_true] = ACTIONS(395), - [anon_sym_false] = ACTIONS(395), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(395), - [sym_super] = ACTIONS(395), - [sym_crate] = ACTIONS(395), - [sym_metavariable] = ACTIONS(393), - [sym_raw_string_literal] = ACTIONS(393), - [sym_float_literal] = ACTIONS(393), + [329] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1518), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_macro_rules_BANG] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_STAR] = 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_str] = ACTIONS(1216), - [anon_sym_char] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_default] = 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_loop] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1216), - [anon_sym_mod] = ACTIONS(1216), - [anon_sym_pub] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_trait] = ACTIONS(1216), - [anon_sym_type] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_unsafe] = ACTIONS(1216), - [anon_sym_use] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_POUND] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1214), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1214), - [sym_raw_string_literal] = ACTIONS(1214), - [sym_float_literal] = ACTIONS(1214), + [330] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_macro_rules_BANG] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_STAR] = 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_str] = ACTIONS(1220), - [anon_sym_char] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_async] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_default] = 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_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1220), - [anon_sym_mod] = ACTIONS(1220), - [anon_sym_pub] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_trait] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_unsafe] = ACTIONS(1220), - [anon_sym_use] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1218), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1220), - [sym_super] = ACTIONS(1220), - [sym_crate] = ACTIONS(1220), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(1218), - [sym_float_literal] = ACTIONS(1218), + [331] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_macro_rules_BANG] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_STAR] = 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_str] = ACTIONS(1224), - [anon_sym_char] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_default] = 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_loop] = ACTIONS(1224), - [anon_sym_match] = ACTIONS(1224), - [anon_sym_mod] = ACTIONS(1224), - [anon_sym_pub] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_trait] = ACTIONS(1224), - [anon_sym_type] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_use] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_POUND] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1224), - [sym_super] = ACTIONS(1224), - [sym_crate] = ACTIONS(1224), - [sym_metavariable] = ACTIONS(1222), - [sym_raw_string_literal] = ACTIONS(1222), - [sym_float_literal] = ACTIONS(1222), + [332] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1635), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_macro_rules_BANG] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_const] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_fn] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_impl] = ACTIONS(399), - [anon_sym_let] = ACTIONS(399), - [anon_sym_loop] = ACTIONS(399), - [anon_sym_match] = ACTIONS(399), - [anon_sym_mod] = ACTIONS(399), - [anon_sym_pub] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_struct] = ACTIONS(399), - [anon_sym_trait] = ACTIONS(399), - [anon_sym_type] = ACTIONS(399), - [anon_sym_union] = ACTIONS(399), - [anon_sym_unsafe] = ACTIONS(399), - [anon_sym_use] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_move] = ACTIONS(399), - [sym_integer_literal] = ACTIONS(397), - [aux_sym_string_literal_token1] = ACTIONS(397), - [sym_char_literal] = ACTIONS(397), - [anon_sym_true] = ACTIONS(399), - [anon_sym_false] = ACTIONS(399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(399), - [sym_super] = ACTIONS(399), - [sym_crate] = ACTIONS(399), - [sym_metavariable] = ACTIONS(397), - [sym_raw_string_literal] = ACTIONS(397), - [sym_float_literal] = ACTIONS(397), + [333] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1613), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_macro_rules_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_STAR] = 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_str] = ACTIONS(1228), - [anon_sym_char] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_default] = 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_loop] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_pub] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_trait] = ACTIONS(1228), - [anon_sym_type] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_unsafe] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1226), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1228), - [sym_super] = ACTIONS(1228), - [sym_crate] = ACTIONS(1228), - [sym_metavariable] = ACTIONS(1226), - [sym_raw_string_literal] = ACTIONS(1226), - [sym_float_literal] = ACTIONS(1226), + [334] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2399), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1514), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1152), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(180), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(21), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(27), + [anon_sym_COLON_COLON] = ACTIONS(29), + [anon_sym_u8] = ACTIONS(33), + [anon_sym_i8] = ACTIONS(33), + [anon_sym_u16] = ACTIONS(33), + [anon_sym_i16] = ACTIONS(33), + [anon_sym_u32] = ACTIONS(33), + [anon_sym_i32] = ACTIONS(33), + [anon_sym_u64] = ACTIONS(33), + [anon_sym_i64] = ACTIONS(33), + [anon_sym_u128] = ACTIONS(33), + [anon_sym_i128] = ACTIONS(33), + [anon_sym_isize] = ACTIONS(33), + [anon_sym_usize] = ACTIONS(33), + [anon_sym_f32] = ACTIONS(33), + [anon_sym_f64] = ACTIONS(33), + [anon_sym_bool] = ACTIONS(33), + [anon_sym_str] = ACTIONS(33), + [anon_sym_char] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(300), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(67), + [anon_sym_union] = ACTIONS(300), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [335] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1449), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_macro_rules_BANG] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_STAR] = 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_str] = ACTIONS(1232), - [anon_sym_char] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_default] = 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_loop] = ACTIONS(1232), - [anon_sym_match] = ACTIONS(1232), - [anon_sym_mod] = ACTIONS(1232), - [anon_sym_pub] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_trait] = ACTIONS(1232), - [anon_sym_type] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_unsafe] = ACTIONS(1232), - [anon_sym_use] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1232), - [sym_super] = ACTIONS(1232), - [sym_crate] = ACTIONS(1232), - [sym_metavariable] = ACTIONS(1230), - [sym_raw_string_literal] = ACTIONS(1230), - [sym_float_literal] = ACTIONS(1230), + [336] = { + [sym_bracketed_type] = STATE(3039), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(2350), + [sym__expression_except_range] = STATE(1184), + [sym__expression] = STATE(1461), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier_in_expression_position] = STATE(2645), + [sym_range_expression] = STATE(1222), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_const_block] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(167), + [sym_loop_label] = STATE(3011), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(1143), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1231), + [sym_boolean_literal] = STATE(1231), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(296), + [anon_sym_break] = ACTIONS(414), + [anon_sym_const] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(416), + [anon_sym_for] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(306), + [anon_sym_match] = ACTIONS(308), + [anon_sym_return] = ACTIONS(418), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(310), + [anon_sym_while] = ACTIONS(312), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(389), - [sym_identifier] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_macro_rules_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(391), - [anon_sym_i8] = ACTIONS(391), - [anon_sym_u16] = ACTIONS(391), - [anon_sym_i16] = ACTIONS(391), - [anon_sym_u32] = ACTIONS(391), - [anon_sym_i32] = ACTIONS(391), - [anon_sym_u64] = ACTIONS(391), - [anon_sym_i64] = ACTIONS(391), - [anon_sym_u128] = ACTIONS(391), - [anon_sym_i128] = ACTIONS(391), - [anon_sym_isize] = ACTIONS(391), - [anon_sym_usize] = ACTIONS(391), - [anon_sym_f32] = ACTIONS(391), - [anon_sym_f64] = ACTIONS(391), - [anon_sym_bool] = ACTIONS(391), - [anon_sym_str] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(391), - [anon_sym_async] = ACTIONS(391), - [anon_sym_break] = ACTIONS(391), - [anon_sym_const] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_enum] = ACTIONS(391), - [anon_sym_fn] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_impl] = ACTIONS(391), - [anon_sym_let] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(391), - [anon_sym_match] = ACTIONS(391), - [anon_sym_mod] = ACTIONS(391), - [anon_sym_pub] = ACTIONS(391), - [anon_sym_return] = ACTIONS(391), - [anon_sym_static] = ACTIONS(391), - [anon_sym_struct] = ACTIONS(391), - [anon_sym_trait] = ACTIONS(391), - [anon_sym_type] = ACTIONS(391), - [anon_sym_union] = ACTIONS(391), - [anon_sym_unsafe] = ACTIONS(391), - [anon_sym_use] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_move] = ACTIONS(391), - [sym_integer_literal] = ACTIONS(389), - [aux_sym_string_literal_token1] = ACTIONS(389), - [sym_char_literal] = ACTIONS(389), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(391), - [sym_super] = ACTIONS(391), - [sym_crate] = ACTIONS(391), - [sym_metavariable] = ACTIONS(389), - [sym_raw_string_literal] = ACTIONS(389), - [sym_float_literal] = ACTIONS(389), + [337] = { + [sym_identifier] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_macro_rules_BANG] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_SLASH] = ACTIONS(1162), + [anon_sym_PERCENT] = ACTIONS(1162), + [anon_sym_CARET] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_PLUS_EQ] = ACTIONS(1164), + [anon_sym_DASH_EQ] = ACTIONS(1164), + [anon_sym_STAR_EQ] = ACTIONS(1164), + [anon_sym_SLASH_EQ] = ACTIONS(1164), + [anon_sym_PERCENT_EQ] = ACTIONS(1164), + [anon_sym_CARET_EQ] = ACTIONS(1164), + [anon_sym_AMP_EQ] = ACTIONS(1164), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_LT_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_GT_EQ] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1164), + [anon_sym_BANG_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1164), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_POUND] = 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_str] = ACTIONS(1168), + [anon_sym_char] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_as] = ACTIONS(1162), + [anon_sym_async] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_const] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_default] = 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_loop] = ACTIONS(1168), + [anon_sym_match] = ACTIONS(1168), + [anon_sym_mod] = ACTIONS(1168), + [anon_sym_pub] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_struct] = ACTIONS(1168), + [anon_sym_trait] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1168), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsafe] = ACTIONS(1168), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_extern] = ACTIONS(1168), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1168), + [sym_crate] = ACTIONS(1168), + [sym_metavariable] = ACTIONS(1166), + [sym_raw_string_literal] = ACTIONS(1166), + [sym_float_literal] = ACTIONS(1166), [sym_block_comment] = ACTIONS(3), }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_macro_rules_BANG] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_STAR] = 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_str] = ACTIONS(1236), - [anon_sym_char] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_async] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_default] = 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_loop] = ACTIONS(1236), - [anon_sym_match] = ACTIONS(1236), - [anon_sym_mod] = ACTIONS(1236), - [anon_sym_pub] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_trait] = ACTIONS(1236), - [anon_sym_type] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_unsafe] = ACTIONS(1236), - [anon_sym_use] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), + [338] = { + [sym_attribute_item] = STATE(357), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2483), + [sym_variadic_parameter] = STATE(2483), + [sym_parameter] = STATE(2483), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2162), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), [anon_sym_extern] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1236), - [sym_super] = ACTIONS(1236), - [sym_crate] = ACTIONS(1236), - [sym_metavariable] = ACTIONS(1234), - [sym_raw_string_literal] = ACTIONS(1234), - [sym_float_literal] = ACTIONS(1234), - [sym_block_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_macro_rules_BANG] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1238), - [anon_sym_STAR] = 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_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = 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_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1238), - [sym_raw_string_literal] = ACTIONS(1238), - [sym_float_literal] = ACTIONS(1238), - [sym_block_comment] = ACTIONS(3), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_macro_rules_BANG] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1242), - [anon_sym_STAR] = 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_str] = ACTIONS(1244), - [anon_sym_char] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_async] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_default] = 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_loop] = ACTIONS(1244), - [anon_sym_match] = ACTIONS(1244), - [anon_sym_mod] = ACTIONS(1244), - [anon_sym_pub] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_trait] = ACTIONS(1244), - [anon_sym_type] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_unsafe] = ACTIONS(1244), - [anon_sym_use] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_COLON_COLON] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1244), - [sym_super] = ACTIONS(1244), - [sym_crate] = ACTIONS(1244), - [sym_metavariable] = ACTIONS(1242), - [sym_raw_string_literal] = ACTIONS(1242), - [sym_float_literal] = ACTIONS(1242), - [sym_block_comment] = ACTIONS(3), - }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_macro_rules_BANG] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_STAR] = 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_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_async] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_default] = 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_loop] = ACTIONS(1248), - [anon_sym_match] = ACTIONS(1248), - [anon_sym_mod] = ACTIONS(1248), - [anon_sym_pub] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_trait] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_unsafe] = ACTIONS(1248), - [anon_sym_use] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_COLON_COLON] = 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_move] = ACTIONS(1248), - [sym_integer_literal] = ACTIONS(1246), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), [aux_sym_string_literal_token1] = ACTIONS(1246), - [sym_char_literal] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), [anon_sym_true] = ACTIONS(1248), [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1248), - [sym_super] = ACTIONS(1248), - [sym_crate] = ACTIONS(1248), - [sym_metavariable] = ACTIONS(1246), - [sym_raw_string_literal] = ACTIONS(1246), - [sym_float_literal] = ACTIONS(1246), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [287] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1253), + [339] = { + [sym_attribute_item] = STATE(355), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2444), + [sym_variadic_parameter] = STATE(2444), + [sym_parameter] = STATE(2444), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2177), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1264), - [sym_non_special_punctuation] = ACTIONS(1250), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u128] = ACTIONS(1250), - [anon_sym_i128] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_str] = ACTIONS(1250), - [anon_sym_char] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_as] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_await] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_fn] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_impl] = ACTIONS(1250), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_loop] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_mod] = ACTIONS(1250), - [anon_sym_pub] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_trait] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_unsafe] = ACTIONS(1250), - [anon_sym_use] = ACTIONS(1250), - [anon_sym_where] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [sym_mutable_specifier] = ACTIONS(1250), - [sym_integer_literal] = ACTIONS(1267), - [aux_sym_string_literal_token1] = ACTIONS(1270), - [sym_char_literal] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [sym_line_comment] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1250), - [sym_super] = ACTIONS(1250), - [sym_crate] = ACTIONS(1250), - [sym_metavariable] = ACTIONS(1276), - [sym_raw_string_literal] = ACTIONS(1267), - [sym_float_literal] = ACTIONS(1267), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_macro_rules_BANG] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_u8] = ACTIONS(1281), - [anon_sym_i8] = ACTIONS(1281), - [anon_sym_u16] = ACTIONS(1281), - [anon_sym_i16] = ACTIONS(1281), - [anon_sym_u32] = ACTIONS(1281), - [anon_sym_i32] = ACTIONS(1281), - [anon_sym_u64] = ACTIONS(1281), - [anon_sym_i64] = ACTIONS(1281), - [anon_sym_u128] = ACTIONS(1281), - [anon_sym_i128] = ACTIONS(1281), - [anon_sym_isize] = ACTIONS(1281), - [anon_sym_usize] = ACTIONS(1281), - [anon_sym_f32] = ACTIONS(1281), - [anon_sym_f64] = ACTIONS(1281), - [anon_sym_bool] = ACTIONS(1281), - [anon_sym_str] = ACTIONS(1281), - [anon_sym_char] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [anon_sym_async] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_fn] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_impl] = ACTIONS(1281), - [anon_sym_let] = ACTIONS(1281), - [anon_sym_loop] = ACTIONS(1281), - [anon_sym_match] = ACTIONS(1281), - [anon_sym_mod] = ACTIONS(1281), - [anon_sym_pub] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_trait] = ACTIONS(1281), - [anon_sym_type] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1281), - [anon_sym_use] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_move] = ACTIONS(1281), - [sym_integer_literal] = ACTIONS(1279), - [aux_sym_string_literal_token1] = ACTIONS(1279), - [sym_char_literal] = ACTIONS(1279), - [anon_sym_true] = ACTIONS(1281), - [anon_sym_false] = ACTIONS(1281), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_crate] = ACTIONS(1281), - [sym_metavariable] = ACTIONS(1279), - [sym_raw_string_literal] = ACTIONS(1279), - [sym_float_literal] = ACTIONS(1279), + [340] = { + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2411), + [sym_variadic_parameter] = STATE(2411), + [sym_parameter] = STATE(2411), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2187), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1266), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_macro_rules_BANG] = ACTIONS(1283), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_u8] = ACTIONS(1285), - [anon_sym_i8] = ACTIONS(1285), - [anon_sym_u16] = ACTIONS(1285), - [anon_sym_i16] = ACTIONS(1285), - [anon_sym_u32] = ACTIONS(1285), - [anon_sym_i32] = ACTIONS(1285), - [anon_sym_u64] = ACTIONS(1285), - [anon_sym_i64] = ACTIONS(1285), - [anon_sym_u128] = ACTIONS(1285), - [anon_sym_i128] = ACTIONS(1285), - [anon_sym_isize] = ACTIONS(1285), - [anon_sym_usize] = ACTIONS(1285), - [anon_sym_f32] = ACTIONS(1285), - [anon_sym_f64] = ACTIONS(1285), - [anon_sym_bool] = ACTIONS(1285), - [anon_sym_str] = ACTIONS(1285), - [anon_sym_char] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_fn] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_impl] = ACTIONS(1285), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_loop] = ACTIONS(1285), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_mod] = ACTIONS(1285), - [anon_sym_pub] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_trait] = ACTIONS(1285), - [anon_sym_type] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_unsafe] = ACTIONS(1285), - [anon_sym_use] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_DOT_DOT] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1283), - [anon_sym_move] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1283), - [aux_sym_string_literal_token1] = ACTIONS(1283), - [sym_char_literal] = ACTIONS(1283), - [anon_sym_true] = ACTIONS(1285), - [anon_sym_false] = ACTIONS(1285), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1285), - [sym_super] = ACTIONS(1285), - [sym_crate] = ACTIONS(1285), - [sym_metavariable] = ACTIONS(1283), - [sym_raw_string_literal] = ACTIONS(1283), - [sym_float_literal] = ACTIONS(1283), + [341] = { + [sym_attribute_item] = STATE(355), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2444), + [sym_variadic_parameter] = STATE(2444), + [sym_parameter] = STATE(2444), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2177), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2082), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1278), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [290] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(466), - [sym_last_match_arm] = STATE(2258), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [342] = { + [sym_attribute_item] = STATE(355), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2444), + [sym_variadic_parameter] = STATE(2444), + [sym_parameter] = STATE(2444), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2177), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2082), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1296), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_macro_rules_BANG] = ACTIONS(1287), - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_u8] = ACTIONS(1289), - [anon_sym_i8] = ACTIONS(1289), - [anon_sym_u16] = ACTIONS(1289), - [anon_sym_i16] = ACTIONS(1289), - [anon_sym_u32] = ACTIONS(1289), - [anon_sym_i32] = ACTIONS(1289), - [anon_sym_u64] = ACTIONS(1289), - [anon_sym_i64] = ACTIONS(1289), - [anon_sym_u128] = ACTIONS(1289), - [anon_sym_i128] = ACTIONS(1289), - [anon_sym_isize] = ACTIONS(1289), - [anon_sym_usize] = ACTIONS(1289), - [anon_sym_f32] = ACTIONS(1289), - [anon_sym_f64] = ACTIONS(1289), - [anon_sym_bool] = ACTIONS(1289), - [anon_sym_str] = ACTIONS(1289), - [anon_sym_char] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_fn] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_impl] = ACTIONS(1289), - [anon_sym_let] = ACTIONS(1289), - [anon_sym_loop] = ACTIONS(1289), - [anon_sym_match] = ACTIONS(1289), - [anon_sym_mod] = ACTIONS(1289), - [anon_sym_pub] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_trait] = ACTIONS(1289), - [anon_sym_type] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_unsafe] = ACTIONS(1289), - [anon_sym_use] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_POUND] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym_LT] = ACTIONS(1287), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_move] = ACTIONS(1289), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1287), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1289), - [anon_sym_false] = ACTIONS(1289), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1289), - [sym_super] = ACTIONS(1289), - [sym_crate] = ACTIONS(1289), - [sym_metavariable] = ACTIONS(1287), - [sym_raw_string_literal] = ACTIONS(1287), - [sym_float_literal] = ACTIONS(1287), + [343] = { + [sym_attribute_item] = STATE(355), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2444), + [sym_variadic_parameter] = STATE(2444), + [sym_parameter] = STATE(2444), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2177), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2082), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1300), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1293), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_macro_rules_BANG] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1293), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_impl] = ACTIONS(1293), - [anon_sym_let] = ACTIONS(1293), - [anon_sym_loop] = ACTIONS(1293), - [anon_sym_match] = ACTIONS(1293), - [anon_sym_mod] = ACTIONS(1293), - [anon_sym_pub] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_trait] = ACTIONS(1293), - [anon_sym_type] = ACTIONS(1293), - [anon_sym_union] = ACTIONS(1293), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_use] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_POUND] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_extern] = ACTIONS(1293), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_COLON_COLON] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1293), - [sym_integer_literal] = ACTIONS(1291), - [aux_sym_string_literal_token1] = ACTIONS(1291), - [sym_char_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(1293), - [anon_sym_false] = ACTIONS(1293), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1293), - [sym_super] = ACTIONS(1293), - [sym_crate] = ACTIONS(1293), - [sym_metavariable] = ACTIONS(1291), - [sym_raw_string_literal] = ACTIONS(1291), - [sym_float_literal] = ACTIONS(1291), + [344] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [293] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(466), - [sym_last_match_arm] = STATE(2328), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [345] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_identifier] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_macro_rules_BANG] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_u8] = ACTIONS(1297), - [anon_sym_i8] = ACTIONS(1297), - [anon_sym_u16] = ACTIONS(1297), - [anon_sym_i16] = ACTIONS(1297), - [anon_sym_u32] = ACTIONS(1297), - [anon_sym_i32] = ACTIONS(1297), - [anon_sym_u64] = ACTIONS(1297), - [anon_sym_i64] = ACTIONS(1297), - [anon_sym_u128] = ACTIONS(1297), - [anon_sym_i128] = ACTIONS(1297), - [anon_sym_isize] = ACTIONS(1297), - [anon_sym_usize] = ACTIONS(1297), - [anon_sym_f32] = ACTIONS(1297), - [anon_sym_f64] = ACTIONS(1297), - [anon_sym_bool] = ACTIONS(1297), - [anon_sym_str] = ACTIONS(1297), - [anon_sym_char] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_async] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1297), - [anon_sym_let] = ACTIONS(1297), - [anon_sym_loop] = ACTIONS(1297), - [anon_sym_match] = ACTIONS(1297), - [anon_sym_mod] = ACTIONS(1297), - [anon_sym_pub] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_trait] = ACTIONS(1297), - [anon_sym_type] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1297), - [anon_sym_use] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_POUND] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(1295), - [anon_sym_COLON_COLON] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_DOT_DOT] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_move] = ACTIONS(1297), - [sym_integer_literal] = ACTIONS(1295), - [aux_sym_string_literal_token1] = ACTIONS(1295), - [sym_char_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(1297), - [anon_sym_false] = ACTIONS(1297), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_crate] = ACTIONS(1297), - [sym_metavariable] = ACTIONS(1295), - [sym_raw_string_literal] = ACTIONS(1295), - [sym_float_literal] = ACTIONS(1295), + [346] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_macro_rules_BANG] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_u8] = ACTIONS(1301), - [anon_sym_i8] = ACTIONS(1301), - [anon_sym_u16] = ACTIONS(1301), - [anon_sym_i16] = ACTIONS(1301), - [anon_sym_u32] = ACTIONS(1301), - [anon_sym_i32] = ACTIONS(1301), - [anon_sym_u64] = ACTIONS(1301), - [anon_sym_i64] = ACTIONS(1301), - [anon_sym_u128] = ACTIONS(1301), - [anon_sym_i128] = ACTIONS(1301), - [anon_sym_isize] = ACTIONS(1301), - [anon_sym_usize] = ACTIONS(1301), - [anon_sym_f32] = ACTIONS(1301), - [anon_sym_f64] = ACTIONS(1301), - [anon_sym_bool] = ACTIONS(1301), - [anon_sym_str] = ACTIONS(1301), - [anon_sym_char] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_async] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_fn] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_impl] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_loop] = ACTIONS(1301), - [anon_sym_match] = ACTIONS(1301), - [anon_sym_mod] = ACTIONS(1301), - [anon_sym_pub] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_trait] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_unsafe] = ACTIONS(1301), - [anon_sym_use] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_POUND] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1299), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1299), - [anon_sym_move] = ACTIONS(1301), - [sym_integer_literal] = ACTIONS(1299), - [aux_sym_string_literal_token1] = ACTIONS(1299), - [sym_char_literal] = ACTIONS(1299), - [anon_sym_true] = ACTIONS(1301), - [anon_sym_false] = ACTIONS(1301), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1301), - [sym_super] = ACTIONS(1301), - [sym_crate] = ACTIONS(1301), - [sym_metavariable] = ACTIONS(1299), - [sym_raw_string_literal] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1299), + [347] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_identifier] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_macro_rules_BANG] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_u8] = ACTIONS(1305), - [anon_sym_i8] = ACTIONS(1305), - [anon_sym_u16] = ACTIONS(1305), - [anon_sym_i16] = ACTIONS(1305), - [anon_sym_u32] = ACTIONS(1305), - [anon_sym_i32] = ACTIONS(1305), - [anon_sym_u64] = ACTIONS(1305), - [anon_sym_i64] = ACTIONS(1305), - [anon_sym_u128] = ACTIONS(1305), - [anon_sym_i128] = ACTIONS(1305), - [anon_sym_isize] = ACTIONS(1305), - [anon_sym_usize] = ACTIONS(1305), - [anon_sym_f32] = ACTIONS(1305), - [anon_sym_f64] = ACTIONS(1305), - [anon_sym_bool] = ACTIONS(1305), - [anon_sym_str] = ACTIONS(1305), - [anon_sym_char] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_async] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_pub] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_trait] = ACTIONS(1305), - [anon_sym_type] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_unsafe] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_POUND] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_move] = ACTIONS(1305), - [sym_integer_literal] = ACTIONS(1303), - [aux_sym_string_literal_token1] = ACTIONS(1303), - [sym_char_literal] = ACTIONS(1303), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1305), - [sym_super] = ACTIONS(1305), - [sym_crate] = ACTIONS(1305), - [sym_metavariable] = ACTIONS(1303), - [sym_raw_string_literal] = ACTIONS(1303), - [sym_float_literal] = ACTIONS(1303), + [348] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_identifier] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_macro_rules_BANG] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_u8] = ACTIONS(1309), - [anon_sym_i8] = ACTIONS(1309), - [anon_sym_u16] = ACTIONS(1309), - [anon_sym_i16] = ACTIONS(1309), - [anon_sym_u32] = ACTIONS(1309), - [anon_sym_i32] = ACTIONS(1309), - [anon_sym_u64] = ACTIONS(1309), - [anon_sym_i64] = ACTIONS(1309), - [anon_sym_u128] = ACTIONS(1309), - [anon_sym_i128] = ACTIONS(1309), - [anon_sym_isize] = ACTIONS(1309), - [anon_sym_usize] = ACTIONS(1309), - [anon_sym_f32] = ACTIONS(1309), - [anon_sym_f64] = ACTIONS(1309), - [anon_sym_bool] = ACTIONS(1309), - [anon_sym_str] = ACTIONS(1309), - [anon_sym_char] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_async] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_impl] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_pub] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_trait] = ACTIONS(1309), - [anon_sym_type] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_unsafe] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_DOT_DOT] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_move] = ACTIONS(1309), - [sym_integer_literal] = ACTIONS(1307), - [aux_sym_string_literal_token1] = ACTIONS(1307), - [sym_char_literal] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1309), - [sym_crate] = ACTIONS(1309), - [sym_metavariable] = ACTIONS(1307), - [sym_raw_string_literal] = ACTIONS(1307), - [sym_float_literal] = ACTIONS(1307), + [349] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym_macro_rules_BANG] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_u8] = ACTIONS(1313), - [anon_sym_i8] = ACTIONS(1313), - [anon_sym_u16] = ACTIONS(1313), - [anon_sym_i16] = ACTIONS(1313), - [anon_sym_u32] = ACTIONS(1313), - [anon_sym_i32] = ACTIONS(1313), - [anon_sym_u64] = ACTIONS(1313), - [anon_sym_i64] = ACTIONS(1313), - [anon_sym_u128] = ACTIONS(1313), - [anon_sym_i128] = ACTIONS(1313), - [anon_sym_isize] = ACTIONS(1313), - [anon_sym_usize] = ACTIONS(1313), - [anon_sym_f32] = ACTIONS(1313), - [anon_sym_f64] = ACTIONS(1313), - [anon_sym_bool] = ACTIONS(1313), - [anon_sym_str] = ACTIONS(1313), - [anon_sym_char] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_async] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_fn] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_impl] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_pub] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_trait] = ACTIONS(1313), - [anon_sym_type] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_unsafe] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1311), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PIPE] = ACTIONS(1311), - [anon_sym_move] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1311), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1313), - [sym_crate] = ACTIONS(1313), - [sym_metavariable] = ACTIONS(1311), - [sym_raw_string_literal] = ACTIONS(1311), - [sym_float_literal] = ACTIONS(1311), + [350] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_identifier] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_macro_rules_BANG] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_u8] = ACTIONS(1317), - [anon_sym_i8] = ACTIONS(1317), - [anon_sym_u16] = ACTIONS(1317), - [anon_sym_i16] = ACTIONS(1317), - [anon_sym_u32] = ACTIONS(1317), - [anon_sym_i32] = ACTIONS(1317), - [anon_sym_u64] = ACTIONS(1317), - [anon_sym_i64] = ACTIONS(1317), - [anon_sym_u128] = ACTIONS(1317), - [anon_sym_i128] = ACTIONS(1317), - [anon_sym_isize] = ACTIONS(1317), - [anon_sym_usize] = ACTIONS(1317), - [anon_sym_f32] = ACTIONS(1317), - [anon_sym_f64] = ACTIONS(1317), - [anon_sym_bool] = ACTIONS(1317), - [anon_sym_str] = ACTIONS(1317), - [anon_sym_char] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_fn] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_impl] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_pub] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_trait] = ACTIONS(1317), - [anon_sym_type] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_POUND] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1315), - [anon_sym_COLON_COLON] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_DOT_DOT] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_move] = ACTIONS(1317), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1315), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1317), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1315), - [sym_raw_string_literal] = ACTIONS(1315), - [sym_float_literal] = ACTIONS(1315), + [351] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_macro_rules_BANG] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_u8] = ACTIONS(1321), - [anon_sym_i8] = ACTIONS(1321), - [anon_sym_u16] = ACTIONS(1321), - [anon_sym_i16] = ACTIONS(1321), - [anon_sym_u32] = ACTIONS(1321), - [anon_sym_i32] = ACTIONS(1321), - [anon_sym_u64] = ACTIONS(1321), - [anon_sym_i64] = ACTIONS(1321), - [anon_sym_u128] = ACTIONS(1321), - [anon_sym_i128] = ACTIONS(1321), - [anon_sym_isize] = ACTIONS(1321), - [anon_sym_usize] = ACTIONS(1321), - [anon_sym_f32] = ACTIONS(1321), - [anon_sym_f64] = ACTIONS(1321), - [anon_sym_bool] = ACTIONS(1321), - [anon_sym_str] = ACTIONS(1321), - [anon_sym_char] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_async] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_impl] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_pub] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_trait] = ACTIONS(1321), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_unsafe] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_COLON_COLON] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_move] = ACTIONS(1321), - [sym_integer_literal] = ACTIONS(1319), - [aux_sym_string_literal_token1] = ACTIONS(1319), - [sym_char_literal] = ACTIONS(1319), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_crate] = ACTIONS(1321), - [sym_metavariable] = ACTIONS(1319), - [sym_raw_string_literal] = ACTIONS(1319), - [sym_float_literal] = ACTIONS(1319), + [352] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_macro_rules_BANG] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_u8] = ACTIONS(1325), - [anon_sym_i8] = ACTIONS(1325), - [anon_sym_u16] = ACTIONS(1325), - [anon_sym_i16] = ACTIONS(1325), - [anon_sym_u32] = ACTIONS(1325), - [anon_sym_i32] = ACTIONS(1325), - [anon_sym_u64] = ACTIONS(1325), - [anon_sym_i64] = ACTIONS(1325), - [anon_sym_u128] = ACTIONS(1325), - [anon_sym_i128] = ACTIONS(1325), - [anon_sym_isize] = ACTIONS(1325), - [anon_sym_usize] = ACTIONS(1325), - [anon_sym_f32] = ACTIONS(1325), - [anon_sym_f64] = ACTIONS(1325), - [anon_sym_bool] = ACTIONS(1325), - [anon_sym_str] = ACTIONS(1325), - [anon_sym_char] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_async] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_fn] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_impl] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_pub] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_trait] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_unsafe] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_COLON_COLON] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PIPE] = ACTIONS(1323), - [anon_sym_move] = ACTIONS(1325), - [sym_integer_literal] = ACTIONS(1323), - [aux_sym_string_literal_token1] = ACTIONS(1323), - [sym_char_literal] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_crate] = ACTIONS(1325), - [sym_metavariable] = ACTIONS(1323), - [sym_raw_string_literal] = ACTIONS(1323), - [sym_float_literal] = ACTIONS(1323), + [353] = { + [sym_attribute_item] = STATE(354), + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2746), + [sym_variadic_parameter] = STATE(2746), + [sym_parameter] = STATE(2746), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_identifier] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_macro_rules_BANG] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_fn] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_let] = ACTIONS(1329), - [anon_sym_loop] = ACTIONS(1329), - [anon_sym_match] = ACTIONS(1329), - [anon_sym_mod] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_trait] = ACTIONS(1329), - [anon_sym_type] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_unsafe] = ACTIONS(1329), - [anon_sym_use] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_COLON_COLON] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_DOT_DOT] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_move] = ACTIONS(1329), - [sym_integer_literal] = ACTIONS(1327), - [aux_sym_string_literal_token1] = ACTIONS(1327), - [sym_char_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_crate] = ACTIONS(1329), - [sym_metavariable] = ACTIONS(1327), - [sym_raw_string_literal] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1327), + [354] = { + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2669), + [sym_variadic_parameter] = STATE(2669), + [sym_parameter] = STATE(2669), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2354), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_identifier] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_macro_rules_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_u8] = ACTIONS(1333), - [anon_sym_i8] = ACTIONS(1333), - [anon_sym_u16] = ACTIONS(1333), - [anon_sym_i16] = ACTIONS(1333), - [anon_sym_u32] = ACTIONS(1333), - [anon_sym_i32] = ACTIONS(1333), - [anon_sym_u64] = ACTIONS(1333), - [anon_sym_i64] = ACTIONS(1333), - [anon_sym_u128] = ACTIONS(1333), - [anon_sym_i128] = ACTIONS(1333), - [anon_sym_isize] = ACTIONS(1333), - [anon_sym_usize] = ACTIONS(1333), - [anon_sym_f32] = ACTIONS(1333), - [anon_sym_f64] = ACTIONS(1333), - [anon_sym_bool] = ACTIONS(1333), - [anon_sym_str] = ACTIONS(1333), - [anon_sym_char] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_async] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_fn] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_impl] = ACTIONS(1333), - [anon_sym_let] = ACTIONS(1333), - [anon_sym_loop] = ACTIONS(1333), - [anon_sym_match] = ACTIONS(1333), - [anon_sym_mod] = ACTIONS(1333), - [anon_sym_pub] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_trait] = ACTIONS(1333), - [anon_sym_type] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_unsafe] = ACTIONS(1333), - [anon_sym_use] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_COLON_COLON] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_move] = ACTIONS(1333), - [sym_integer_literal] = ACTIONS(1331), - [aux_sym_string_literal_token1] = ACTIONS(1331), - [sym_char_literal] = ACTIONS(1331), - [anon_sym_true] = ACTIONS(1333), - [anon_sym_false] = ACTIONS(1333), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1333), - [sym_super] = ACTIONS(1333), - [sym_crate] = ACTIONS(1333), - [sym_metavariable] = ACTIONS(1331), - [sym_raw_string_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1331), + [355] = { + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2486), + [sym_variadic_parameter] = STATE(2486), + [sym_parameter] = STATE(2486), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2167), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_macro_rules_BANG] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_u8] = ACTIONS(1337), - [anon_sym_i8] = ACTIONS(1337), - [anon_sym_u16] = ACTIONS(1337), - [anon_sym_i16] = ACTIONS(1337), - [anon_sym_u32] = ACTIONS(1337), - [anon_sym_i32] = ACTIONS(1337), - [anon_sym_u64] = ACTIONS(1337), - [anon_sym_i64] = ACTIONS(1337), - [anon_sym_u128] = ACTIONS(1337), - [anon_sym_i128] = ACTIONS(1337), - [anon_sym_isize] = ACTIONS(1337), - [anon_sym_usize] = ACTIONS(1337), - [anon_sym_f32] = ACTIONS(1337), - [anon_sym_f64] = ACTIONS(1337), - [anon_sym_bool] = ACTIONS(1337), - [anon_sym_str] = ACTIONS(1337), - [anon_sym_char] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_fn] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_impl] = ACTIONS(1337), - [anon_sym_let] = ACTIONS(1337), - [anon_sym_loop] = ACTIONS(1337), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_mod] = ACTIONS(1337), - [anon_sym_pub] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_trait] = ACTIONS(1337), - [anon_sym_type] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_unsafe] = ACTIONS(1337), - [anon_sym_use] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_COLON_COLON] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_move] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1335), - [aux_sym_string_literal_token1] = ACTIONS(1335), - [sym_char_literal] = ACTIONS(1335), - [anon_sym_true] = ACTIONS(1337), - [anon_sym_false] = ACTIONS(1337), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1337), - [sym_super] = ACTIONS(1337), - [sym_crate] = ACTIONS(1337), - [sym_metavariable] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(1335), - [sym_float_literal] = ACTIONS(1335), + [356] = { + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2507), + [sym_variadic_parameter] = STATE(2507), + [sym_parameter] = STATE(2507), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2151), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1326), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_macro_rules_BANG] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_u8] = ACTIONS(1341), - [anon_sym_i8] = ACTIONS(1341), - [anon_sym_u16] = ACTIONS(1341), - [anon_sym_i16] = ACTIONS(1341), - [anon_sym_u32] = ACTIONS(1341), - [anon_sym_i32] = ACTIONS(1341), - [anon_sym_u64] = ACTIONS(1341), - [anon_sym_i64] = ACTIONS(1341), - [anon_sym_u128] = ACTIONS(1341), - [anon_sym_i128] = ACTIONS(1341), - [anon_sym_isize] = ACTIONS(1341), - [anon_sym_usize] = ACTIONS(1341), - [anon_sym_f32] = ACTIONS(1341), - [anon_sym_f64] = ACTIONS(1341), - [anon_sym_bool] = ACTIONS(1341), - [anon_sym_str] = ACTIONS(1341), - [anon_sym_char] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_async] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_fn] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1341), - [anon_sym_let] = ACTIONS(1341), - [anon_sym_loop] = ACTIONS(1341), - [anon_sym_match] = ACTIONS(1341), - [anon_sym_mod] = ACTIONS(1341), - [anon_sym_pub] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_trait] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1341), - [anon_sym_use] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_POUND] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_COLON_COLON] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PIPE] = ACTIONS(1339), - [anon_sym_move] = ACTIONS(1341), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1339), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1341), - [anon_sym_false] = ACTIONS(1341), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_crate] = ACTIONS(1341), - [sym_metavariable] = ACTIONS(1339), - [sym_raw_string_literal] = ACTIONS(1339), - [sym_float_literal] = ACTIONS(1339), + [357] = { + [sym_function_modifiers] = STATE(2982), + [sym_self_parameter] = STATE(2457), + [sym_variadic_parameter] = STATE(2457), + [sym_parameter] = STATE(2457), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2173), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2713), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1328), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_macro_rules_BANG] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_u8] = ACTIONS(1345), - [anon_sym_i8] = ACTIONS(1345), - [anon_sym_u16] = ACTIONS(1345), - [anon_sym_i16] = ACTIONS(1345), - [anon_sym_u32] = ACTIONS(1345), - [anon_sym_i32] = ACTIONS(1345), - [anon_sym_u64] = ACTIONS(1345), - [anon_sym_i64] = ACTIONS(1345), - [anon_sym_u128] = ACTIONS(1345), - [anon_sym_i128] = ACTIONS(1345), - [anon_sym_isize] = ACTIONS(1345), - [anon_sym_usize] = ACTIONS(1345), - [anon_sym_f32] = ACTIONS(1345), - [anon_sym_f64] = ACTIONS(1345), - [anon_sym_bool] = ACTIONS(1345), - [anon_sym_str] = ACTIONS(1345), - [anon_sym_char] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_impl] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(1345), - [anon_sym_loop] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_mod] = ACTIONS(1345), - [anon_sym_pub] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_trait] = ACTIONS(1345), - [anon_sym_type] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_unsafe] = ACTIONS(1345), - [anon_sym_use] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_POUND] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_move] = ACTIONS(1345), - [sym_integer_literal] = ACTIONS(1343), - [aux_sym_string_literal_token1] = ACTIONS(1343), - [sym_char_literal] = ACTIONS(1343), - [anon_sym_true] = ACTIONS(1345), - [anon_sym_false] = ACTIONS(1345), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1343), - [sym_raw_string_literal] = ACTIONS(1343), - [sym_float_literal] = ACTIONS(1343), + [358] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2241), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2251), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_identifier] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_macro_rules_BANG] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_u8] = ACTIONS(1349), - [anon_sym_i8] = ACTIONS(1349), - [anon_sym_u16] = ACTIONS(1349), - [anon_sym_i16] = ACTIONS(1349), - [anon_sym_u32] = ACTIONS(1349), - [anon_sym_i32] = ACTIONS(1349), - [anon_sym_u64] = ACTIONS(1349), - [anon_sym_i64] = ACTIONS(1349), - [anon_sym_u128] = ACTIONS(1349), - [anon_sym_i128] = ACTIONS(1349), - [anon_sym_isize] = ACTIONS(1349), - [anon_sym_usize] = ACTIONS(1349), - [anon_sym_f32] = ACTIONS(1349), - [anon_sym_f64] = ACTIONS(1349), - [anon_sym_bool] = ACTIONS(1349), - [anon_sym_str] = ACTIONS(1349), - [anon_sym_char] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_async] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_fn] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_impl] = ACTIONS(1349), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_loop] = ACTIONS(1349), - [anon_sym_match] = ACTIONS(1349), - [anon_sym_mod] = ACTIONS(1349), - [anon_sym_pub] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_trait] = ACTIONS(1349), - [anon_sym_type] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_unsafe] = ACTIONS(1349), - [anon_sym_use] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_move] = ACTIONS(1349), - [sym_integer_literal] = ACTIONS(1347), - [aux_sym_string_literal_token1] = ACTIONS(1347), - [sym_char_literal] = ACTIONS(1347), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1349), - [sym_super] = ACTIONS(1349), - [sym_crate] = ACTIONS(1349), - [sym_metavariable] = ACTIONS(1347), - [sym_raw_string_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1347), + [359] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2241), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2251), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_identifier] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_macro_rules_BANG] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1353), - [anon_sym_char] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_async] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_default] = 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_loop] = ACTIONS(1353), - [anon_sym_match] = ACTIONS(1353), - [anon_sym_mod] = ACTIONS(1353), - [anon_sym_pub] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_trait] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_unsafe] = ACTIONS(1353), - [anon_sym_use] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_POUND] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1351), - [anon_sym_COLON_COLON] = 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_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(1353), - [sym_super] = ACTIONS(1353), - [sym_crate] = ACTIONS(1353), - [sym_metavariable] = ACTIONS(1351), - [sym_raw_string_literal] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1351), + [360] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3003), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3004), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1894), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2250), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_RBRACK] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_crate] = ACTIONS(1366), + [sym_metavariable] = ACTIONS(1368), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_macro_rules_BANG] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_default] = 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_loop] = ACTIONS(1357), - [anon_sym_match] = ACTIONS(1357), - [anon_sym_mod] = ACTIONS(1357), - [anon_sym_pub] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_trait] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_unsafe] = ACTIONS(1357), - [anon_sym_use] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_COLON_COLON] = 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_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(1357), - [sym_super] = ACTIONS(1357), - [sym_crate] = ACTIONS(1357), - [sym_metavariable] = ACTIONS(1355), - [sym_raw_string_literal] = ACTIONS(1355), - [sym_float_literal] = ACTIONS(1355), - [sym_block_comment] = ACTIONS(3), - }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_identifier] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_macro_rules_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1361), - [anon_sym_char] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_async] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_default] = 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_loop] = ACTIONS(1361), - [anon_sym_match] = ACTIONS(1361), - [anon_sym_mod] = ACTIONS(1361), - [anon_sym_pub] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_trait] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_unsafe] = ACTIONS(1361), - [anon_sym_use] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym_LT] = ACTIONS(1359), - [anon_sym_COLON_COLON] = 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_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(1361), - [sym_super] = ACTIONS(1361), - [sym_crate] = ACTIONS(1361), - [sym_metavariable] = ACTIONS(1359), - [sym_raw_string_literal] = ACTIONS(1359), - [sym_float_literal] = ACTIONS(1359), - [sym_block_comment] = ACTIONS(3), - }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_macro_rules_BANG] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_default] = 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_loop] = ACTIONS(1365), - [anon_sym_match] = ACTIONS(1365), - [anon_sym_mod] = ACTIONS(1365), - [anon_sym_pub] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_trait] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_unsafe] = ACTIONS(1365), - [anon_sym_use] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_POUND] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_COLON_COLON] = 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_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(1365), - [sym_super] = ACTIONS(1365), - [sym_crate] = ACTIONS(1365), - [sym_metavariable] = ACTIONS(1363), - [sym_raw_string_literal] = ACTIONS(1363), - [sym_float_literal] = ACTIONS(1363), - [sym_block_comment] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_macro_rules_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_async] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_default] = 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_loop] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_pub] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_trait] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_unsafe] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_POUND] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_COLON_COLON] = 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_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(1369), - [sym_super] = ACTIONS(1369), - [sym_crate] = ACTIONS(1369), - [sym_metavariable] = ACTIONS(1367), - [sym_raw_string_literal] = ACTIONS(1367), - [sym_float_literal] = ACTIONS(1367), - [sym_block_comment] = ACTIONS(3), - }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_identifier] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_macro_rules_BANG] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1371), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_default] = 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_loop] = ACTIONS(1373), - [anon_sym_match] = ACTIONS(1373), - [anon_sym_mod] = ACTIONS(1373), - [anon_sym_pub] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_trait] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_unsafe] = ACTIONS(1373), - [anon_sym_use] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_POUND] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_COLON_COLON] = 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_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(1373), - [sym_super] = ACTIONS(1373), - [sym_crate] = ACTIONS(1373), - [sym_metavariable] = ACTIONS(1371), - [sym_raw_string_literal] = ACTIONS(1371), - [sym_float_literal] = ACTIONS(1371), - [sym_block_comment] = ACTIONS(3), - }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_identifier] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_macro_rules_BANG] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_async] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_default] = 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_loop] = ACTIONS(1377), - [anon_sym_match] = ACTIONS(1377), - [anon_sym_mod] = ACTIONS(1377), - [anon_sym_pub] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_trait] = ACTIONS(1377), - [anon_sym_type] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_unsafe] = ACTIONS(1377), - [anon_sym_use] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_POUND] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), - [anon_sym_COLON_COLON] = 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_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(1377), - [sym_super] = ACTIONS(1377), - [sym_crate] = ACTIONS(1377), - [sym_metavariable] = ACTIONS(1375), - [sym_raw_string_literal] = ACTIONS(1375), - [sym_float_literal] = ACTIONS(1375), - [sym_block_comment] = ACTIONS(3), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_macro_rules_BANG] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_async] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_default] = 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_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_mod] = ACTIONS(1381), - [anon_sym_pub] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_trait] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1381), - [anon_sym_unsafe] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_COLON_COLON] = 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_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(1381), - [sym_super] = ACTIONS(1381), - [sym_crate] = ACTIONS(1381), - [sym_metavariable] = ACTIONS(1379), - [sym_raw_string_literal] = ACTIONS(1379), - [sym_float_literal] = ACTIONS(1379), - [sym_block_comment] = ACTIONS(3), - }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_identifier] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_macro_rules_BANG] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_async] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_default] = 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_loop] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_pub] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_trait] = ACTIONS(1385), - [anon_sym_type] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_COLON_COLON] = 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_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(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym_raw_string_literal] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), - [sym_block_comment] = ACTIONS(3), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_macro_rules_BANG] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_default] = 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_loop] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_pub] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_trait] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_unsafe] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = 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_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(1389), - [sym_super] = ACTIONS(1389), - [sym_crate] = ACTIONS(1389), - [sym_metavariable] = ACTIONS(1387), - [sym_raw_string_literal] = ACTIONS(1387), - [sym_float_literal] = ACTIONS(1387), - [sym_block_comment] = ACTIONS(3), - }, - [318] = { - [sym__token_pattern] = STATE(330), - [sym_token_tree_pattern] = STATE(330), - [sym_token_binding_pattern] = STATE(330), - [sym_token_repetition_pattern] = STATE(330), - [sym__literal] = STATE(330), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(330), - [sym_identifier] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1391), - [anon_sym_u8] = ACTIONS(1391), - [anon_sym_i8] = ACTIONS(1391), - [anon_sym_u16] = ACTIONS(1391), - [anon_sym_i16] = ACTIONS(1391), - [anon_sym_u32] = ACTIONS(1391), - [anon_sym_i32] = ACTIONS(1391), - [anon_sym_u64] = ACTIONS(1391), - [anon_sym_i64] = ACTIONS(1391), - [anon_sym_u128] = ACTIONS(1391), - [anon_sym_i128] = ACTIONS(1391), - [anon_sym_isize] = ACTIONS(1391), - [anon_sym_usize] = ACTIONS(1391), - [anon_sym_f32] = ACTIONS(1391), - [anon_sym_f64] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_str] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1391), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_await] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_default] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_impl] = ACTIONS(1391), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_loop] = ACTIONS(1391), - [anon_sym_match] = ACTIONS(1391), - [anon_sym_mod] = ACTIONS(1391), - [anon_sym_pub] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_trait] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_unsafe] = ACTIONS(1391), - [anon_sym_use] = ACTIONS(1391), - [anon_sym_where] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [sym_mutable_specifier] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [319] = { - [sym__token_pattern] = STATE(331), - [sym_token_tree_pattern] = STATE(331), - [sym_token_binding_pattern] = STATE(331), - [sym_token_repetition_pattern] = STATE(331), - [sym__literal] = STATE(331), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(331), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1395), - [anon_sym_i8] = ACTIONS(1395), - [anon_sym_u16] = ACTIONS(1395), - [anon_sym_i16] = ACTIONS(1395), - [anon_sym_u32] = ACTIONS(1395), - [anon_sym_i32] = ACTIONS(1395), - [anon_sym_u64] = ACTIONS(1395), - [anon_sym_i64] = ACTIONS(1395), - [anon_sym_u128] = ACTIONS(1395), - [anon_sym_i128] = ACTIONS(1395), - [anon_sym_isize] = ACTIONS(1395), - [anon_sym_usize] = ACTIONS(1395), - [anon_sym_f32] = ACTIONS(1395), - [anon_sym_f64] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_str] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1395), - [anon_sym_await] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_enum] = ACTIONS(1395), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_impl] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_pub] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1395), - [anon_sym_trait] = ACTIONS(1395), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_unsafe] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_where] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [sym_mutable_specifier] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_crate] = ACTIONS(1395), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [320] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1397), - [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_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_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_default] = 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_loop] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_pub] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_trait] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [sym_mutable_specifier] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_macro_rules_BANG] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_default] = 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_loop] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_pub] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_trait] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_unsafe] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_COLON_COLON] = 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_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(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym_raw_string_literal] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), - [sym_block_comment] = ACTIONS(3), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_macro_rules_BANG] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_async] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_default] = 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_loop] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_pub] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_trait] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_unsafe] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_COLON_COLON] = 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_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(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym_raw_string_literal] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), - [sym_block_comment] = ACTIONS(3), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_macro_rules_BANG] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_async] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_default] = 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_loop] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_mod] = ACTIONS(1409), - [anon_sym_pub] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_trait] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1409), - [anon_sym_use] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_COLON_COLON] = 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_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(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym_raw_string_literal] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), - [sym_block_comment] = ACTIONS(3), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_macro_rules_BANG] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_default] = 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_loop] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_mod] = ACTIONS(1413), - [anon_sym_pub] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_trait] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_unsafe] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_COLON_COLON] = 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_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(1413), - [sym_super] = ACTIONS(1413), - [sym_crate] = ACTIONS(1413), - [sym_metavariable] = ACTIONS(1411), - [sym_raw_string_literal] = ACTIONS(1411), - [sym_float_literal] = ACTIONS(1411), - [sym_block_comment] = ACTIONS(3), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_macro_rules_BANG] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_default] = 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_loop] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_mod] = ACTIONS(1417), - [anon_sym_pub] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_struct] = ACTIONS(1417), - [anon_sym_trait] = ACTIONS(1417), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_union] = ACTIONS(1417), - [anon_sym_unsafe] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_COLON_COLON] = 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_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(1417), - [sym_super] = ACTIONS(1417), - [sym_crate] = ACTIONS(1417), - [sym_metavariable] = ACTIONS(1415), - [sym_raw_string_literal] = ACTIONS(1415), - [sym_float_literal] = ACTIONS(1415), - [sym_block_comment] = ACTIONS(3), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = 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_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_COLON_COLON] = 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_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(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym_raw_string_literal] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - [sym_block_comment] = ACTIONS(3), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = 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_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = 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_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(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym_raw_string_literal] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), - [sym_block_comment] = ACTIONS(3), - }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = 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_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = 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_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(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym_raw_string_literal] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), - [sym_block_comment] = ACTIONS(3), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_STAR] = 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_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_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = 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_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = 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_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(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym_raw_string_literal] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), - [sym_block_comment] = ACTIONS(3), - }, - [330] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [331] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_macro_rules_BANG] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_impl] = ACTIONS(1439), - [anon_sym_let] = ACTIONS(1439), - [anon_sym_loop] = ACTIONS(1439), - [anon_sym_match] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_pub] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_trait] = ACTIONS(1439), - [anon_sym_type] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_unsafe] = ACTIONS(1439), - [anon_sym_use] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_DOT_DOT] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym_raw_string_literal] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), - [sym_block_comment] = ACTIONS(3), - }, - [333] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1441), - [sym_identifier] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_macro_rules_BANG] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_async] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_impl] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_loop] = ACTIONS(1443), - [anon_sym_match] = ACTIONS(1443), - [anon_sym_mod] = ACTIONS(1443), - [anon_sym_pub] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_trait] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_unsafe] = ACTIONS(1443), - [anon_sym_use] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_move] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym_raw_string_literal] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), - [sym_block_comment] = ACTIONS(3), - }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_macro_rules_BANG] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_impl] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_pub] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_trait] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_unsafe] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_DOT_DOT] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_move] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [aux_sym_string_literal_token1] = ACTIONS(1445), - [sym_char_literal] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_crate] = ACTIONS(1447), - [sym_metavariable] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1445), - [sym_float_literal] = ACTIONS(1445), - [sym_block_comment] = ACTIONS(3), - }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_macro_rules_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_impl] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_loop] = ACTIONS(1451), - [anon_sym_match] = ACTIONS(1451), - [anon_sym_mod] = ACTIONS(1451), - [anon_sym_pub] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_trait] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_unsafe] = ACTIONS(1451), - [anon_sym_use] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_move] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym_raw_string_literal] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), - [sym_block_comment] = ACTIONS(3), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_move] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym_raw_string_literal] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), - [sym_block_comment] = ACTIONS(3), - }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(1457), - [sym_identifier] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_macro_rules_BANG] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1459), - [anon_sym_i8] = ACTIONS(1459), - [anon_sym_u16] = ACTIONS(1459), - [anon_sym_i16] = ACTIONS(1459), - [anon_sym_u32] = ACTIONS(1459), - [anon_sym_i32] = ACTIONS(1459), - [anon_sym_u64] = ACTIONS(1459), - [anon_sym_i64] = ACTIONS(1459), - [anon_sym_u128] = ACTIONS(1459), - [anon_sym_i128] = ACTIONS(1459), - [anon_sym_isize] = ACTIONS(1459), - [anon_sym_usize] = ACTIONS(1459), - [anon_sym_f32] = ACTIONS(1459), - [anon_sym_f64] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_str] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1459), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_impl] = ACTIONS(1459), - [anon_sym_let] = ACTIONS(1459), - [anon_sym_loop] = ACTIONS(1459), - [anon_sym_match] = ACTIONS(1459), - [anon_sym_mod] = ACTIONS(1459), - [anon_sym_pub] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_trait] = ACTIONS(1459), - [anon_sym_type] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1459), - [anon_sym_use] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_POUND] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1457), - [aux_sym_string_literal_token1] = ACTIONS(1457), - [sym_char_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_crate] = ACTIONS(1459), - [sym_metavariable] = ACTIONS(1457), - [sym_raw_string_literal] = ACTIONS(1457), - [sym_float_literal] = ACTIONS(1457), - [sym_block_comment] = ACTIONS(3), - }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1461), - [sym_identifier] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_macro_rules_BANG] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_u8] = ACTIONS(1463), - [anon_sym_i8] = ACTIONS(1463), - [anon_sym_u16] = ACTIONS(1463), - [anon_sym_i16] = ACTIONS(1463), - [anon_sym_u32] = ACTIONS(1463), - [anon_sym_i32] = ACTIONS(1463), - [anon_sym_u64] = ACTIONS(1463), - [anon_sym_i64] = ACTIONS(1463), - [anon_sym_u128] = ACTIONS(1463), - [anon_sym_i128] = ACTIONS(1463), - [anon_sym_isize] = ACTIONS(1463), - [anon_sym_usize] = ACTIONS(1463), - [anon_sym_f32] = ACTIONS(1463), - [anon_sym_f64] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_str] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_impl] = ACTIONS(1463), - [anon_sym_let] = ACTIONS(1463), - [anon_sym_loop] = ACTIONS(1463), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_mod] = ACTIONS(1463), - [anon_sym_pub] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_struct] = ACTIONS(1463), - [anon_sym_trait] = ACTIONS(1463), - [anon_sym_type] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_unsafe] = ACTIONS(1463), - [anon_sym_use] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_move] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1461), - [aux_sym_string_literal_token1] = ACTIONS(1461), - [sym_char_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1461), - [sym_raw_string_literal] = ACTIONS(1461), - [sym_float_literal] = ACTIONS(1461), - [sym_block_comment] = ACTIONS(3), - }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1465), - [sym_identifier] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_macro_rules_BANG] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_u8] = ACTIONS(1467), - [anon_sym_i8] = ACTIONS(1467), - [anon_sym_u16] = ACTIONS(1467), - [anon_sym_i16] = ACTIONS(1467), - [anon_sym_u32] = ACTIONS(1467), - [anon_sym_i32] = ACTIONS(1467), - [anon_sym_u64] = ACTIONS(1467), - [anon_sym_i64] = ACTIONS(1467), - [anon_sym_u128] = ACTIONS(1467), - [anon_sym_i128] = ACTIONS(1467), - [anon_sym_isize] = ACTIONS(1467), - [anon_sym_usize] = ACTIONS(1467), - [anon_sym_f32] = ACTIONS(1467), - [anon_sym_f64] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_str] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_async] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_default] = ACTIONS(1467), - [anon_sym_enum] = ACTIONS(1467), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_impl] = ACTIONS(1467), - [anon_sym_let] = ACTIONS(1467), - [anon_sym_loop] = ACTIONS(1467), - [anon_sym_match] = ACTIONS(1467), - [anon_sym_mod] = ACTIONS(1467), - [anon_sym_pub] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_struct] = ACTIONS(1467), - [anon_sym_trait] = ACTIONS(1467), - [anon_sym_type] = ACTIONS(1467), - [anon_sym_union] = ACTIONS(1467), - [anon_sym_unsafe] = ACTIONS(1467), - [anon_sym_use] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_POUND] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_COLON_COLON] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1465), - [aux_sym_string_literal_token1] = ACTIONS(1465), - [sym_char_literal] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1467), - [sym_super] = ACTIONS(1467), - [sym_crate] = ACTIONS(1467), - [sym_metavariable] = ACTIONS(1465), - [sym_raw_string_literal] = ACTIONS(1465), - [sym_float_literal] = ACTIONS(1465), - [sym_block_comment] = ACTIONS(3), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1469), - [sym_identifier] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_macro_rules_BANG] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_u8] = ACTIONS(1471), - [anon_sym_i8] = ACTIONS(1471), - [anon_sym_u16] = ACTIONS(1471), - [anon_sym_i16] = ACTIONS(1471), - [anon_sym_u32] = ACTIONS(1471), - [anon_sym_i32] = ACTIONS(1471), - [anon_sym_u64] = ACTIONS(1471), - [anon_sym_i64] = ACTIONS(1471), - [anon_sym_u128] = ACTIONS(1471), - [anon_sym_i128] = ACTIONS(1471), - [anon_sym_isize] = ACTIONS(1471), - [anon_sym_usize] = ACTIONS(1471), - [anon_sym_f32] = ACTIONS(1471), - [anon_sym_f64] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_str] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_async] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_impl] = ACTIONS(1471), - [anon_sym_let] = ACTIONS(1471), - [anon_sym_loop] = ACTIONS(1471), - [anon_sym_match] = ACTIONS(1471), - [anon_sym_mod] = ACTIONS(1471), - [anon_sym_pub] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_struct] = ACTIONS(1471), - [anon_sym_trait] = ACTIONS(1471), - [anon_sym_type] = ACTIONS(1471), - [anon_sym_union] = ACTIONS(1471), - [anon_sym_unsafe] = ACTIONS(1471), - [anon_sym_use] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_POUND] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_COLON_COLON] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_move] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1469), - [aux_sym_string_literal_token1] = ACTIONS(1469), - [sym_char_literal] = ACTIONS(1469), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1471), - [sym_super] = ACTIONS(1471), - [sym_crate] = ACTIONS(1471), - [sym_metavariable] = ACTIONS(1469), - [sym_raw_string_literal] = ACTIONS(1469), - [sym_float_literal] = ACTIONS(1469), - [sym_block_comment] = ACTIONS(3), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1473), - [sym_identifier] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_macro_rules_BANG] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_u8] = ACTIONS(1475), - [anon_sym_i8] = ACTIONS(1475), - [anon_sym_u16] = ACTIONS(1475), - [anon_sym_i16] = ACTIONS(1475), - [anon_sym_u32] = ACTIONS(1475), - [anon_sym_i32] = ACTIONS(1475), - [anon_sym_u64] = ACTIONS(1475), - [anon_sym_i64] = ACTIONS(1475), - [anon_sym_u128] = ACTIONS(1475), - [anon_sym_i128] = ACTIONS(1475), - [anon_sym_isize] = ACTIONS(1475), - [anon_sym_usize] = ACTIONS(1475), - [anon_sym_f32] = ACTIONS(1475), - [anon_sym_f64] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_str] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_async] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_impl] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_pub] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_struct] = ACTIONS(1475), - [anon_sym_trait] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_unsafe] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_move] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1473), - [aux_sym_string_literal_token1] = ACTIONS(1473), - [sym_char_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym_raw_string_literal] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), - [sym_block_comment] = ACTIONS(3), - }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1477), - [sym_identifier] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_macro_rules_BANG] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1479), - [anon_sym_i8] = ACTIONS(1479), - [anon_sym_u16] = ACTIONS(1479), - [anon_sym_i16] = ACTIONS(1479), - [anon_sym_u32] = ACTIONS(1479), - [anon_sym_i32] = ACTIONS(1479), - [anon_sym_u64] = ACTIONS(1479), - [anon_sym_i64] = ACTIONS(1479), - [anon_sym_u128] = ACTIONS(1479), - [anon_sym_i128] = ACTIONS(1479), - [anon_sym_isize] = ACTIONS(1479), - [anon_sym_usize] = ACTIONS(1479), - [anon_sym_f32] = ACTIONS(1479), - [anon_sym_f64] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_str] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_async] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1479), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_impl] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_mod] = ACTIONS(1479), - [anon_sym_pub] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_struct] = ACTIONS(1479), - [anon_sym_trait] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_unsafe] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_move] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [aux_sym_string_literal_token1] = ACTIONS(1477), - [sym_char_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_crate] = ACTIONS(1479), - [sym_metavariable] = ACTIONS(1477), - [sym_raw_string_literal] = ACTIONS(1477), - [sym_float_literal] = ACTIONS(1477), - [sym_block_comment] = ACTIONS(3), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_macro_rules_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_async] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_impl] = ACTIONS(1483), - [anon_sym_let] = ACTIONS(1483), - [anon_sym_loop] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_pub] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_trait] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_unsafe] = ACTIONS(1483), - [anon_sym_use] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_move] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym_raw_string_literal] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), - [sym_block_comment] = ACTIONS(3), - }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_macro_rules_BANG] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_impl] = ACTIONS(1487), - [anon_sym_let] = ACTIONS(1487), - [anon_sym_loop] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_mod] = ACTIONS(1487), - [anon_sym_pub] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_trait] = ACTIONS(1487), - [anon_sym_type] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_unsafe] = ACTIONS(1487), - [anon_sym_use] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_DOT_DOT] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_move] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym_raw_string_literal] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), - [sym_block_comment] = ACTIONS(3), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_macro_rules_BANG] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1491), - [anon_sym_i8] = ACTIONS(1491), - [anon_sym_u16] = ACTIONS(1491), - [anon_sym_i16] = ACTIONS(1491), - [anon_sym_u32] = ACTIONS(1491), - [anon_sym_i32] = ACTIONS(1491), - [anon_sym_u64] = ACTIONS(1491), - [anon_sym_i64] = ACTIONS(1491), - [anon_sym_u128] = ACTIONS(1491), - [anon_sym_i128] = ACTIONS(1491), - [anon_sym_isize] = ACTIONS(1491), - [anon_sym_usize] = ACTIONS(1491), - [anon_sym_f32] = ACTIONS(1491), - [anon_sym_f64] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_str] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_impl] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_pub] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_trait] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_unsafe] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_move] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1489), - [aux_sym_string_literal_token1] = ACTIONS(1489), - [sym_char_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_crate] = ACTIONS(1491), - [sym_metavariable] = ACTIONS(1489), - [sym_raw_string_literal] = ACTIONS(1489), - [sym_float_literal] = ACTIONS(1489), - [sym_block_comment] = ACTIONS(3), - }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1493), - [sym_identifier] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_macro_rules_BANG] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1495), - [anon_sym_i8] = ACTIONS(1495), - [anon_sym_u16] = ACTIONS(1495), - [anon_sym_i16] = ACTIONS(1495), - [anon_sym_u32] = ACTIONS(1495), - [anon_sym_i32] = ACTIONS(1495), - [anon_sym_u64] = ACTIONS(1495), - [anon_sym_i64] = ACTIONS(1495), - [anon_sym_u128] = ACTIONS(1495), - [anon_sym_i128] = ACTIONS(1495), - [anon_sym_isize] = ACTIONS(1495), - [anon_sym_usize] = ACTIONS(1495), - [anon_sym_f32] = ACTIONS(1495), - [anon_sym_f64] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_str] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_impl] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_pub] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [anon_sym_trait] = ACTIONS(1495), - [anon_sym_type] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_unsafe] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_move] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1493), - [sym_raw_string_literal] = ACTIONS(1493), - [sym_float_literal] = ACTIONS(1493), - [sym_block_comment] = ACTIONS(3), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1497), - [sym_identifier] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_macro_rules_BANG] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_async] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_impl] = ACTIONS(1499), - [anon_sym_let] = ACTIONS(1499), - [anon_sym_loop] = ACTIONS(1499), - [anon_sym_match] = ACTIONS(1499), - [anon_sym_mod] = ACTIONS(1499), - [anon_sym_pub] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_struct] = ACTIONS(1499), - [anon_sym_trait] = ACTIONS(1499), - [anon_sym_type] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_unsafe] = ACTIONS(1499), - [anon_sym_use] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_move] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [aux_sym_string_literal_token1] = ACTIONS(1497), - [sym_char_literal] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym_raw_string_literal] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), - [sym_block_comment] = ACTIONS(3), - }, - [349] = { - [sym__token_pattern] = STATE(461), - [sym_token_tree_pattern] = STATE(461), - [sym_token_binding_pattern] = STATE(461), - [sym_token_repetition_pattern] = STATE(461), - [sym__literal] = STATE(461), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1501), - [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_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_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_default] = 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_loop] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_pub] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_trait] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_unsafe] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_where] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [sym_mutable_specifier] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(1505), - [sym_identifier] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_macro_rules_BANG] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_u8] = ACTIONS(1507), - [anon_sym_i8] = ACTIONS(1507), - [anon_sym_u16] = ACTIONS(1507), - [anon_sym_i16] = ACTIONS(1507), - [anon_sym_u32] = ACTIONS(1507), - [anon_sym_i32] = ACTIONS(1507), - [anon_sym_u64] = ACTIONS(1507), - [anon_sym_i64] = ACTIONS(1507), - [anon_sym_u128] = ACTIONS(1507), - [anon_sym_i128] = ACTIONS(1507), - [anon_sym_isize] = ACTIONS(1507), - [anon_sym_usize] = ACTIONS(1507), - [anon_sym_f32] = ACTIONS(1507), - [anon_sym_f64] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_str] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_impl] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_pub] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_trait] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_unsafe] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_COLON_COLON] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_move] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1505), - [aux_sym_string_literal_token1] = ACTIONS(1505), - [sym_char_literal] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1507), - [sym_super] = ACTIONS(1507), - [sym_crate] = ACTIONS(1507), - [sym_metavariable] = ACTIONS(1505), - [sym_raw_string_literal] = ACTIONS(1505), - [sym_float_literal] = ACTIONS(1505), - [sym_block_comment] = ACTIONS(3), - }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_macro_rules_BANG] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u128] = ACTIONS(1511), - [anon_sym_i128] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_str] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_async] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_impl] = ACTIONS(1511), - [anon_sym_let] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_mod] = ACTIONS(1511), - [anon_sym_pub] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_trait] = ACTIONS(1511), - [anon_sym_type] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_unsafe] = ACTIONS(1511), - [anon_sym_use] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1509), - [aux_sym_string_literal_token1] = ACTIONS(1509), - [sym_char_literal] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1511), - [sym_super] = ACTIONS(1511), - [sym_crate] = ACTIONS(1511), - [sym_metavariable] = ACTIONS(1509), - [sym_raw_string_literal] = ACTIONS(1509), - [sym_float_literal] = ACTIONS(1509), - [sym_block_comment] = ACTIONS(3), - }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_macro_rules_BANG] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_u8] = ACTIONS(1515), - [anon_sym_i8] = ACTIONS(1515), - [anon_sym_u16] = ACTIONS(1515), - [anon_sym_i16] = ACTIONS(1515), - [anon_sym_u32] = ACTIONS(1515), - [anon_sym_i32] = ACTIONS(1515), - [anon_sym_u64] = ACTIONS(1515), - [anon_sym_i64] = ACTIONS(1515), - [anon_sym_u128] = ACTIONS(1515), - [anon_sym_i128] = ACTIONS(1515), - [anon_sym_isize] = ACTIONS(1515), - [anon_sym_usize] = ACTIONS(1515), - [anon_sym_f32] = ACTIONS(1515), - [anon_sym_f64] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_str] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_async] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_impl] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_mod] = ACTIONS(1515), - [anon_sym_pub] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_trait] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_unsafe] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_COLON_COLON] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1513), - [aux_sym_string_literal_token1] = ACTIONS(1513), - [sym_char_literal] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1515), - [sym_super] = ACTIONS(1515), - [sym_crate] = ACTIONS(1515), - [sym_metavariable] = ACTIONS(1513), - [sym_raw_string_literal] = ACTIONS(1513), - [sym_float_literal] = ACTIONS(1513), - [sym_block_comment] = ACTIONS(3), - }, - [353] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(466), - [sym_last_match_arm] = STATE(2451), - [sym_match_pattern] = STATE(2324), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(500), - [aux_sym_match_block_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1517), - [sym_identifier] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_macro_rules_BANG] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u128] = ACTIONS(1519), - [anon_sym_i128] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_str] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_async] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_impl] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_pub] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_struct] = ACTIONS(1519), - [anon_sym_trait] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_union] = ACTIONS(1519), - [anon_sym_unsafe] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_move] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1517), - [aux_sym_string_literal_token1] = ACTIONS(1517), - [sym_char_literal] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_crate] = ACTIONS(1519), - [sym_metavariable] = ACTIONS(1517), - [sym_raw_string_literal] = ACTIONS(1517), - [sym_float_literal] = ACTIONS(1517), - [sym_block_comment] = ACTIONS(3), - }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_macro_rules_BANG] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_impl] = ACTIONS(1523), - [anon_sym_let] = ACTIONS(1523), - [anon_sym_loop] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_mod] = ACTIONS(1523), - [anon_sym_pub] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_trait] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_unsafe] = ACTIONS(1523), - [anon_sym_use] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym_raw_string_literal] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), - [sym_block_comment] = ACTIONS(3), - }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_macro_rules_BANG] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_async] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_enum] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_impl] = ACTIONS(1527), - [anon_sym_let] = ACTIONS(1527), - [anon_sym_loop] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_mod] = ACTIONS(1527), - [anon_sym_pub] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_trait] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_unsafe] = ACTIONS(1527), - [anon_sym_use] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym_raw_string_literal] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), - [sym_block_comment] = ACTIONS(3), - }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1529), - [sym_identifier] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_macro_rules_BANG] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u128] = ACTIONS(1531), - [anon_sym_i128] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_str] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_default] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_impl] = ACTIONS(1531), - [anon_sym_let] = ACTIONS(1531), - [anon_sym_loop] = ACTIONS(1531), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_mod] = ACTIONS(1531), - [anon_sym_pub] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_struct] = ACTIONS(1531), - [anon_sym_trait] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1531), - [anon_sym_union] = ACTIONS(1531), - [anon_sym_unsafe] = ACTIONS(1531), - [anon_sym_use] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_move] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1529), - [aux_sym_string_literal_token1] = ACTIONS(1529), - [sym_char_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1531), - [sym_super] = ACTIONS(1531), - [sym_crate] = ACTIONS(1531), - [sym_metavariable] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1529), - [sym_float_literal] = ACTIONS(1529), - [sym_block_comment] = ACTIONS(3), - }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_macro_rules_BANG] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_u8] = ACTIONS(1535), - [anon_sym_i8] = ACTIONS(1535), - [anon_sym_u16] = ACTIONS(1535), - [anon_sym_i16] = ACTIONS(1535), - [anon_sym_u32] = ACTIONS(1535), - [anon_sym_i32] = ACTIONS(1535), - [anon_sym_u64] = ACTIONS(1535), - [anon_sym_i64] = ACTIONS(1535), - [anon_sym_u128] = ACTIONS(1535), - [anon_sym_i128] = ACTIONS(1535), - [anon_sym_isize] = ACTIONS(1535), - [anon_sym_usize] = ACTIONS(1535), - [anon_sym_f32] = ACTIONS(1535), - [anon_sym_f64] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_str] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_async] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_default] = ACTIONS(1535), - [anon_sym_enum] = ACTIONS(1535), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_impl] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_mod] = ACTIONS(1535), - [anon_sym_pub] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1535), - [anon_sym_trait] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_union] = ACTIONS(1535), - [anon_sym_unsafe] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_move] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1533), - [aux_sym_string_literal_token1] = ACTIONS(1533), - [sym_char_literal] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1535), - [sym_super] = ACTIONS(1535), - [sym_crate] = ACTIONS(1535), - [sym_metavariable] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1533), - [sym_float_literal] = ACTIONS(1533), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_macro_rules_BANG] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_u8] = ACTIONS(1539), - [anon_sym_i8] = ACTIONS(1539), - [anon_sym_u16] = ACTIONS(1539), - [anon_sym_i16] = ACTIONS(1539), - [anon_sym_u32] = ACTIONS(1539), - [anon_sym_i32] = ACTIONS(1539), - [anon_sym_u64] = ACTIONS(1539), - [anon_sym_i64] = ACTIONS(1539), - [anon_sym_u128] = ACTIONS(1539), - [anon_sym_i128] = ACTIONS(1539), - [anon_sym_isize] = ACTIONS(1539), - [anon_sym_usize] = ACTIONS(1539), - [anon_sym_f32] = ACTIONS(1539), - [anon_sym_f64] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_str] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_async] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_impl] = ACTIONS(1539), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_loop] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_mod] = ACTIONS(1539), - [anon_sym_pub] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_trait] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_unsafe] = ACTIONS(1539), - [anon_sym_use] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_COLON_COLON] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_move] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1537), - [aux_sym_string_literal_token1] = ACTIONS(1537), - [sym_char_literal] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_crate] = ACTIONS(1539), - [sym_metavariable] = ACTIONS(1537), - [sym_raw_string_literal] = ACTIONS(1537), - [sym_float_literal] = ACTIONS(1537), - [sym_block_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1541), - [sym_identifier] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_macro_rules_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_u8] = ACTIONS(1543), - [anon_sym_i8] = ACTIONS(1543), - [anon_sym_u16] = ACTIONS(1543), - [anon_sym_i16] = ACTIONS(1543), - [anon_sym_u32] = ACTIONS(1543), - [anon_sym_i32] = ACTIONS(1543), - [anon_sym_u64] = ACTIONS(1543), - [anon_sym_i64] = ACTIONS(1543), - [anon_sym_u128] = ACTIONS(1543), - [anon_sym_i128] = ACTIONS(1543), - [anon_sym_isize] = ACTIONS(1543), - [anon_sym_usize] = ACTIONS(1543), - [anon_sym_f32] = ACTIONS(1543), - [anon_sym_f64] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_str] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_enum] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_impl] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_loop] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_mod] = ACTIONS(1543), - [anon_sym_pub] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1543), - [anon_sym_trait] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_union] = ACTIONS(1543), - [anon_sym_unsafe] = ACTIONS(1543), - [anon_sym_use] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1543), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_COLON_COLON] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1541), - [aux_sym_string_literal_token1] = ACTIONS(1541), - [sym_char_literal] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1543), - [sym_super] = ACTIONS(1543), - [sym_crate] = ACTIONS(1543), - [sym_metavariable] = ACTIONS(1541), - [sym_raw_string_literal] = ACTIONS(1541), - [sym_float_literal] = ACTIONS(1541), - [sym_block_comment] = ACTIONS(3), - }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_identifier] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_macro_rules_BANG] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_impl] = ACTIONS(1547), - [anon_sym_let] = ACTIONS(1547), - [anon_sym_loop] = ACTIONS(1547), - [anon_sym_match] = ACTIONS(1547), - [anon_sym_mod] = ACTIONS(1547), - [anon_sym_pub] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_trait] = ACTIONS(1547), - [anon_sym_type] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_unsafe] = ACTIONS(1547), - [anon_sym_use] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_POUND] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_COLON_COLON] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_move] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1545), - [aux_sym_string_literal_token1] = ACTIONS(1545), - [sym_char_literal] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_crate] = ACTIONS(1547), - [sym_metavariable] = ACTIONS(1545), - [sym_raw_string_literal] = ACTIONS(1545), - [sym_float_literal] = ACTIONS(1545), + [361] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2241), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2251), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1549), - [sym_identifier] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_macro_rules_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_u8] = ACTIONS(1551), - [anon_sym_i8] = ACTIONS(1551), - [anon_sym_u16] = ACTIONS(1551), - [anon_sym_i16] = ACTIONS(1551), - [anon_sym_u32] = ACTIONS(1551), - [anon_sym_i32] = ACTIONS(1551), - [anon_sym_u64] = ACTIONS(1551), - [anon_sym_i64] = ACTIONS(1551), - [anon_sym_u128] = ACTIONS(1551), - [anon_sym_i128] = ACTIONS(1551), - [anon_sym_isize] = ACTIONS(1551), - [anon_sym_usize] = ACTIONS(1551), - [anon_sym_f32] = ACTIONS(1551), - [anon_sym_f64] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_str] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_enum] = ACTIONS(1551), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_impl] = ACTIONS(1551), - [anon_sym_let] = ACTIONS(1551), - [anon_sym_loop] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_mod] = ACTIONS(1551), - [anon_sym_pub] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [anon_sym_trait] = ACTIONS(1551), - [anon_sym_type] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_unsafe] = ACTIONS(1551), - [anon_sym_use] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1549), - [anon_sym_COLON_COLON] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_move] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1549), - [aux_sym_string_literal_token1] = ACTIONS(1549), - [sym_char_literal] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1551), - [sym_super] = ACTIONS(1551), - [sym_crate] = ACTIONS(1551), - [sym_metavariable] = ACTIONS(1549), - [sym_raw_string_literal] = ACTIONS(1549), - [sym_float_literal] = ACTIONS(1549), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1553), - [sym_identifier] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_macro_rules_BANG] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_impl] = ACTIONS(1555), - [anon_sym_let] = ACTIONS(1555), - [anon_sym_loop] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1555), - [anon_sym_mod] = ACTIONS(1555), - [anon_sym_pub] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_trait] = ACTIONS(1555), - [anon_sym_type] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_unsafe] = ACTIONS(1555), - [anon_sym_use] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_move] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1553), - [aux_sym_string_literal_token1] = ACTIONS(1553), - [sym_char_literal] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1555), - [sym_super] = ACTIONS(1555), - [sym_crate] = ACTIONS(1555), - [sym_metavariable] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1553), - [sym_float_literal] = ACTIONS(1553), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(698), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1372), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1374), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_macro_rules_BANG] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_u8] = ACTIONS(1559), - [anon_sym_i8] = ACTIONS(1559), - [anon_sym_u16] = ACTIONS(1559), - [anon_sym_i16] = ACTIONS(1559), - [anon_sym_u32] = ACTIONS(1559), - [anon_sym_i32] = ACTIONS(1559), - [anon_sym_u64] = ACTIONS(1559), - [anon_sym_i64] = ACTIONS(1559), - [anon_sym_u128] = ACTIONS(1559), - [anon_sym_i128] = ACTIONS(1559), - [anon_sym_isize] = ACTIONS(1559), - [anon_sym_usize] = ACTIONS(1559), - [anon_sym_f32] = ACTIONS(1559), - [anon_sym_f64] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_str] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_async] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_default] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_mod] = ACTIONS(1559), - [anon_sym_pub] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_trait] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_move] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1557), - [aux_sym_string_literal_token1] = ACTIONS(1557), - [sym_char_literal] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1559), - [sym_crate] = ACTIONS(1559), - [sym_metavariable] = ACTIONS(1557), - [sym_raw_string_literal] = ACTIONS(1557), - [sym_float_literal] = ACTIONS(1557), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1382), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1561), - [sym_identifier] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_macro_rules_BANG] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_default] = ACTIONS(1563), - [anon_sym_enum] = ACTIONS(1563), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_impl] = ACTIONS(1563), - [anon_sym_let] = ACTIONS(1563), - [anon_sym_loop] = ACTIONS(1563), - [anon_sym_match] = ACTIONS(1563), - [anon_sym_mod] = ACTIONS(1563), - [anon_sym_pub] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_struct] = ACTIONS(1563), - [anon_sym_trait] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_union] = ACTIONS(1563), - [anon_sym_unsafe] = ACTIONS(1563), - [anon_sym_use] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_POUND] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_COLON_COLON] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_move] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1561), - [aux_sym_string_literal_token1] = ACTIONS(1561), - [sym_char_literal] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1563), - [sym_super] = ACTIONS(1563), - [sym_crate] = ACTIONS(1563), - [sym_metavariable] = ACTIONS(1561), - [sym_raw_string_literal] = ACTIONS(1561), - [sym_float_literal] = ACTIONS(1561), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(702), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1384), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_macro_rules_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u128] = ACTIONS(1567), - [anon_sym_i128] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_str] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_default] = ACTIONS(1567), - [anon_sym_enum] = ACTIONS(1567), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_impl] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_loop] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_mod] = ACTIONS(1567), - [anon_sym_pub] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_struct] = ACTIONS(1567), - [anon_sym_trait] = ACTIONS(1567), - [anon_sym_type] = ACTIONS(1567), - [anon_sym_union] = ACTIONS(1567), - [anon_sym_unsafe] = ACTIONS(1567), - [anon_sym_use] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1567), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_move] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1565), - [aux_sym_string_literal_token1] = ACTIONS(1565), - [sym_char_literal] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1567), - [sym_crate] = ACTIONS(1567), - [sym_metavariable] = ACTIONS(1565), - [sym_raw_string_literal] = ACTIONS(1565), - [sym_float_literal] = ACTIONS(1565), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(3003), + [sym_lifetime] = STATE(702), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3004), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1894), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1386), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_crate] = ACTIONS(1366), + [sym_metavariable] = ACTIONS(1368), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1569), - [sym_identifier] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_macro_rules_BANG] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_u8] = ACTIONS(1571), - [anon_sym_i8] = ACTIONS(1571), - [anon_sym_u16] = ACTIONS(1571), - [anon_sym_i16] = ACTIONS(1571), - [anon_sym_u32] = ACTIONS(1571), - [anon_sym_i32] = ACTIONS(1571), - [anon_sym_u64] = ACTIONS(1571), - [anon_sym_i64] = ACTIONS(1571), - [anon_sym_u128] = ACTIONS(1571), - [anon_sym_i128] = ACTIONS(1571), - [anon_sym_isize] = ACTIONS(1571), - [anon_sym_usize] = ACTIONS(1571), - [anon_sym_f32] = ACTIONS(1571), - [anon_sym_f64] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_str] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_enum] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_impl] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_mod] = ACTIONS(1571), - [anon_sym_pub] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(1571), - [anon_sym_trait] = ACTIONS(1571), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(1571), - [anon_sym_unsafe] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_move] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1569), - [aux_sym_string_literal_token1] = ACTIONS(1569), - [sym_char_literal] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1571), - [sym_crate] = ACTIONS(1571), - [sym_metavariable] = ACTIONS(1569), - [sym_raw_string_literal] = ACTIONS(1569), - [sym_float_literal] = ACTIONS(1569), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(698), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1388), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_macro_rules_BANG] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_u8] = ACTIONS(1575), - [anon_sym_i8] = ACTIONS(1575), - [anon_sym_u16] = ACTIONS(1575), - [anon_sym_i16] = ACTIONS(1575), - [anon_sym_u32] = ACTIONS(1575), - [anon_sym_i32] = ACTIONS(1575), - [anon_sym_u64] = ACTIONS(1575), - [anon_sym_i64] = ACTIONS(1575), - [anon_sym_u128] = ACTIONS(1575), - [anon_sym_i128] = ACTIONS(1575), - [anon_sym_isize] = ACTIONS(1575), - [anon_sym_usize] = ACTIONS(1575), - [anon_sym_f32] = ACTIONS(1575), - [anon_sym_f64] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_str] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_async] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_enum] = ACTIONS(1575), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_impl] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_pub] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_trait] = ACTIONS(1575), - [anon_sym_type] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_unsafe] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_move] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1573), - [aux_sym_string_literal_token1] = ACTIONS(1573), - [sym_char_literal] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1573), - [sym_raw_string_literal] = ACTIONS(1573), - [sym_float_literal] = ACTIONS(1573), + [sym_identifier] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_RBRACK] = ACTIONS(1394), + [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1392), + [anon_sym_PERCENT] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_AMP_AMP] = ACTIONS(1394), + [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_LT_LT] = ACTIONS(1392), + [anon_sym_GT_GT] = ACTIONS(1392), + [anon_sym_PLUS_EQ] = ACTIONS(1394), + [anon_sym_DASH_EQ] = ACTIONS(1394), + [anon_sym_STAR_EQ] = ACTIONS(1394), + [anon_sym_SLASH_EQ] = ACTIONS(1394), + [anon_sym_PERCENT_EQ] = ACTIONS(1394), + [anon_sym_CARET_EQ] = ACTIONS(1394), + [anon_sym_AMP_EQ] = ACTIONS(1394), + [anon_sym_PIPE_EQ] = ACTIONS(1394), + [anon_sym_LT_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_GT_EQ] = ACTIONS(1394), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [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_str] = ACTIONS(1392), + [anon_sym_char] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_as] = ACTIONS(1392), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_unsafe] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_move] = ACTIONS(1392), + [sym_integer_literal] = ACTIONS(1394), + [aux_sym_string_literal_token1] = ACTIONS(1394), + [sym_char_literal] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1392), + [anon_sym_false] = ACTIONS(1392), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1392), + [sym_super] = ACTIONS(1392), + [sym_crate] = ACTIONS(1392), + [sym_metavariable] = ACTIONS(1394), + [sym_raw_string_literal] = ACTIONS(1394), + [sym_float_literal] = ACTIONS(1394), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1577), - [sym_identifier] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_macro_rules_BANG] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_u8] = ACTIONS(1579), - [anon_sym_i8] = ACTIONS(1579), - [anon_sym_u16] = ACTIONS(1579), - [anon_sym_i16] = ACTIONS(1579), - [anon_sym_u32] = ACTIONS(1579), - [anon_sym_i32] = ACTIONS(1579), - [anon_sym_u64] = ACTIONS(1579), - [anon_sym_i64] = ACTIONS(1579), - [anon_sym_u128] = ACTIONS(1579), - [anon_sym_i128] = ACTIONS(1579), - [anon_sym_isize] = ACTIONS(1579), - [anon_sym_usize] = ACTIONS(1579), - [anon_sym_f32] = ACTIONS(1579), - [anon_sym_f64] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_str] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_impl] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_mod] = ACTIONS(1579), - [anon_sym_pub] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_trait] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_unsafe] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_move] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1577), - [aux_sym_string_literal_token1] = ACTIONS(1577), - [sym_char_literal] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_crate] = ACTIONS(1579), - [sym_metavariable] = ACTIONS(1577), - [sym_raw_string_literal] = ACTIONS(1577), - [sym_float_literal] = ACTIONS(1577), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(702), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1396), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_macro_rules_BANG] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u128] = ACTIONS(1583), - [anon_sym_i128] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_str] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_enum] = ACTIONS(1583), - [anon_sym_fn] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_impl] = ACTIONS(1583), - [anon_sym_let] = ACTIONS(1583), - [anon_sym_loop] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_mod] = ACTIONS(1583), - [anon_sym_pub] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_trait] = ACTIONS(1583), - [anon_sym_type] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_unsafe] = ACTIONS(1583), - [anon_sym_use] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_POUND] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_move] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1581), - [aux_sym_string_literal_token1] = ACTIONS(1581), - [sym_char_literal] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_crate] = ACTIONS(1583), - [sym_metavariable] = ACTIONS(1581), - [sym_raw_string_literal] = ACTIONS(1581), - [sym_float_literal] = ACTIONS(1581), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(2987), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2988), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1934), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_macro_rules_BANG] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_u8] = ACTIONS(1587), - [anon_sym_i8] = ACTIONS(1587), - [anon_sym_u16] = ACTIONS(1587), - [anon_sym_i16] = ACTIONS(1587), - [anon_sym_u32] = ACTIONS(1587), - [anon_sym_i32] = ACTIONS(1587), - [anon_sym_u64] = ACTIONS(1587), - [anon_sym_i64] = ACTIONS(1587), - [anon_sym_u128] = ACTIONS(1587), - [anon_sym_i128] = ACTIONS(1587), - [anon_sym_isize] = ACTIONS(1587), - [anon_sym_usize] = ACTIONS(1587), - [anon_sym_f32] = ACTIONS(1587), - [anon_sym_f64] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_str] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_async] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [anon_sym_fn] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_impl] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_pub] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_trait] = ACTIONS(1587), - [anon_sym_type] = ACTIONS(1587), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsafe] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_move] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1585), - [aux_sym_string_literal_token1] = ACTIONS(1585), - [sym_char_literal] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1587), - [sym_super] = ACTIONS(1587), - [sym_crate] = ACTIONS(1587), - [sym_metavariable] = ACTIONS(1585), - [sym_raw_string_literal] = ACTIONS(1585), - [sym_float_literal] = ACTIONS(1585), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(3003), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3004), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1894), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_crate] = ACTIONS(1366), + [sym_metavariable] = ACTIONS(1368), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1589), - [sym_identifier] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_macro_rules_BANG] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_async] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_default] = ACTIONS(1591), - [anon_sym_enum] = ACTIONS(1591), - [anon_sym_fn] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_impl] = ACTIONS(1591), - [anon_sym_let] = ACTIONS(1591), - [anon_sym_loop] = ACTIONS(1591), - [anon_sym_match] = ACTIONS(1591), - [anon_sym_mod] = ACTIONS(1591), - [anon_sym_pub] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_struct] = ACTIONS(1591), - [anon_sym_trait] = ACTIONS(1591), - [anon_sym_type] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [anon_sym_unsafe] = ACTIONS(1591), - [anon_sym_use] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_POUND] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_move] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1589), - [aux_sym_string_literal_token1] = ACTIONS(1589), - [sym_char_literal] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1591), - [sym_super] = ACTIONS(1591), - [sym_crate] = ACTIONS(1591), - [sym_metavariable] = ACTIONS(1589), - [sym_raw_string_literal] = ACTIONS(1589), - [sym_float_literal] = ACTIONS(1589), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(3001), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3002), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(1817), + [sym_scoped_type_identifier] = STATE(1775), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1593), - [sym_identifier] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_macro_rules_BANG] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1595), - [anon_sym_i8] = ACTIONS(1595), - [anon_sym_u16] = ACTIONS(1595), - [anon_sym_i16] = ACTIONS(1595), - [anon_sym_u32] = ACTIONS(1595), - [anon_sym_i32] = ACTIONS(1595), - [anon_sym_u64] = ACTIONS(1595), - [anon_sym_i64] = ACTIONS(1595), - [anon_sym_u128] = ACTIONS(1595), - [anon_sym_i128] = ACTIONS(1595), - [anon_sym_isize] = ACTIONS(1595), - [anon_sym_usize] = ACTIONS(1595), - [anon_sym_f32] = ACTIONS(1595), - [anon_sym_f64] = ACTIONS(1595), - [anon_sym_bool] = ACTIONS(1595), - [anon_sym_str] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_async] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_default] = ACTIONS(1595), - [anon_sym_enum] = ACTIONS(1595), - [anon_sym_fn] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_impl] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_loop] = ACTIONS(1595), - [anon_sym_match] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1595), - [anon_sym_pub] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_struct] = ACTIONS(1595), - [anon_sym_trait] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_union] = ACTIONS(1595), - [anon_sym_unsafe] = ACTIONS(1595), - [anon_sym_use] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PIPE] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1595), - [sym_integer_literal] = ACTIONS(1593), - [aux_sym_string_literal_token1] = ACTIONS(1593), - [sym_char_literal] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1595), - [sym_super] = ACTIONS(1595), - [sym_crate] = ACTIONS(1595), - [sym_metavariable] = ACTIONS(1593), - [sym_raw_string_literal] = ACTIONS(1593), - [sym_float_literal] = ACTIONS(1593), + [sym_identifier] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_EQ_GT] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1392), + [anon_sym_PERCENT] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_AMP_AMP] = ACTIONS(1394), + [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_LT_LT] = ACTIONS(1392), + [anon_sym_GT_GT] = ACTIONS(1392), + [anon_sym_PLUS_EQ] = ACTIONS(1394), + [anon_sym_DASH_EQ] = ACTIONS(1394), + [anon_sym_STAR_EQ] = ACTIONS(1394), + [anon_sym_SLASH_EQ] = ACTIONS(1394), + [anon_sym_PERCENT_EQ] = ACTIONS(1394), + [anon_sym_CARET_EQ] = ACTIONS(1394), + [anon_sym_AMP_EQ] = ACTIONS(1394), + [anon_sym_PIPE_EQ] = ACTIONS(1394), + [anon_sym_LT_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_GT_EQ] = ACTIONS(1394), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [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_str] = ACTIONS(1392), + [anon_sym_char] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_as] = ACTIONS(1392), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_unsafe] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_move] = ACTIONS(1392), + [sym_integer_literal] = ACTIONS(1394), + [aux_sym_string_literal_token1] = ACTIONS(1394), + [sym_char_literal] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1392), + [anon_sym_false] = ACTIONS(1392), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1392), + [sym_super] = ACTIONS(1392), + [sym_crate] = ACTIONS(1392), + [sym_metavariable] = ACTIONS(1394), + [sym_raw_string_literal] = ACTIONS(1394), + [sym_float_literal] = ACTIONS(1394), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1597), - [sym_identifier] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_macro_rules_BANG] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_u8] = ACTIONS(1599), - [anon_sym_i8] = ACTIONS(1599), - [anon_sym_u16] = ACTIONS(1599), - [anon_sym_i16] = ACTIONS(1599), - [anon_sym_u32] = ACTIONS(1599), - [anon_sym_i32] = ACTIONS(1599), - [anon_sym_u64] = ACTIONS(1599), - [anon_sym_i64] = ACTIONS(1599), - [anon_sym_u128] = ACTIONS(1599), - [anon_sym_i128] = ACTIONS(1599), - [anon_sym_isize] = ACTIONS(1599), - [anon_sym_usize] = ACTIONS(1599), - [anon_sym_f32] = ACTIONS(1599), - [anon_sym_f64] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_str] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_default] = ACTIONS(1599), - [anon_sym_enum] = ACTIONS(1599), - [anon_sym_fn] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_impl] = ACTIONS(1599), - [anon_sym_let] = ACTIONS(1599), - [anon_sym_loop] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_mod] = ACTIONS(1599), - [anon_sym_pub] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_struct] = ACTIONS(1599), - [anon_sym_trait] = ACTIONS(1599), - [anon_sym_type] = ACTIONS(1599), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsafe] = ACTIONS(1599), - [anon_sym_use] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_POUND] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_move] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1597), - [aux_sym_string_literal_token1] = ACTIONS(1597), - [sym_char_literal] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1599), - [sym_super] = ACTIONS(1599), - [sym_crate] = ACTIONS(1599), - [sym_metavariable] = ACTIONS(1597), - [sym_raw_string_literal] = ACTIONS(1597), - [sym_float_literal] = ACTIONS(1597), + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LT] = ACTIONS(1402), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_DASH_GT] = ACTIONS(1402), + [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_str] = ACTIONS(1400), + [anon_sym_char] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsafe] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1601), - [sym_identifier] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_macro_rules_BANG] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1603), - [anon_sym_enum] = ACTIONS(1603), - [anon_sym_fn] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_impl] = ACTIONS(1603), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_loop] = ACTIONS(1603), - [anon_sym_match] = ACTIONS(1603), - [anon_sym_mod] = ACTIONS(1603), - [anon_sym_pub] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_struct] = ACTIONS(1603), - [anon_sym_trait] = ACTIONS(1603), - [anon_sym_type] = ACTIONS(1603), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1603), - [anon_sym_use] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1603), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_DOT_DOT] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_move] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1601), - [aux_sym_string_literal_token1] = ACTIONS(1601), - [sym_char_literal] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1603), - [sym_super] = ACTIONS(1603), - [sym_crate] = ACTIONS(1603), - [sym_metavariable] = ACTIONS(1601), - [sym_raw_string_literal] = ACTIONS(1601), - [sym_float_literal] = ACTIONS(1601), + [sym__attr] = STATE(2920), + [sym_custom_attr] = STATE(2920), + [sym_built_in_attr] = STATE(2920), + [sym__built_in_attr_path] = STATE(2234), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_scoped_identifier] = STATE(1933), + [sym_identifier] = ACTIONS(1404), + [anon_sym_path] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_cfg] = ACTIONS(1406), + [anon_sym_cfg_attr] = ACTIONS(1406), + [anon_sym_test] = ACTIONS(1406), + [anon_sym_ignore] = ACTIONS(1406), + [anon_sym_should_panic] = ACTIONS(1406), + [anon_sym_derive] = ACTIONS(1406), + [anon_sym_automatically_derived] = ACTIONS(1406), + [anon_sym_macro_export] = ACTIONS(1406), + [anon_sym_macro_use] = ACTIONS(1406), + [anon_sym_proc_macro] = ACTIONS(1406), + [anon_sym_proc_macro_derive] = ACTIONS(1406), + [anon_sym_proc_macro_attribute] = ACTIONS(1406), + [anon_sym_allow] = ACTIONS(1406), + [anon_sym_warn] = ACTIONS(1406), + [anon_sym_deny] = ACTIONS(1406), + [anon_sym_forbid] = ACTIONS(1406), + [anon_sym_deprecated] = ACTIONS(1406), + [anon_sym_must_use] = ACTIONS(1406), + [anon_sym_link] = ACTIONS(1406), + [anon_sym_link_name] = ACTIONS(1406), + [anon_sym_no_link] = ACTIONS(1406), + [anon_sym_repr] = ACTIONS(1406), + [anon_sym_crate_type] = ACTIONS(1406), + [anon_sym_no_main] = ACTIONS(1406), + [anon_sym_export_name] = ACTIONS(1406), + [anon_sym_link_section] = ACTIONS(1406), + [anon_sym_no_mangle] = ACTIONS(1406), + [anon_sym_used] = ACTIONS(1406), + [anon_sym_crate_name] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_cold] = ACTIONS(1406), + [anon_sym_no_builtins] = ACTIONS(1406), + [anon_sym_target_feature] = ACTIONS(1406), + [anon_sym_track_caller] = ACTIONS(1406), + [anon_sym_doc] = ACTIONS(1406), + [anon_sym_no_std] = ACTIONS(1406), + [anon_sym_no_implicit_prelude] = ACTIONS(1406), + [anon_sym_recursion_limit] = ACTIONS(1406), + [anon_sym_type_length_limit] = ACTIONS(1406), + [anon_sym_panic_handler] = ACTIONS(1406), + [anon_sym_global_allocator] = ACTIONS(1406), + [anon_sym_windows_subsystem] = ACTIONS(1406), + [anon_sym_feature] = ACTIONS(1406), + [anon_sym_non_exhaustive] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_macro_rules_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_RBRACE] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1607), - [anon_sym_i8] = ACTIONS(1607), - [anon_sym_u16] = ACTIONS(1607), - [anon_sym_i16] = ACTIONS(1607), - [anon_sym_u32] = ACTIONS(1607), - [anon_sym_i32] = ACTIONS(1607), - [anon_sym_u64] = ACTIONS(1607), - [anon_sym_i64] = ACTIONS(1607), - [anon_sym_u128] = ACTIONS(1607), - [anon_sym_i128] = ACTIONS(1607), - [anon_sym_isize] = ACTIONS(1607), - [anon_sym_usize] = ACTIONS(1607), - [anon_sym_f32] = ACTIONS(1607), - [anon_sym_f64] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_str] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_default] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_impl] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1607), - [anon_sym_pub] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_struct] = ACTIONS(1607), - [anon_sym_trait] = ACTIONS(1607), - [anon_sym_type] = ACTIONS(1607), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsafe] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_move] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1605), - [sym_raw_string_literal] = ACTIONS(1605), - [sym_float_literal] = ACTIONS(1605), + [sym__attr] = STATE(2940), + [sym_custom_attr] = STATE(2940), + [sym_built_in_attr] = STATE(2940), + [sym__built_in_attr_path] = STATE(2234), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_scoped_identifier] = STATE(1933), + [sym_identifier] = ACTIONS(1404), + [anon_sym_path] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_cfg] = ACTIONS(1406), + [anon_sym_cfg_attr] = ACTIONS(1406), + [anon_sym_test] = ACTIONS(1406), + [anon_sym_ignore] = ACTIONS(1406), + [anon_sym_should_panic] = ACTIONS(1406), + [anon_sym_derive] = ACTIONS(1406), + [anon_sym_automatically_derived] = ACTIONS(1406), + [anon_sym_macro_export] = ACTIONS(1406), + [anon_sym_macro_use] = ACTIONS(1406), + [anon_sym_proc_macro] = ACTIONS(1406), + [anon_sym_proc_macro_derive] = ACTIONS(1406), + [anon_sym_proc_macro_attribute] = ACTIONS(1406), + [anon_sym_allow] = ACTIONS(1406), + [anon_sym_warn] = ACTIONS(1406), + [anon_sym_deny] = ACTIONS(1406), + [anon_sym_forbid] = ACTIONS(1406), + [anon_sym_deprecated] = ACTIONS(1406), + [anon_sym_must_use] = ACTIONS(1406), + [anon_sym_link] = ACTIONS(1406), + [anon_sym_link_name] = ACTIONS(1406), + [anon_sym_no_link] = ACTIONS(1406), + [anon_sym_repr] = ACTIONS(1406), + [anon_sym_crate_type] = ACTIONS(1406), + [anon_sym_no_main] = ACTIONS(1406), + [anon_sym_export_name] = ACTIONS(1406), + [anon_sym_link_section] = ACTIONS(1406), + [anon_sym_no_mangle] = ACTIONS(1406), + [anon_sym_used] = ACTIONS(1406), + [anon_sym_crate_name] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_cold] = ACTIONS(1406), + [anon_sym_no_builtins] = ACTIONS(1406), + [anon_sym_target_feature] = ACTIONS(1406), + [anon_sym_track_caller] = ACTIONS(1406), + [anon_sym_doc] = ACTIONS(1406), + [anon_sym_no_std] = ACTIONS(1406), + [anon_sym_no_implicit_prelude] = ACTIONS(1406), + [anon_sym_recursion_limit] = ACTIONS(1406), + [anon_sym_type_length_limit] = ACTIONS(1406), + [anon_sym_panic_handler] = ACTIONS(1406), + [anon_sym_global_allocator] = ACTIONS(1406), + [anon_sym_windows_subsystem] = ACTIONS(1406), + [anon_sym_feature] = ACTIONS(1406), + [anon_sym_non_exhaustive] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_macro_rules_BANG] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1611), - [anon_sym_i8] = ACTIONS(1611), - [anon_sym_u16] = ACTIONS(1611), - [anon_sym_i16] = ACTIONS(1611), - [anon_sym_u32] = ACTIONS(1611), - [anon_sym_i32] = ACTIONS(1611), - [anon_sym_u64] = ACTIONS(1611), - [anon_sym_i64] = ACTIONS(1611), - [anon_sym_u128] = ACTIONS(1611), - [anon_sym_i128] = ACTIONS(1611), - [anon_sym_isize] = ACTIONS(1611), - [anon_sym_usize] = ACTIONS(1611), - [anon_sym_f32] = ACTIONS(1611), - [anon_sym_f64] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_str] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1611), - [anon_sym_enum] = ACTIONS(1611), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_impl] = ACTIONS(1611), - [anon_sym_let] = ACTIONS(1611), - [anon_sym_loop] = ACTIONS(1611), - [anon_sym_match] = ACTIONS(1611), - [anon_sym_mod] = ACTIONS(1611), - [anon_sym_pub] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1611), - [anon_sym_trait] = ACTIONS(1611), - [anon_sym_type] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1611), - [anon_sym_unsafe] = ACTIONS(1611), - [anon_sym_use] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_move] = ACTIONS(1611), - [sym_integer_literal] = ACTIONS(1609), - [aux_sym_string_literal_token1] = ACTIONS(1609), - [sym_char_literal] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1611), - [sym_super] = ACTIONS(1611), - [sym_crate] = ACTIONS(1611), - [sym_metavariable] = ACTIONS(1609), - [sym_raw_string_literal] = ACTIONS(1609), - [sym_float_literal] = ACTIONS(1609), + [sym__attr] = STATE(2859), + [sym_custom_attr] = STATE(2859), + [sym_built_in_attr] = STATE(2859), + [sym__built_in_attr_path] = STATE(2234), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_scoped_identifier] = STATE(1933), + [sym_identifier] = ACTIONS(1404), + [anon_sym_path] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_cfg] = ACTIONS(1406), + [anon_sym_cfg_attr] = ACTIONS(1406), + [anon_sym_test] = ACTIONS(1406), + [anon_sym_ignore] = ACTIONS(1406), + [anon_sym_should_panic] = ACTIONS(1406), + [anon_sym_derive] = ACTIONS(1406), + [anon_sym_automatically_derived] = ACTIONS(1406), + [anon_sym_macro_export] = ACTIONS(1406), + [anon_sym_macro_use] = ACTIONS(1406), + [anon_sym_proc_macro] = ACTIONS(1406), + [anon_sym_proc_macro_derive] = ACTIONS(1406), + [anon_sym_proc_macro_attribute] = ACTIONS(1406), + [anon_sym_allow] = ACTIONS(1406), + [anon_sym_warn] = ACTIONS(1406), + [anon_sym_deny] = ACTIONS(1406), + [anon_sym_forbid] = ACTIONS(1406), + [anon_sym_deprecated] = ACTIONS(1406), + [anon_sym_must_use] = ACTIONS(1406), + [anon_sym_link] = ACTIONS(1406), + [anon_sym_link_name] = ACTIONS(1406), + [anon_sym_no_link] = ACTIONS(1406), + [anon_sym_repr] = ACTIONS(1406), + [anon_sym_crate_type] = ACTIONS(1406), + [anon_sym_no_main] = ACTIONS(1406), + [anon_sym_export_name] = ACTIONS(1406), + [anon_sym_link_section] = ACTIONS(1406), + [anon_sym_no_mangle] = ACTIONS(1406), + [anon_sym_used] = ACTIONS(1406), + [anon_sym_crate_name] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_cold] = ACTIONS(1406), + [anon_sym_no_builtins] = ACTIONS(1406), + [anon_sym_target_feature] = ACTIONS(1406), + [anon_sym_track_caller] = ACTIONS(1406), + [anon_sym_doc] = ACTIONS(1406), + [anon_sym_no_std] = ACTIONS(1406), + [anon_sym_no_implicit_prelude] = ACTIONS(1406), + [anon_sym_recursion_limit] = ACTIONS(1406), + [anon_sym_type_length_limit] = ACTIONS(1406), + [anon_sym_panic_handler] = ACTIONS(1406), + [anon_sym_global_allocator] = ACTIONS(1406), + [anon_sym_windows_subsystem] = ACTIONS(1406), + [anon_sym_feature] = ACTIONS(1406), + [anon_sym_non_exhaustive] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1613), - [sym_identifier] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_macro_rules_BANG] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_u8] = ACTIONS(1615), - [anon_sym_i8] = ACTIONS(1615), - [anon_sym_u16] = ACTIONS(1615), - [anon_sym_i16] = ACTIONS(1615), - [anon_sym_u32] = ACTIONS(1615), - [anon_sym_i32] = ACTIONS(1615), - [anon_sym_u64] = ACTIONS(1615), - [anon_sym_i64] = ACTIONS(1615), - [anon_sym_u128] = ACTIONS(1615), - [anon_sym_i128] = ACTIONS(1615), - [anon_sym_isize] = ACTIONS(1615), - [anon_sym_usize] = ACTIONS(1615), - [anon_sym_f32] = ACTIONS(1615), - [anon_sym_f64] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_str] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1615), - [anon_sym_async] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1615), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_loop] = ACTIONS(1615), - [anon_sym_match] = ACTIONS(1615), - [anon_sym_mod] = ACTIONS(1615), - [anon_sym_pub] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_trait] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1615), - [anon_sym_use] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_COLON_COLON] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_PIPE] = ACTIONS(1613), - [anon_sym_move] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1613), - [aux_sym_string_literal_token1] = ACTIONS(1613), - [sym_char_literal] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1615), - [sym_super] = ACTIONS(1615), - [sym_crate] = ACTIONS(1615), - [sym_metavariable] = ACTIONS(1613), - [sym_raw_string_literal] = ACTIONS(1613), - [sym_float_literal] = ACTIONS(1613), + [sym_else_clause] = STATE(410), + [sym_identifier] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PERCENT_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym__] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_POUND] = 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_str] = ACTIONS(988), + [anon_sym_char] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_ref] = ACTIONS(988), + [sym_mutable_specifier] = ACTIONS(988), + [anon_sym_else] = ACTIONS(1416), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(988), + [sym_super] = ACTIONS(988), + [sym_crate] = ACTIONS(988), + [sym_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(986), + [sym_float_literal] = ACTIONS(986), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1617), - [sym_identifier] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_macro_rules_BANG] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_u8] = ACTIONS(1619), - [anon_sym_i8] = ACTIONS(1619), - [anon_sym_u16] = ACTIONS(1619), - [anon_sym_i16] = ACTIONS(1619), - [anon_sym_u32] = ACTIONS(1619), - [anon_sym_i32] = ACTIONS(1619), - [anon_sym_u64] = ACTIONS(1619), - [anon_sym_i64] = ACTIONS(1619), - [anon_sym_u128] = ACTIONS(1619), - [anon_sym_i128] = ACTIONS(1619), - [anon_sym_isize] = ACTIONS(1619), - [anon_sym_usize] = ACTIONS(1619), - [anon_sym_f32] = ACTIONS(1619), - [anon_sym_f64] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_str] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_impl] = ACTIONS(1619), - [anon_sym_let] = ACTIONS(1619), - [anon_sym_loop] = ACTIONS(1619), - [anon_sym_match] = ACTIONS(1619), - [anon_sym_mod] = ACTIONS(1619), - [anon_sym_pub] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1619), - [anon_sym_trait] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(1619), - [anon_sym_unsafe] = ACTIONS(1619), - [anon_sym_use] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_POUND] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_extern] = ACTIONS(1619), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_COLON_COLON] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_move] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1617), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1617), - [sym_raw_string_literal] = ACTIONS(1617), - [sym_float_literal] = ACTIONS(1617), + [sym_else_clause] = STATE(395), + [sym_identifier] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(982), + [anon_sym_PERCENT] = ACTIONS(982), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT_LT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PERCENT_EQ] = ACTIONS(980), + [anon_sym_CARET_EQ] = ACTIONS(980), + [anon_sym_AMP_EQ] = ACTIONS(980), + [anon_sym_PIPE_EQ] = ACTIONS(980), + [anon_sym_LT_LT_EQ] = ACTIONS(980), + [anon_sym_GT_GT_EQ] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym__] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_COLON_COLON] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_u8] = ACTIONS(982), + [anon_sym_i8] = ACTIONS(982), + [anon_sym_u16] = ACTIONS(982), + [anon_sym_i16] = ACTIONS(982), + [anon_sym_u32] = ACTIONS(982), + [anon_sym_i32] = ACTIONS(982), + [anon_sym_u64] = ACTIONS(982), + [anon_sym_i64] = ACTIONS(982), + [anon_sym_u128] = ACTIONS(982), + [anon_sym_i128] = ACTIONS(982), + [anon_sym_isize] = ACTIONS(982), + [anon_sym_usize] = ACTIONS(982), + [anon_sym_f32] = ACTIONS(982), + [anon_sym_f64] = ACTIONS(982), + [anon_sym_bool] = ACTIONS(982), + [anon_sym_str] = ACTIONS(982), + [anon_sym_char] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_union] = ACTIONS(982), + [anon_sym_ref] = ACTIONS(982), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_else] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(980), + [aux_sym_string_literal_token1] = ACTIONS(980), + [sym_char_literal] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(982), + [sym_super] = ACTIONS(982), + [sym_crate] = ACTIONS(982), + [sym_metavariable] = ACTIONS(980), + [sym_raw_string_literal] = ACTIONS(980), + [sym_float_literal] = ACTIONS(980), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1621), - [sym_identifier] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_macro_rules_BANG] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_fn] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1623), - [anon_sym_let] = ACTIONS(1623), - [anon_sym_loop] = ACTIONS(1623), - [anon_sym_match] = ACTIONS(1623), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_pub] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_trait] = ACTIONS(1623), - [anon_sym_type] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1623), - [anon_sym_use] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_move] = ACTIONS(1623), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1621), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1623), - [sym_super] = ACTIONS(1623), - [sym_crate] = ACTIONS(1623), - [sym_metavariable] = ACTIONS(1621), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), + [sym__attr] = STATE(2970), + [sym_custom_attr] = STATE(2970), + [sym_built_in_attr] = STATE(2970), + [sym__built_in_attr_path] = STATE(2234), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_scoped_identifier] = STATE(1933), + [sym_identifier] = ACTIONS(1404), + [anon_sym_path] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_cfg] = ACTIONS(1406), + [anon_sym_cfg_attr] = ACTIONS(1406), + [anon_sym_test] = ACTIONS(1406), + [anon_sym_ignore] = ACTIONS(1406), + [anon_sym_should_panic] = ACTIONS(1406), + [anon_sym_derive] = ACTIONS(1406), + [anon_sym_automatically_derived] = ACTIONS(1406), + [anon_sym_macro_export] = ACTIONS(1406), + [anon_sym_macro_use] = ACTIONS(1406), + [anon_sym_proc_macro] = ACTIONS(1406), + [anon_sym_proc_macro_derive] = ACTIONS(1406), + [anon_sym_proc_macro_attribute] = ACTIONS(1406), + [anon_sym_allow] = ACTIONS(1406), + [anon_sym_warn] = ACTIONS(1406), + [anon_sym_deny] = ACTIONS(1406), + [anon_sym_forbid] = ACTIONS(1406), + [anon_sym_deprecated] = ACTIONS(1406), + [anon_sym_must_use] = ACTIONS(1406), + [anon_sym_link] = ACTIONS(1406), + [anon_sym_link_name] = ACTIONS(1406), + [anon_sym_no_link] = ACTIONS(1406), + [anon_sym_repr] = ACTIONS(1406), + [anon_sym_crate_type] = ACTIONS(1406), + [anon_sym_no_main] = ACTIONS(1406), + [anon_sym_export_name] = ACTIONS(1406), + [anon_sym_link_section] = ACTIONS(1406), + [anon_sym_no_mangle] = ACTIONS(1406), + [anon_sym_used] = ACTIONS(1406), + [anon_sym_crate_name] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_cold] = ACTIONS(1406), + [anon_sym_no_builtins] = ACTIONS(1406), + [anon_sym_target_feature] = ACTIONS(1406), + [anon_sym_track_caller] = ACTIONS(1406), + [anon_sym_doc] = ACTIONS(1406), + [anon_sym_no_std] = ACTIONS(1406), + [anon_sym_no_implicit_prelude] = ACTIONS(1406), + [anon_sym_recursion_limit] = ACTIONS(1406), + [anon_sym_type_length_limit] = ACTIONS(1406), + [anon_sym_panic_handler] = ACTIONS(1406), + [anon_sym_global_allocator] = ACTIONS(1406), + [anon_sym_windows_subsystem] = ACTIONS(1406), + [anon_sym_feature] = ACTIONS(1406), + [anon_sym_non_exhaustive] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1625), - [sym_identifier] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_macro_rules_BANG] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_RBRACE] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_u8] = ACTIONS(1627), - [anon_sym_i8] = ACTIONS(1627), - [anon_sym_u16] = ACTIONS(1627), - [anon_sym_i16] = ACTIONS(1627), - [anon_sym_u32] = ACTIONS(1627), - [anon_sym_i32] = ACTIONS(1627), - [anon_sym_u64] = ACTIONS(1627), - [anon_sym_i64] = ACTIONS(1627), - [anon_sym_u128] = ACTIONS(1627), - [anon_sym_i128] = ACTIONS(1627), - [anon_sym_isize] = ACTIONS(1627), - [anon_sym_usize] = ACTIONS(1627), - [anon_sym_f32] = ACTIONS(1627), - [anon_sym_f64] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_str] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_async] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_default] = ACTIONS(1627), - [anon_sym_enum] = ACTIONS(1627), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_impl] = ACTIONS(1627), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_loop] = ACTIONS(1627), - [anon_sym_match] = ACTIONS(1627), - [anon_sym_mod] = ACTIONS(1627), - [anon_sym_pub] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_struct] = ACTIONS(1627), - [anon_sym_trait] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_union] = ACTIONS(1627), - [anon_sym_unsafe] = ACTIONS(1627), - [anon_sym_use] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_POUND] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_extern] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_COLON_COLON] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_DOT_DOT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_move] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1625), - [aux_sym_string_literal_token1] = ACTIONS(1625), - [sym_char_literal] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1627), - [sym_super] = ACTIONS(1627), - [sym_crate] = ACTIONS(1627), - [sym_metavariable] = ACTIONS(1625), - [sym_raw_string_literal] = ACTIONS(1625), - [sym_float_literal] = ACTIONS(1625), + [sym__attr] = STATE(3013), + [sym_custom_attr] = STATE(3013), + [sym_built_in_attr] = STATE(3013), + [sym__built_in_attr_path] = STATE(2234), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_scoped_identifier] = STATE(1933), + [sym_identifier] = ACTIONS(1404), + [anon_sym_path] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_cfg] = ACTIONS(1406), + [anon_sym_cfg_attr] = ACTIONS(1406), + [anon_sym_test] = ACTIONS(1406), + [anon_sym_ignore] = ACTIONS(1406), + [anon_sym_should_panic] = ACTIONS(1406), + [anon_sym_derive] = ACTIONS(1406), + [anon_sym_automatically_derived] = ACTIONS(1406), + [anon_sym_macro_export] = ACTIONS(1406), + [anon_sym_macro_use] = ACTIONS(1406), + [anon_sym_proc_macro] = ACTIONS(1406), + [anon_sym_proc_macro_derive] = ACTIONS(1406), + [anon_sym_proc_macro_attribute] = ACTIONS(1406), + [anon_sym_allow] = ACTIONS(1406), + [anon_sym_warn] = ACTIONS(1406), + [anon_sym_deny] = ACTIONS(1406), + [anon_sym_forbid] = ACTIONS(1406), + [anon_sym_deprecated] = ACTIONS(1406), + [anon_sym_must_use] = ACTIONS(1406), + [anon_sym_link] = ACTIONS(1406), + [anon_sym_link_name] = ACTIONS(1406), + [anon_sym_no_link] = ACTIONS(1406), + [anon_sym_repr] = ACTIONS(1406), + [anon_sym_crate_type] = ACTIONS(1406), + [anon_sym_no_main] = ACTIONS(1406), + [anon_sym_export_name] = ACTIONS(1406), + [anon_sym_link_section] = ACTIONS(1406), + [anon_sym_no_mangle] = ACTIONS(1406), + [anon_sym_used] = ACTIONS(1406), + [anon_sym_crate_name] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_cold] = ACTIONS(1406), + [anon_sym_no_builtins] = ACTIONS(1406), + [anon_sym_target_feature] = ACTIONS(1406), + [anon_sym_track_caller] = ACTIONS(1406), + [anon_sym_doc] = ACTIONS(1406), + [anon_sym_no_std] = ACTIONS(1406), + [anon_sym_no_implicit_prelude] = ACTIONS(1406), + [anon_sym_recursion_limit] = ACTIONS(1406), + [anon_sym_type_length_limit] = ACTIONS(1406), + [anon_sym_panic_handler] = ACTIONS(1406), + [anon_sym_global_allocator] = ACTIONS(1406), + [anon_sym_windows_subsystem] = ACTIONS(1406), + [anon_sym_feature] = ACTIONS(1406), + [anon_sym_non_exhaustive] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1629), - [sym_identifier] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_macro_rules_BANG] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_u8] = ACTIONS(1631), - [anon_sym_i8] = ACTIONS(1631), - [anon_sym_u16] = ACTIONS(1631), - [anon_sym_i16] = ACTIONS(1631), - [anon_sym_u32] = ACTIONS(1631), - [anon_sym_i32] = ACTIONS(1631), - [anon_sym_u64] = ACTIONS(1631), - [anon_sym_i64] = ACTIONS(1631), - [anon_sym_u128] = ACTIONS(1631), - [anon_sym_i128] = ACTIONS(1631), - [anon_sym_isize] = ACTIONS(1631), - [anon_sym_usize] = ACTIONS(1631), - [anon_sym_f32] = ACTIONS(1631), - [anon_sym_f64] = ACTIONS(1631), - [anon_sym_bool] = ACTIONS(1631), - [anon_sym_str] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_default] = ACTIONS(1631), - [anon_sym_enum] = ACTIONS(1631), - [anon_sym_fn] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_impl] = ACTIONS(1631), - [anon_sym_let] = ACTIONS(1631), - [anon_sym_loop] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_mod] = ACTIONS(1631), - [anon_sym_pub] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1631), - [anon_sym_struct] = ACTIONS(1631), - [anon_sym_trait] = ACTIONS(1631), - [anon_sym_type] = ACTIONS(1631), - [anon_sym_union] = ACTIONS(1631), - [anon_sym_unsafe] = ACTIONS(1631), - [anon_sym_use] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1629), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_move] = ACTIONS(1631), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1629), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1629), - [sym_raw_string_literal] = ACTIONS(1629), - [sym_float_literal] = ACTIONS(1629), + [sym__attr] = STATE(2906), + [sym_custom_attr] = STATE(2906), + [sym_built_in_attr] = STATE(2906), + [sym__built_in_attr_path] = STATE(2234), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_scoped_identifier] = STATE(1933), + [sym_identifier] = ACTIONS(1404), + [anon_sym_path] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_cfg] = ACTIONS(1406), + [anon_sym_cfg_attr] = ACTIONS(1406), + [anon_sym_test] = ACTIONS(1406), + [anon_sym_ignore] = ACTIONS(1406), + [anon_sym_should_panic] = ACTIONS(1406), + [anon_sym_derive] = ACTIONS(1406), + [anon_sym_automatically_derived] = ACTIONS(1406), + [anon_sym_macro_export] = ACTIONS(1406), + [anon_sym_macro_use] = ACTIONS(1406), + [anon_sym_proc_macro] = ACTIONS(1406), + [anon_sym_proc_macro_derive] = ACTIONS(1406), + [anon_sym_proc_macro_attribute] = ACTIONS(1406), + [anon_sym_allow] = ACTIONS(1406), + [anon_sym_warn] = ACTIONS(1406), + [anon_sym_deny] = ACTIONS(1406), + [anon_sym_forbid] = ACTIONS(1406), + [anon_sym_deprecated] = ACTIONS(1406), + [anon_sym_must_use] = ACTIONS(1406), + [anon_sym_link] = ACTIONS(1406), + [anon_sym_link_name] = ACTIONS(1406), + [anon_sym_no_link] = ACTIONS(1406), + [anon_sym_repr] = ACTIONS(1406), + [anon_sym_crate_type] = ACTIONS(1406), + [anon_sym_no_main] = ACTIONS(1406), + [anon_sym_export_name] = ACTIONS(1406), + [anon_sym_link_section] = ACTIONS(1406), + [anon_sym_no_mangle] = ACTIONS(1406), + [anon_sym_used] = ACTIONS(1406), + [anon_sym_crate_name] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_cold] = ACTIONS(1406), + [anon_sym_no_builtins] = ACTIONS(1406), + [anon_sym_target_feature] = ACTIONS(1406), + [anon_sym_track_caller] = ACTIONS(1406), + [anon_sym_doc] = ACTIONS(1406), + [anon_sym_no_std] = ACTIONS(1406), + [anon_sym_no_implicit_prelude] = ACTIONS(1406), + [anon_sym_recursion_limit] = ACTIONS(1406), + [anon_sym_type_length_limit] = ACTIONS(1406), + [anon_sym_panic_handler] = ACTIONS(1406), + [anon_sym_global_allocator] = ACTIONS(1406), + [anon_sym_windows_subsystem] = ACTIONS(1406), + [anon_sym_feature] = ACTIONS(1406), + [anon_sym_non_exhaustive] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1633), - [sym_identifier] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_macro_rules_BANG] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_u8] = ACTIONS(1635), - [anon_sym_i8] = ACTIONS(1635), - [anon_sym_u16] = ACTIONS(1635), - [anon_sym_i16] = ACTIONS(1635), - [anon_sym_u32] = ACTIONS(1635), - [anon_sym_i32] = ACTIONS(1635), - [anon_sym_u64] = ACTIONS(1635), - [anon_sym_i64] = ACTIONS(1635), - [anon_sym_u128] = ACTIONS(1635), - [anon_sym_i128] = ACTIONS(1635), - [anon_sym_isize] = ACTIONS(1635), - [anon_sym_usize] = ACTIONS(1635), - [anon_sym_f32] = ACTIONS(1635), - [anon_sym_f64] = ACTIONS(1635), - [anon_sym_bool] = ACTIONS(1635), - [anon_sym_str] = ACTIONS(1635), - [anon_sym_char] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1635), - [anon_sym_break] = ACTIONS(1635), - [anon_sym_const] = ACTIONS(1635), - [anon_sym_continue] = ACTIONS(1635), - [anon_sym_default] = ACTIONS(1635), - [anon_sym_enum] = ACTIONS(1635), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1635), - [anon_sym_impl] = ACTIONS(1635), - [anon_sym_let] = ACTIONS(1635), - [anon_sym_loop] = ACTIONS(1635), - [anon_sym_match] = ACTIONS(1635), - [anon_sym_mod] = ACTIONS(1635), - [anon_sym_pub] = ACTIONS(1635), - [anon_sym_return] = ACTIONS(1635), - [anon_sym_static] = ACTIONS(1635), - [anon_sym_struct] = ACTIONS(1635), - [anon_sym_trait] = ACTIONS(1635), - [anon_sym_type] = ACTIONS(1635), - [anon_sym_union] = ACTIONS(1635), - [anon_sym_unsafe] = ACTIONS(1635), - [anon_sym_use] = ACTIONS(1635), - [anon_sym_while] = ACTIONS(1635), - [anon_sym_POUND] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_COLON_COLON] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_move] = ACTIONS(1635), - [sym_integer_literal] = ACTIONS(1633), - [aux_sym_string_literal_token1] = ACTIONS(1633), - [sym_char_literal] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1635), - [anon_sym_false] = ACTIONS(1635), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1635), - [sym_super] = ACTIONS(1635), - [sym_crate] = ACTIONS(1635), - [sym_metavariable] = ACTIONS(1633), - [sym_raw_string_literal] = ACTIONS(1633), - [sym_float_literal] = ACTIONS(1633), + [sym__attr] = STATE(2891), + [sym_custom_attr] = STATE(2891), + [sym_built_in_attr] = STATE(2891), + [sym__built_in_attr_path] = STATE(2234), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_scoped_identifier] = STATE(1933), + [sym_identifier] = ACTIONS(1404), + [anon_sym_path] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_cfg] = ACTIONS(1406), + [anon_sym_cfg_attr] = ACTIONS(1406), + [anon_sym_test] = ACTIONS(1406), + [anon_sym_ignore] = ACTIONS(1406), + [anon_sym_should_panic] = ACTIONS(1406), + [anon_sym_derive] = ACTIONS(1406), + [anon_sym_automatically_derived] = ACTIONS(1406), + [anon_sym_macro_export] = ACTIONS(1406), + [anon_sym_macro_use] = ACTIONS(1406), + [anon_sym_proc_macro] = ACTIONS(1406), + [anon_sym_proc_macro_derive] = ACTIONS(1406), + [anon_sym_proc_macro_attribute] = ACTIONS(1406), + [anon_sym_allow] = ACTIONS(1406), + [anon_sym_warn] = ACTIONS(1406), + [anon_sym_deny] = ACTIONS(1406), + [anon_sym_forbid] = ACTIONS(1406), + [anon_sym_deprecated] = ACTIONS(1406), + [anon_sym_must_use] = ACTIONS(1406), + [anon_sym_link] = ACTIONS(1406), + [anon_sym_link_name] = ACTIONS(1406), + [anon_sym_no_link] = ACTIONS(1406), + [anon_sym_repr] = ACTIONS(1406), + [anon_sym_crate_type] = ACTIONS(1406), + [anon_sym_no_main] = ACTIONS(1406), + [anon_sym_export_name] = ACTIONS(1406), + [anon_sym_link_section] = ACTIONS(1406), + [anon_sym_no_mangle] = ACTIONS(1406), + [anon_sym_used] = ACTIONS(1406), + [anon_sym_crate_name] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_cold] = ACTIONS(1406), + [anon_sym_no_builtins] = ACTIONS(1406), + [anon_sym_target_feature] = ACTIONS(1406), + [anon_sym_track_caller] = ACTIONS(1406), + [anon_sym_doc] = ACTIONS(1406), + [anon_sym_no_std] = ACTIONS(1406), + [anon_sym_no_implicit_prelude] = ACTIONS(1406), + [anon_sym_recursion_limit] = ACTIONS(1406), + [anon_sym_type_length_limit] = ACTIONS(1406), + [anon_sym_panic_handler] = ACTIONS(1406), + [anon_sym_global_allocator] = ACTIONS(1406), + [anon_sym_windows_subsystem] = ACTIONS(1406), + [anon_sym_feature] = ACTIONS(1406), + [anon_sym_non_exhaustive] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1637), - [sym_identifier] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_macro_rules_BANG] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_u8] = ACTIONS(1639), - [anon_sym_i8] = ACTIONS(1639), - [anon_sym_u16] = ACTIONS(1639), - [anon_sym_i16] = ACTIONS(1639), - [anon_sym_u32] = ACTIONS(1639), - [anon_sym_i32] = ACTIONS(1639), - [anon_sym_u64] = ACTIONS(1639), - [anon_sym_i64] = ACTIONS(1639), - [anon_sym_u128] = ACTIONS(1639), - [anon_sym_i128] = ACTIONS(1639), - [anon_sym_isize] = ACTIONS(1639), - [anon_sym_usize] = ACTIONS(1639), - [anon_sym_f32] = ACTIONS(1639), - [anon_sym_f64] = ACTIONS(1639), - [anon_sym_bool] = ACTIONS(1639), - [anon_sym_str] = ACTIONS(1639), - [anon_sym_char] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_async] = ACTIONS(1639), - [anon_sym_break] = ACTIONS(1639), - [anon_sym_const] = ACTIONS(1639), - [anon_sym_continue] = ACTIONS(1639), - [anon_sym_default] = ACTIONS(1639), - [anon_sym_enum] = ACTIONS(1639), - [anon_sym_fn] = ACTIONS(1639), - [anon_sym_for] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1639), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_loop] = ACTIONS(1639), - [anon_sym_match] = ACTIONS(1639), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_pub] = ACTIONS(1639), - [anon_sym_return] = ACTIONS(1639), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_struct] = ACTIONS(1639), - [anon_sym_trait] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1639), - [anon_sym_unsafe] = ACTIONS(1639), - [anon_sym_use] = ACTIONS(1639), - [anon_sym_while] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_COLON_COLON] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_move] = ACTIONS(1639), - [sym_integer_literal] = ACTIONS(1637), - [aux_sym_string_literal_token1] = ACTIONS(1637), - [sym_char_literal] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1639), - [sym_super] = ACTIONS(1639), - [sym_crate] = ACTIONS(1639), - [sym_metavariable] = ACTIONS(1637), - [sym_raw_string_literal] = ACTIONS(1637), - [sym_float_literal] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym__] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_COLON_COLON] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(1056), + [anon_sym_u8] = ACTIONS(1058), + [anon_sym_i8] = ACTIONS(1058), + [anon_sym_u16] = ACTIONS(1058), + [anon_sym_i16] = ACTIONS(1058), + [anon_sym_u32] = ACTIONS(1058), + [anon_sym_i32] = ACTIONS(1058), + [anon_sym_u64] = ACTIONS(1058), + [anon_sym_i64] = ACTIONS(1058), + [anon_sym_u128] = ACTIONS(1058), + [anon_sym_i128] = ACTIONS(1058), + [anon_sym_isize] = ACTIONS(1058), + [anon_sym_usize] = ACTIONS(1058), + [anon_sym_f32] = ACTIONS(1058), + [anon_sym_f64] = ACTIONS(1058), + [anon_sym_bool] = ACTIONS(1058), + [anon_sym_str] = ACTIONS(1058), + [anon_sym_char] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1058), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [sym_integer_literal] = ACTIONS(1056), + [aux_sym_string_literal_token1] = ACTIONS(1056), + [sym_char_literal] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1058), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1056), + [sym_raw_string_literal] = ACTIONS(1056), + [sym_float_literal] = ACTIONS(1056), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1641), - [sym_identifier] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_macro_rules_BANG] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_u8] = ACTIONS(1643), - [anon_sym_i8] = ACTIONS(1643), - [anon_sym_u16] = ACTIONS(1643), - [anon_sym_i16] = ACTIONS(1643), - [anon_sym_u32] = ACTIONS(1643), - [anon_sym_i32] = ACTIONS(1643), - [anon_sym_u64] = ACTIONS(1643), - [anon_sym_i64] = ACTIONS(1643), - [anon_sym_u128] = ACTIONS(1643), - [anon_sym_i128] = ACTIONS(1643), - [anon_sym_isize] = ACTIONS(1643), - [anon_sym_usize] = ACTIONS(1643), - [anon_sym_f32] = ACTIONS(1643), - [anon_sym_f64] = ACTIONS(1643), - [anon_sym_bool] = ACTIONS(1643), - [anon_sym_str] = ACTIONS(1643), - [anon_sym_char] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_default] = ACTIONS(1643), - [anon_sym_enum] = ACTIONS(1643), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_impl] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_mod] = ACTIONS(1643), - [anon_sym_pub] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_static] = ACTIONS(1643), - [anon_sym_struct] = ACTIONS(1643), - [anon_sym_trait] = ACTIONS(1643), - [anon_sym_type] = ACTIONS(1643), - [anon_sym_union] = ACTIONS(1643), - [anon_sym_unsafe] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1641), - [anon_sym_COLON_COLON] = ACTIONS(1641), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_move] = ACTIONS(1643), - [sym_integer_literal] = ACTIONS(1641), - [aux_sym_string_literal_token1] = ACTIONS(1641), - [sym_char_literal] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1643), - [sym_super] = ACTIONS(1643), - [sym_crate] = ACTIONS(1643), - [sym_metavariable] = ACTIONS(1641), - [sym_raw_string_literal] = ACTIONS(1641), - [sym_float_literal] = ACTIONS(1641), + [sym_identifier] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_SLASH] = ACTIONS(1068), + [anon_sym_PERCENT] = ACTIONS(1068), + [anon_sym_CARET] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1068), + [anon_sym_GT_GT] = ACTIONS(1068), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1068), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_GT] = ACTIONS(1068), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym__] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(1066), + [anon_sym_POUND] = 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_str] = ACTIONS(1068), + [anon_sym_char] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_ref] = ACTIONS(1068), + [sym_mutable_specifier] = ACTIONS(1068), + [anon_sym_else] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1068), + [sym_super] = ACTIONS(1068), + [sym_crate] = ACTIONS(1068), + [sym_metavariable] = ACTIONS(1066), + [sym_raw_string_literal] = ACTIONS(1066), + [sym_float_literal] = ACTIONS(1066), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_macro_rules_BANG] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_u8] = ACTIONS(1647), - [anon_sym_i8] = ACTIONS(1647), - [anon_sym_u16] = ACTIONS(1647), - [anon_sym_i16] = ACTIONS(1647), - [anon_sym_u32] = ACTIONS(1647), - [anon_sym_i32] = ACTIONS(1647), - [anon_sym_u64] = ACTIONS(1647), - [anon_sym_i64] = ACTIONS(1647), - [anon_sym_u128] = ACTIONS(1647), - [anon_sym_i128] = ACTIONS(1647), - [anon_sym_isize] = ACTIONS(1647), - [anon_sym_usize] = ACTIONS(1647), - [anon_sym_f32] = ACTIONS(1647), - [anon_sym_f64] = ACTIONS(1647), - [anon_sym_bool] = ACTIONS(1647), - [anon_sym_str] = ACTIONS(1647), - [anon_sym_char] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_async] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_default] = ACTIONS(1647), - [anon_sym_enum] = ACTIONS(1647), - [anon_sym_fn] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_impl] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_pub] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_static] = ACTIONS(1647), - [anon_sym_struct] = ACTIONS(1647), - [anon_sym_trait] = ACTIONS(1647), - [anon_sym_type] = ACTIONS(1647), - [anon_sym_union] = ACTIONS(1647), - [anon_sym_unsafe] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_POUND] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_COLON_COLON] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_move] = ACTIONS(1647), - [sym_integer_literal] = ACTIONS(1645), - [aux_sym_string_literal_token1] = ACTIONS(1645), - [sym_char_literal] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1647), - [sym_super] = ACTIONS(1647), - [sym_crate] = ACTIONS(1647), - [sym_metavariable] = ACTIONS(1645), - [sym_raw_string_literal] = ACTIONS(1645), - [sym_float_literal] = ACTIONS(1645), + [sym_identifier] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PERCENT_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1046), + [anon_sym_BANG_EQ] = ACTIONS(1046), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym__] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_COLON_COLON] = ACTIONS(1046), + [anon_sym_POUND] = 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_str] = ACTIONS(1048), + [anon_sym_char] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_ref] = ACTIONS(1048), + [sym_mutable_specifier] = ACTIONS(1048), + [anon_sym_else] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1048), + [sym_super] = ACTIONS(1048), + [sym_crate] = ACTIONS(1048), + [sym_metavariable] = ACTIONS(1046), + [sym_raw_string_literal] = ACTIONS(1046), + [sym_float_literal] = ACTIONS(1046), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1649), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_macro_rules_BANG] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1651), - [anon_sym_i8] = ACTIONS(1651), - [anon_sym_u16] = ACTIONS(1651), - [anon_sym_i16] = ACTIONS(1651), - [anon_sym_u32] = ACTIONS(1651), - [anon_sym_i32] = ACTIONS(1651), - [anon_sym_u64] = ACTIONS(1651), - [anon_sym_i64] = ACTIONS(1651), - [anon_sym_u128] = ACTIONS(1651), - [anon_sym_i128] = ACTIONS(1651), - [anon_sym_isize] = ACTIONS(1651), - [anon_sym_usize] = ACTIONS(1651), - [anon_sym_f32] = ACTIONS(1651), - [anon_sym_f64] = ACTIONS(1651), - [anon_sym_bool] = ACTIONS(1651), - [anon_sym_str] = ACTIONS(1651), - [anon_sym_char] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_async] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_default] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_impl] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_loop] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [anon_sym_mod] = ACTIONS(1651), - [anon_sym_pub] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_trait] = ACTIONS(1651), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [anon_sym_unsafe] = ACTIONS(1651), - [anon_sym_use] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_COLON_COLON] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_move] = ACTIONS(1651), - [sym_integer_literal] = ACTIONS(1649), - [aux_sym_string_literal_token1] = ACTIONS(1649), - [sym_char_literal] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1651), - [anon_sym_false] = ACTIONS(1651), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1651), - [sym_super] = ACTIONS(1651), - [sym_crate] = ACTIONS(1651), - [sym_metavariable] = ACTIONS(1649), - [sym_raw_string_literal] = ACTIONS(1649), - [sym_float_literal] = ACTIONS(1649), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2747), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2747), + [sym__literal] = STATE(2747), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_macro_rules_BANG] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_u8] = ACTIONS(1655), - [anon_sym_i8] = ACTIONS(1655), - [anon_sym_u16] = ACTIONS(1655), - [anon_sym_i16] = ACTIONS(1655), - [anon_sym_u32] = ACTIONS(1655), - [anon_sym_i32] = ACTIONS(1655), - [anon_sym_u64] = ACTIONS(1655), - [anon_sym_i64] = ACTIONS(1655), - [anon_sym_u128] = ACTIONS(1655), - [anon_sym_i128] = ACTIONS(1655), - [anon_sym_isize] = ACTIONS(1655), - [anon_sym_usize] = ACTIONS(1655), - [anon_sym_f32] = ACTIONS(1655), - [anon_sym_f64] = ACTIONS(1655), - [anon_sym_bool] = ACTIONS(1655), - [anon_sym_str] = ACTIONS(1655), - [anon_sym_char] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_impl] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_loop] = ACTIONS(1655), - [anon_sym_match] = ACTIONS(1655), - [anon_sym_mod] = ACTIONS(1655), - [anon_sym_pub] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_struct] = ACTIONS(1655), - [anon_sym_trait] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_union] = ACTIONS(1655), - [anon_sym_unsafe] = ACTIONS(1655), - [anon_sym_use] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_POUND] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_move] = ACTIONS(1655), - [sym_integer_literal] = ACTIONS(1653), - [aux_sym_string_literal_token1] = ACTIONS(1653), - [sym_char_literal] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1655), - [anon_sym_false] = ACTIONS(1655), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_crate] = ACTIONS(1655), - [sym_metavariable] = ACTIONS(1653), - [sym_raw_string_literal] = ACTIONS(1653), - [sym_float_literal] = ACTIONS(1653), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2747), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2747), + [sym__literal] = STATE(2747), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1657), - [sym_identifier] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_macro_rules_BANG] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_u8] = ACTIONS(1659), - [anon_sym_i8] = ACTIONS(1659), - [anon_sym_u16] = ACTIONS(1659), - [anon_sym_i16] = ACTIONS(1659), - [anon_sym_u32] = ACTIONS(1659), - [anon_sym_i32] = ACTIONS(1659), - [anon_sym_u64] = ACTIONS(1659), - [anon_sym_i64] = ACTIONS(1659), - [anon_sym_u128] = ACTIONS(1659), - [anon_sym_i128] = ACTIONS(1659), - [anon_sym_isize] = ACTIONS(1659), - [anon_sym_usize] = ACTIONS(1659), - [anon_sym_f32] = ACTIONS(1659), - [anon_sym_f64] = ACTIONS(1659), - [anon_sym_bool] = ACTIONS(1659), - [anon_sym_str] = ACTIONS(1659), - [anon_sym_char] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_async] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_impl] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_mod] = ACTIONS(1659), - [anon_sym_pub] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_trait] = ACTIONS(1659), - [anon_sym_type] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_unsafe] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_COLON_COLON] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_move] = ACTIONS(1659), - [sym_integer_literal] = ACTIONS(1657), - [aux_sym_string_literal_token1] = ACTIONS(1657), - [sym_char_literal] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1659), - [sym_super] = ACTIONS(1659), - [sym_crate] = ACTIONS(1659), - [sym_metavariable] = ACTIONS(1657), - [sym_raw_string_literal] = ACTIONS(1657), - [sym_float_literal] = ACTIONS(1657), + [sym_identifier] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_SLASH] = ACTIONS(1102), + [anon_sym_PERCENT] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1100), + [anon_sym_LT_LT] = ACTIONS(1102), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_PLUS_EQ] = ACTIONS(1100), + [anon_sym_DASH_EQ] = ACTIONS(1100), + [anon_sym_STAR_EQ] = ACTIONS(1100), + [anon_sym_SLASH_EQ] = ACTIONS(1100), + [anon_sym_PERCENT_EQ] = ACTIONS(1100), + [anon_sym_CARET_EQ] = ACTIONS(1100), + [anon_sym_AMP_EQ] = ACTIONS(1100), + [anon_sym_PIPE_EQ] = ACTIONS(1100), + [anon_sym_LT_LT_EQ] = ACTIONS(1100), + [anon_sym_GT_GT_EQ] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_GT_EQ] = ACTIONS(1100), + [anon_sym_LT_EQ] = ACTIONS(1100), + [anon_sym__] = ACTIONS(1102), + [anon_sym_DOT] = ACTIONS(1102), + [anon_sym_DOT_DOT] = ACTIONS(1102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1100), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1100), + [anon_sym_COMMA] = ACTIONS(1100), + [anon_sym_COLON_COLON] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1100), + [anon_sym_u8] = ACTIONS(1102), + [anon_sym_i8] = ACTIONS(1102), + [anon_sym_u16] = ACTIONS(1102), + [anon_sym_i16] = ACTIONS(1102), + [anon_sym_u32] = ACTIONS(1102), + [anon_sym_i32] = ACTIONS(1102), + [anon_sym_u64] = ACTIONS(1102), + [anon_sym_i64] = ACTIONS(1102), + [anon_sym_u128] = ACTIONS(1102), + [anon_sym_i128] = ACTIONS(1102), + [anon_sym_isize] = ACTIONS(1102), + [anon_sym_usize] = ACTIONS(1102), + [anon_sym_f32] = ACTIONS(1102), + [anon_sym_f64] = ACTIONS(1102), + [anon_sym_bool] = ACTIONS(1102), + [anon_sym_str] = ACTIONS(1102), + [anon_sym_char] = ACTIONS(1102), + [anon_sym_as] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1102), + [anon_sym_ref] = ACTIONS(1102), + [sym_mutable_specifier] = ACTIONS(1102), + [sym_integer_literal] = ACTIONS(1100), + [aux_sym_string_literal_token1] = ACTIONS(1100), + [sym_char_literal] = ACTIONS(1100), + [anon_sym_true] = ACTIONS(1102), + [anon_sym_false] = ACTIONS(1102), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1102), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1100), + [sym_raw_string_literal] = ACTIONS(1100), + [sym_float_literal] = ACTIONS(1100), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1661), - [sym_identifier] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_macro_rules_BANG] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1663), - [anon_sym_i8] = ACTIONS(1663), - [anon_sym_u16] = ACTIONS(1663), - [anon_sym_i16] = ACTIONS(1663), - [anon_sym_u32] = ACTIONS(1663), - [anon_sym_i32] = ACTIONS(1663), - [anon_sym_u64] = ACTIONS(1663), - [anon_sym_i64] = ACTIONS(1663), - [anon_sym_u128] = ACTIONS(1663), - [anon_sym_i128] = ACTIONS(1663), - [anon_sym_isize] = ACTIONS(1663), - [anon_sym_usize] = ACTIONS(1663), - [anon_sym_f32] = ACTIONS(1663), - [anon_sym_f64] = ACTIONS(1663), - [anon_sym_bool] = ACTIONS(1663), - [anon_sym_str] = ACTIONS(1663), - [anon_sym_char] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [anon_sym_async] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_impl] = ACTIONS(1663), - [anon_sym_let] = ACTIONS(1663), - [anon_sym_loop] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1663), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_pub] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_trait] = ACTIONS(1663), - [anon_sym_type] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_unsafe] = ACTIONS(1663), - [anon_sym_use] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_move] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1661), - [aux_sym_string_literal_token1] = ACTIONS(1661), - [sym_char_literal] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1663), - [sym_super] = ACTIONS(1663), - [sym_crate] = ACTIONS(1663), - [sym_metavariable] = ACTIONS(1661), - [sym_raw_string_literal] = ACTIONS(1661), - [sym_float_literal] = ACTIONS(1661), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2747), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2747), + [sym__literal] = STATE(2747), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1665), - [sym_identifier] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_macro_rules_BANG] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_u8] = ACTIONS(1667), - [anon_sym_i8] = ACTIONS(1667), - [anon_sym_u16] = ACTIONS(1667), - [anon_sym_i16] = ACTIONS(1667), - [anon_sym_u32] = ACTIONS(1667), - [anon_sym_i32] = ACTIONS(1667), - [anon_sym_u64] = ACTIONS(1667), - [anon_sym_i64] = ACTIONS(1667), - [anon_sym_u128] = ACTIONS(1667), - [anon_sym_i128] = ACTIONS(1667), - [anon_sym_isize] = ACTIONS(1667), - [anon_sym_usize] = ACTIONS(1667), - [anon_sym_f32] = ACTIONS(1667), - [anon_sym_f64] = ACTIONS(1667), - [anon_sym_bool] = ACTIONS(1667), - [anon_sym_str] = ACTIONS(1667), - [anon_sym_char] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_async] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_default] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_fn] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_impl] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1667), - [anon_sym_pub] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_trait] = ACTIONS(1667), - [anon_sym_type] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_unsafe] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_DOT_DOT] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_move] = ACTIONS(1667), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1665), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1667), - [sym_super] = ACTIONS(1667), - [sym_crate] = ACTIONS(1667), - [sym_metavariable] = ACTIONS(1665), - [sym_raw_string_literal] = ACTIONS(1665), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1162), + [anon_sym_PERCENT] = ACTIONS(1162), + [anon_sym_CARET] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_PLUS_EQ] = ACTIONS(1164), + [anon_sym_DASH_EQ] = ACTIONS(1164), + [anon_sym_STAR_EQ] = ACTIONS(1164), + [anon_sym_SLASH_EQ] = ACTIONS(1164), + [anon_sym_PERCENT_EQ] = ACTIONS(1164), + [anon_sym_CARET_EQ] = ACTIONS(1164), + [anon_sym_AMP_EQ] = ACTIONS(1164), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_LT_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_GT_EQ] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1164), + [anon_sym_BANG_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym__] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1164), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [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_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_as] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_ref] = ACTIONS(1448), + [sym_mutable_specifier] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1450), + [sym_raw_string_literal] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1669), - [sym_identifier] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_macro_rules_BANG] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_u8] = ACTIONS(1671), - [anon_sym_i8] = ACTIONS(1671), - [anon_sym_u16] = ACTIONS(1671), - [anon_sym_i16] = ACTIONS(1671), - [anon_sym_u32] = ACTIONS(1671), - [anon_sym_i32] = ACTIONS(1671), - [anon_sym_u64] = ACTIONS(1671), - [anon_sym_i64] = ACTIONS(1671), - [anon_sym_u128] = ACTIONS(1671), - [anon_sym_i128] = ACTIONS(1671), - [anon_sym_isize] = ACTIONS(1671), - [anon_sym_usize] = ACTIONS(1671), - [anon_sym_f32] = ACTIONS(1671), - [anon_sym_f64] = ACTIONS(1671), - [anon_sym_bool] = ACTIONS(1671), - [anon_sym_str] = ACTIONS(1671), - [anon_sym_char] = ACTIONS(1671), - [anon_sym_SQUOTE] = ACTIONS(1671), - [anon_sym_async] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_fn] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_impl] = ACTIONS(1671), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_loop] = ACTIONS(1671), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_pub] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_trait] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_unsafe] = ACTIONS(1671), - [anon_sym_use] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_COLON_COLON] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_move] = ACTIONS(1671), - [sym_integer_literal] = ACTIONS(1669), - [aux_sym_string_literal_token1] = ACTIONS(1669), - [sym_char_literal] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1669), - [sym_raw_string_literal] = ACTIONS(1669), - [sym_float_literal] = ACTIONS(1669), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1162), + [anon_sym_PERCENT] = ACTIONS(1162), + [anon_sym_CARET] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1164), + [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_PLUS_EQ] = ACTIONS(1164), + [anon_sym_DASH_EQ] = ACTIONS(1164), + [anon_sym_STAR_EQ] = ACTIONS(1164), + [anon_sym_SLASH_EQ] = ACTIONS(1164), + [anon_sym_PERCENT_EQ] = ACTIONS(1164), + [anon_sym_CARET_EQ] = ACTIONS(1164), + [anon_sym_AMP_EQ] = ACTIONS(1164), + [anon_sym_PIPE_EQ] = ACTIONS(1164), + [anon_sym_LT_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_GT_EQ] = ACTIONS(1164), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_EQ_EQ] = ACTIONS(1164), + [anon_sym_BANG_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym__] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1164), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [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_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_as] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_ref] = ACTIONS(1452), + [sym_mutable_specifier] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1454), + [sym_raw_string_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_macro_rules_BANG] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_u8] = ACTIONS(1675), - [anon_sym_i8] = ACTIONS(1675), - [anon_sym_u16] = ACTIONS(1675), - [anon_sym_i16] = ACTIONS(1675), - [anon_sym_u32] = ACTIONS(1675), - [anon_sym_i32] = ACTIONS(1675), - [anon_sym_u64] = ACTIONS(1675), - [anon_sym_i64] = ACTIONS(1675), - [anon_sym_u128] = ACTIONS(1675), - [anon_sym_i128] = ACTIONS(1675), - [anon_sym_isize] = ACTIONS(1675), - [anon_sym_usize] = ACTIONS(1675), - [anon_sym_f32] = ACTIONS(1675), - [anon_sym_f64] = ACTIONS(1675), - [anon_sym_bool] = ACTIONS(1675), - [anon_sym_str] = ACTIONS(1675), - [anon_sym_char] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1675), - [anon_sym_async] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_default] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_fn] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_impl] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_loop] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_pub] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_trait] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_unsafe] = ACTIONS(1675), - [anon_sym_use] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_COLON_COLON] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_move] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1673), - [aux_sym_string_literal_token1] = ACTIONS(1673), - [sym_char_literal] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1675), - [sym_super] = ACTIONS(1675), - [sym_crate] = ACTIONS(1675), - [sym_metavariable] = ACTIONS(1673), - [sym_raw_string_literal] = ACTIONS(1673), - [sym_float_literal] = ACTIONS(1673), + [sym_identifier] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_QMARK] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_SLASH] = ACTIONS(1188), + [anon_sym_PERCENT] = ACTIONS(1188), + [anon_sym_CARET] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_AMP_AMP] = ACTIONS(1186), + [anon_sym_PIPE_PIPE] = ACTIONS(1186), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(1188), + [anon_sym_PLUS_EQ] = ACTIONS(1186), + [anon_sym_DASH_EQ] = ACTIONS(1186), + [anon_sym_STAR_EQ] = ACTIONS(1186), + [anon_sym_SLASH_EQ] = ACTIONS(1186), + [anon_sym_PERCENT_EQ] = ACTIONS(1186), + [anon_sym_CARET_EQ] = ACTIONS(1186), + [anon_sym_AMP_EQ] = ACTIONS(1186), + [anon_sym_PIPE_EQ] = ACTIONS(1186), + [anon_sym_LT_LT_EQ] = ACTIONS(1186), + [anon_sym_GT_GT_EQ] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ_EQ] = ACTIONS(1186), + [anon_sym_BANG_EQ] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1186), + [anon_sym__] = ACTIONS(1188), + [anon_sym_DOT] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1186), + [anon_sym_COMMA] = ACTIONS(1186), + [anon_sym_COLON_COLON] = ACTIONS(1186), + [anon_sym_POUND] = 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_str] = ACTIONS(1188), + [anon_sym_char] = ACTIONS(1188), + [anon_sym_as] = ACTIONS(1188), + [anon_sym_const] = ACTIONS(1188), + [anon_sym_default] = ACTIONS(1188), + [anon_sym_union] = ACTIONS(1188), + [anon_sym_ref] = ACTIONS(1188), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1188), + [sym_super] = ACTIONS(1188), + [sym_crate] = ACTIONS(1188), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(1186), + [sym_float_literal] = ACTIONS(1186), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1677), - [sym_identifier] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_macro_rules_BANG] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_STAR] = ACTIONS(1677), - [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_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_async] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_default] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_fn] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_impl] = ACTIONS(1679), - [anon_sym_let] = ACTIONS(1679), - [anon_sym_loop] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1679), - [anon_sym_mod] = ACTIONS(1679), - [anon_sym_pub] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_trait] = ACTIONS(1679), - [anon_sym_type] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_unsafe] = ACTIONS(1679), - [anon_sym_use] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_move] = ACTIONS(1679), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1677), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1679), - [anon_sym_false] = ACTIONS(1679), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1679), - [sym_super] = ACTIONS(1679), - [sym_crate] = ACTIONS(1679), - [sym_metavariable] = ACTIONS(1677), - [sym_raw_string_literal] = ACTIONS(1677), - [sym_float_literal] = ACTIONS(1677), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym__] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1078), + [anon_sym_POUND] = 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_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_as] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_ref] = ACTIONS(1080), + [sym_mutable_specifier] = 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_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1080), + [sym_super] = ACTIONS(1080), + [sym_crate] = ACTIONS(1080), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1078), + [sym_float_literal] = ACTIONS(1078), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1681), - [sym_identifier] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_macro_rules_BANG] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_u8] = ACTIONS(1683), - [anon_sym_i8] = ACTIONS(1683), - [anon_sym_u16] = ACTIONS(1683), - [anon_sym_i16] = ACTIONS(1683), - [anon_sym_u32] = ACTIONS(1683), - [anon_sym_i32] = ACTIONS(1683), - [anon_sym_u64] = ACTIONS(1683), - [anon_sym_i64] = ACTIONS(1683), - [anon_sym_u128] = ACTIONS(1683), - [anon_sym_i128] = ACTIONS(1683), - [anon_sym_isize] = ACTIONS(1683), - [anon_sym_usize] = ACTIONS(1683), - [anon_sym_f32] = ACTIONS(1683), - [anon_sym_f64] = ACTIONS(1683), - [anon_sym_bool] = ACTIONS(1683), - [anon_sym_str] = ACTIONS(1683), - [anon_sym_char] = ACTIONS(1683), - [anon_sym_SQUOTE] = ACTIONS(1683), - [anon_sym_async] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1683), - [anon_sym_enum] = ACTIONS(1683), - [anon_sym_fn] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_impl] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [anon_sym_loop] = ACTIONS(1683), - [anon_sym_match] = ACTIONS(1683), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_pub] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_struct] = ACTIONS(1683), - [anon_sym_trait] = ACTIONS(1683), - [anon_sym_type] = ACTIONS(1683), - [anon_sym_union] = ACTIONS(1683), - [anon_sym_unsafe] = ACTIONS(1683), - [anon_sym_use] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_COLON_COLON] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_move] = ACTIONS(1683), - [sym_integer_literal] = ACTIONS(1681), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1681), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1681), - [sym_raw_string_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(1681), + [sym_identifier] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_QMARK] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_PERCENT] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE_PIPE] = ACTIONS(1154), + [anon_sym_LT_LT] = ACTIONS(1156), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_PLUS_EQ] = ACTIONS(1154), + [anon_sym_DASH_EQ] = ACTIONS(1154), + [anon_sym_STAR_EQ] = ACTIONS(1154), + [anon_sym_SLASH_EQ] = ACTIONS(1154), + [anon_sym_PERCENT_EQ] = ACTIONS(1154), + [anon_sym_CARET_EQ] = ACTIONS(1154), + [anon_sym_AMP_EQ] = ACTIONS(1154), + [anon_sym_PIPE_EQ] = ACTIONS(1154), + [anon_sym_LT_LT_EQ] = ACTIONS(1154), + [anon_sym_GT_GT_EQ] = ACTIONS(1154), + [anon_sym_EQ] = ACTIONS(1156), + [anon_sym_EQ_EQ] = ACTIONS(1154), + [anon_sym_BANG_EQ] = ACTIONS(1154), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_GT_EQ] = ACTIONS(1154), + [anon_sym_LT_EQ] = ACTIONS(1154), + [anon_sym__] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(1156), + [anon_sym_DOT_DOT] = ACTIONS(1156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), + [anon_sym_COMMA] = ACTIONS(1154), + [anon_sym_COLON_COLON] = ACTIONS(1154), + [anon_sym_POUND] = 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_str] = ACTIONS(1156), + [anon_sym_char] = ACTIONS(1156), + [anon_sym_as] = ACTIONS(1156), + [anon_sym_const] = ACTIONS(1156), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_union] = ACTIONS(1156), + [anon_sym_ref] = ACTIONS(1156), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), + [sym_crate] = ACTIONS(1156), + [sym_metavariable] = ACTIONS(1154), + [sym_raw_string_literal] = ACTIONS(1154), + [sym_float_literal] = ACTIONS(1154), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1685), - [sym_identifier] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_macro_rules_BANG] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_u8] = ACTIONS(1687), - [anon_sym_i8] = ACTIONS(1687), - [anon_sym_u16] = ACTIONS(1687), - [anon_sym_i16] = ACTIONS(1687), - [anon_sym_u32] = ACTIONS(1687), - [anon_sym_i32] = ACTIONS(1687), - [anon_sym_u64] = ACTIONS(1687), - [anon_sym_i64] = ACTIONS(1687), - [anon_sym_u128] = ACTIONS(1687), - [anon_sym_i128] = ACTIONS(1687), - [anon_sym_isize] = ACTIONS(1687), - [anon_sym_usize] = ACTIONS(1687), - [anon_sym_f32] = ACTIONS(1687), - [anon_sym_f64] = ACTIONS(1687), - [anon_sym_bool] = ACTIONS(1687), - [anon_sym_str] = ACTIONS(1687), - [anon_sym_char] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_async] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_default] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_fn] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_impl] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1687), - [anon_sym_loop] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_mod] = ACTIONS(1687), - [anon_sym_pub] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_trait] = ACTIONS(1687), - [anon_sym_type] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_use] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_COLON_COLON] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_DOT_DOT] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_move] = ACTIONS(1687), - [sym_integer_literal] = ACTIONS(1685), - [aux_sym_string_literal_token1] = ACTIONS(1685), - [sym_char_literal] = ACTIONS(1685), - [anon_sym_true] = ACTIONS(1687), - [anon_sym_false] = ACTIONS(1687), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1687), - [sym_super] = ACTIONS(1687), - [sym_crate] = ACTIONS(1687), - [sym_metavariable] = ACTIONS(1685), - [sym_raw_string_literal] = ACTIONS(1685), - [sym_float_literal] = ACTIONS(1685), + [sym_identifier] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_QMARK] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_SLASH] = ACTIONS(1124), + [anon_sym_PERCENT] = ACTIONS(1124), + [anon_sym_CARET] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_AMP_AMP] = ACTIONS(1122), + [anon_sym_PIPE_PIPE] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS_EQ] = ACTIONS(1122), + [anon_sym_DASH_EQ] = ACTIONS(1122), + [anon_sym_STAR_EQ] = ACTIONS(1122), + [anon_sym_SLASH_EQ] = ACTIONS(1122), + [anon_sym_PERCENT_EQ] = ACTIONS(1122), + [anon_sym_CARET_EQ] = ACTIONS(1122), + [anon_sym_AMP_EQ] = ACTIONS(1122), + [anon_sym_PIPE_EQ] = ACTIONS(1122), + [anon_sym_LT_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_GT_EQ] = ACTIONS(1122), + [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_EQ_EQ] = ACTIONS(1122), + [anon_sym_BANG_EQ] = ACTIONS(1122), + [anon_sym_GT] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1124), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym__] = ACTIONS(1124), + [anon_sym_DOT] = ACTIONS(1124), + [anon_sym_DOT_DOT] = ACTIONS(1124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1122), + [anon_sym_COLON_COLON] = ACTIONS(1122), + [anon_sym_POUND] = 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_str] = ACTIONS(1124), + [anon_sym_char] = ACTIONS(1124), + [anon_sym_as] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_ref] = ACTIONS(1124), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1124), + [sym_super] = ACTIONS(1124), + [sym_crate] = ACTIONS(1124), + [sym_metavariable] = ACTIONS(1122), + [sym_raw_string_literal] = ACTIONS(1122), + [sym_float_literal] = ACTIONS(1122), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1689), - [sym_identifier] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_macro_rules_BANG] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_u8] = ACTIONS(1691), - [anon_sym_i8] = ACTIONS(1691), - [anon_sym_u16] = ACTIONS(1691), - [anon_sym_i16] = ACTIONS(1691), - [anon_sym_u32] = ACTIONS(1691), - [anon_sym_i32] = ACTIONS(1691), - [anon_sym_u64] = ACTIONS(1691), - [anon_sym_i64] = ACTIONS(1691), - [anon_sym_u128] = ACTIONS(1691), - [anon_sym_i128] = ACTIONS(1691), - [anon_sym_isize] = ACTIONS(1691), - [anon_sym_usize] = ACTIONS(1691), - [anon_sym_f32] = ACTIONS(1691), - [anon_sym_f64] = ACTIONS(1691), - [anon_sym_bool] = ACTIONS(1691), - [anon_sym_str] = ACTIONS(1691), - [anon_sym_char] = ACTIONS(1691), - [anon_sym_SQUOTE] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_fn] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_impl] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_loop] = ACTIONS(1691), - [anon_sym_match] = ACTIONS(1691), - [anon_sym_mod] = ACTIONS(1691), - [anon_sym_pub] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_trait] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1691), - [anon_sym_use] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_COLON_COLON] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_move] = ACTIONS(1691), - [sym_integer_literal] = ACTIONS(1689), - [aux_sym_string_literal_token1] = ACTIONS(1689), - [sym_char_literal] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = ACTIONS(1691), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1691), - [sym_super] = ACTIONS(1691), - [sym_crate] = ACTIONS(1691), - [sym_metavariable] = ACTIONS(1689), - [sym_raw_string_literal] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_QMARK] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1132), + [anon_sym_PERCENT] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_AMP_AMP] = ACTIONS(1130), + [anon_sym_PIPE_PIPE] = ACTIONS(1130), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_PLUS_EQ] = ACTIONS(1130), + [anon_sym_DASH_EQ] = ACTIONS(1130), + [anon_sym_STAR_EQ] = ACTIONS(1130), + [anon_sym_SLASH_EQ] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1130), + [anon_sym_CARET_EQ] = ACTIONS(1130), + [anon_sym_AMP_EQ] = ACTIONS(1130), + [anon_sym_PIPE_EQ] = ACTIONS(1130), + [anon_sym_LT_LT_EQ] = ACTIONS(1130), + [anon_sym_GT_GT_EQ] = ACTIONS(1130), + [anon_sym_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1130), + [anon_sym_BANG_EQ] = ACTIONS(1130), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1130), + [anon_sym__] = ACTIONS(1132), + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_DOT_DOT] = ACTIONS(1132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1130), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_POUND] = 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_str] = ACTIONS(1132), + [anon_sym_char] = ACTIONS(1132), + [anon_sym_as] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_ref] = ACTIONS(1132), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1132), + [sym_super] = ACTIONS(1132), + [sym_crate] = ACTIONS(1132), + [sym_metavariable] = ACTIONS(1130), + [sym_raw_string_literal] = ACTIONS(1130), + [sym_float_literal] = ACTIONS(1130), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1693), - [sym_identifier] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_macro_rules_BANG] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1695), - [anon_sym_i8] = ACTIONS(1695), - [anon_sym_u16] = ACTIONS(1695), - [anon_sym_i16] = ACTIONS(1695), - [anon_sym_u32] = ACTIONS(1695), - [anon_sym_i32] = ACTIONS(1695), - [anon_sym_u64] = ACTIONS(1695), - [anon_sym_i64] = ACTIONS(1695), - [anon_sym_u128] = ACTIONS(1695), - [anon_sym_i128] = ACTIONS(1695), - [anon_sym_isize] = ACTIONS(1695), - [anon_sym_usize] = ACTIONS(1695), - [anon_sym_f32] = ACTIONS(1695), - [anon_sym_f64] = ACTIONS(1695), - [anon_sym_bool] = ACTIONS(1695), - [anon_sym_str] = ACTIONS(1695), - [anon_sym_char] = ACTIONS(1695), - [anon_sym_SQUOTE] = ACTIONS(1695), - [anon_sym_async] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_default] = 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_loop] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_mod] = ACTIONS(1695), - [anon_sym_pub] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_trait] = ACTIONS(1695), - [anon_sym_type] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [anon_sym_unsafe] = ACTIONS(1695), - [anon_sym_use] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_POUND] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_move] = ACTIONS(1695), - [sym_integer_literal] = ACTIONS(1693), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1695), - [sym_super] = ACTIONS(1695), - [sym_crate] = ACTIONS(1695), - [sym_metavariable] = ACTIONS(1693), - [sym_raw_string_literal] = ACTIONS(1693), - [sym_float_literal] = ACTIONS(1693), + [sym_identifier] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_QMARK] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_SLASH] = ACTIONS(1184), + [anon_sym_PERCENT] = ACTIONS(1184), + [anon_sym_CARET] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_AMP_AMP] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1184), + [anon_sym_GT_GT] = ACTIONS(1184), + [anon_sym_PLUS_EQ] = ACTIONS(1182), + [anon_sym_DASH_EQ] = ACTIONS(1182), + [anon_sym_STAR_EQ] = ACTIONS(1182), + [anon_sym_SLASH_EQ] = ACTIONS(1182), + [anon_sym_PERCENT_EQ] = ACTIONS(1182), + [anon_sym_CARET_EQ] = ACTIONS(1182), + [anon_sym_AMP_EQ] = ACTIONS(1182), + [anon_sym_PIPE_EQ] = ACTIONS(1182), + [anon_sym_LT_LT_EQ] = ACTIONS(1182), + [anon_sym_GT_GT_EQ] = ACTIONS(1182), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_EQ_EQ] = ACTIONS(1182), + [anon_sym_BANG_EQ] = ACTIONS(1182), + [anon_sym_GT] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_GT_EQ] = ACTIONS(1182), + [anon_sym_LT_EQ] = ACTIONS(1182), + [anon_sym__] = ACTIONS(1184), + [anon_sym_DOT] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1182), + [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(1182), + [anon_sym_POUND] = 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_str] = ACTIONS(1184), + [anon_sym_char] = ACTIONS(1184), + [anon_sym_as] = ACTIONS(1184), + [anon_sym_const] = ACTIONS(1184), + [anon_sym_default] = ACTIONS(1184), + [anon_sym_union] = ACTIONS(1184), + [anon_sym_ref] = ACTIONS(1184), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(1182), + [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1697), - [sym_identifier] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_macro_rules_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_u8] = ACTIONS(1699), - [anon_sym_i8] = ACTIONS(1699), - [anon_sym_u16] = ACTIONS(1699), - [anon_sym_i16] = ACTIONS(1699), - [anon_sym_u32] = ACTIONS(1699), - [anon_sym_i32] = ACTIONS(1699), - [anon_sym_u64] = ACTIONS(1699), - [anon_sym_i64] = ACTIONS(1699), - [anon_sym_u128] = ACTIONS(1699), - [anon_sym_i128] = ACTIONS(1699), - [anon_sym_isize] = ACTIONS(1699), - [anon_sym_usize] = ACTIONS(1699), - [anon_sym_f32] = ACTIONS(1699), - [anon_sym_f64] = ACTIONS(1699), - [anon_sym_bool] = ACTIONS(1699), - [anon_sym_str] = ACTIONS(1699), - [anon_sym_char] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_impl] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_loop] = ACTIONS(1699), - [anon_sym_match] = ACTIONS(1699), - [anon_sym_mod] = ACTIONS(1699), - [anon_sym_pub] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_trait] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_unsafe] = ACTIONS(1699), - [anon_sym_use] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(1697), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_COLON_COLON] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_move] = ACTIONS(1699), - [sym_integer_literal] = ACTIONS(1697), - [aux_sym_string_literal_token1] = ACTIONS(1697), - [sym_char_literal] = ACTIONS(1697), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_crate] = ACTIONS(1699), - [sym_metavariable] = ACTIONS(1697), - [sym_raw_string_literal] = ACTIONS(1697), - [sym_float_literal] = ACTIONS(1697), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2747), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2747), + [sym__literal] = STATE(2747), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), + [sym_block_comment] = ACTIONS(3), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1701), - [sym_identifier] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_macro_rules_BANG] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_u8] = ACTIONS(1703), - [anon_sym_i8] = ACTIONS(1703), - [anon_sym_u16] = ACTIONS(1703), - [anon_sym_i16] = ACTIONS(1703), - [anon_sym_u32] = ACTIONS(1703), - [anon_sym_i32] = ACTIONS(1703), - [anon_sym_u64] = ACTIONS(1703), - [anon_sym_i64] = ACTIONS(1703), - [anon_sym_u128] = ACTIONS(1703), - [anon_sym_i128] = ACTIONS(1703), - [anon_sym_isize] = ACTIONS(1703), - [anon_sym_usize] = ACTIONS(1703), - [anon_sym_f32] = ACTIONS(1703), - [anon_sym_f64] = ACTIONS(1703), - [anon_sym_bool] = ACTIONS(1703), - [anon_sym_str] = ACTIONS(1703), - [anon_sym_char] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_impl] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_mod] = ACTIONS(1703), - [anon_sym_pub] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_trait] = ACTIONS(1703), - [anon_sym_type] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_unsafe] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_move] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1701), - [aux_sym_string_literal_token1] = ACTIONS(1701), - [sym_char_literal] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1703), - [sym_super] = ACTIONS(1703), - [sym_crate] = ACTIONS(1703), - [sym_metavariable] = ACTIONS(1701), - [sym_raw_string_literal] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1701), + [sym_identifier] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_SLASH] = ACTIONS(1076), + [anon_sym_PERCENT] = ACTIONS(1076), + [anon_sym_CARET] = ACTIONS(1076), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1074), + [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_LT_LT] = ACTIONS(1076), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_PLUS_EQ] = ACTIONS(1074), + [anon_sym_DASH_EQ] = ACTIONS(1074), + [anon_sym_STAR_EQ] = ACTIONS(1074), + [anon_sym_SLASH_EQ] = ACTIONS(1074), + [anon_sym_PERCENT_EQ] = ACTIONS(1074), + [anon_sym_CARET_EQ] = ACTIONS(1074), + [anon_sym_AMP_EQ] = ACTIONS(1074), + [anon_sym_PIPE_EQ] = ACTIONS(1074), + [anon_sym_LT_LT_EQ] = ACTIONS(1074), + [anon_sym_GT_GT_EQ] = ACTIONS(1074), + [anon_sym_EQ] = ACTIONS(1076), + [anon_sym_EQ_EQ] = ACTIONS(1074), + [anon_sym_BANG_EQ] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1076), + [anon_sym_GT_EQ] = ACTIONS(1074), + [anon_sym_LT_EQ] = ACTIONS(1074), + [anon_sym__] = ACTIONS(1076), + [anon_sym_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(1074), + [anon_sym_POUND] = 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_str] = ACTIONS(1076), + [anon_sym_char] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_ref] = ACTIONS(1076), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1074), + [sym_raw_string_literal] = ACTIONS(1074), + [sym_float_literal] = ACTIONS(1074), [sym_block_comment] = ACTIONS(3), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1705), - [sym_identifier] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_macro_rules_BANG] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1707), - [anon_sym_i8] = ACTIONS(1707), - [anon_sym_u16] = ACTIONS(1707), - [anon_sym_i16] = ACTIONS(1707), - [anon_sym_u32] = ACTIONS(1707), - [anon_sym_i32] = ACTIONS(1707), - [anon_sym_u64] = ACTIONS(1707), - [anon_sym_i64] = ACTIONS(1707), - [anon_sym_u128] = ACTIONS(1707), - [anon_sym_i128] = ACTIONS(1707), - [anon_sym_isize] = ACTIONS(1707), - [anon_sym_usize] = ACTIONS(1707), - [anon_sym_f32] = ACTIONS(1707), - [anon_sym_f64] = ACTIONS(1707), - [anon_sym_bool] = ACTIONS(1707), - [anon_sym_str] = ACTIONS(1707), - [anon_sym_char] = ACTIONS(1707), - [anon_sym_SQUOTE] = ACTIONS(1707), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_fn] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_impl] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_mod] = ACTIONS(1707), - [anon_sym_pub] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_trait] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_unsafe] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_COLON_COLON] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_move] = ACTIONS(1707), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1705), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1707), - [sym_super] = ACTIONS(1707), - [sym_crate] = ACTIONS(1707), - [sym_metavariable] = ACTIONS(1705), - [sym_raw_string_literal] = ACTIONS(1705), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_AMP_AMP] = ACTIONS(1134), + [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [anon_sym_LT_LT] = ACTIONS(1136), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_PLUS_EQ] = ACTIONS(1134), + [anon_sym_DASH_EQ] = ACTIONS(1134), + [anon_sym_STAR_EQ] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1134), + [anon_sym_PERCENT_EQ] = ACTIONS(1134), + [anon_sym_CARET_EQ] = ACTIONS(1134), + [anon_sym_AMP_EQ] = ACTIONS(1134), + [anon_sym_PIPE_EQ] = ACTIONS(1134), + [anon_sym_LT_LT_EQ] = ACTIONS(1134), + [anon_sym_GT_GT_EQ] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1136), + [anon_sym_EQ_EQ] = ACTIONS(1134), + [anon_sym_BANG_EQ] = ACTIONS(1134), + [anon_sym_GT] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_GT_EQ] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1134), + [anon_sym__] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1134), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_COLON_COLON] = ACTIONS(1134), + [anon_sym_POUND] = 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_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_as] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_ref] = ACTIONS(1136), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1136), + [sym_super] = ACTIONS(1136), + [sym_crate] = ACTIONS(1136), + [sym_metavariable] = ACTIONS(1134), + [sym_raw_string_literal] = ACTIONS(1134), + [sym_float_literal] = ACTIONS(1134), [sym_block_comment] = ACTIONS(3), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1709), - [sym_identifier] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_macro_rules_BANG] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1711), - [anon_sym_i8] = ACTIONS(1711), - [anon_sym_u16] = ACTIONS(1711), - [anon_sym_i16] = ACTIONS(1711), - [anon_sym_u32] = ACTIONS(1711), - [anon_sym_i32] = ACTIONS(1711), - [anon_sym_u64] = ACTIONS(1711), - [anon_sym_i64] = ACTIONS(1711), - [anon_sym_u128] = ACTIONS(1711), - [anon_sym_i128] = ACTIONS(1711), - [anon_sym_isize] = ACTIONS(1711), - [anon_sym_usize] = ACTIONS(1711), - [anon_sym_f32] = ACTIONS(1711), - [anon_sym_f64] = ACTIONS(1711), - [anon_sym_bool] = ACTIONS(1711), - [anon_sym_str] = ACTIONS(1711), - [anon_sym_char] = ACTIONS(1711), - [anon_sym_SQUOTE] = ACTIONS(1711), - [anon_sym_async] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_fn] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_impl] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1711), - [anon_sym_pub] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_trait] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_unsafe] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1709), - [anon_sym_COLON_COLON] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_move] = ACTIONS(1711), - [sym_integer_literal] = ACTIONS(1709), - [aux_sym_string_literal_token1] = ACTIONS(1709), - [sym_char_literal] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1709), - [sym_raw_string_literal] = ACTIONS(1709), - [sym_float_literal] = ACTIONS(1709), + [sym_identifier] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_AMP_AMP] = ACTIONS(1084), + [anon_sym_PIPE_PIPE] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1084), + [anon_sym_DASH_EQ] = ACTIONS(1084), + [anon_sym_STAR_EQ] = ACTIONS(1084), + [anon_sym_SLASH_EQ] = ACTIONS(1084), + [anon_sym_PERCENT_EQ] = ACTIONS(1084), + [anon_sym_CARET_EQ] = ACTIONS(1084), + [anon_sym_AMP_EQ] = ACTIONS(1084), + [anon_sym_PIPE_EQ] = ACTIONS(1084), + [anon_sym_LT_LT_EQ] = ACTIONS(1084), + [anon_sym_GT_GT_EQ] = ACTIONS(1084), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1084), + [anon_sym_BANG_EQ] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym__] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DOT_DOT] = ACTIONS(1086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_ref] = ACTIONS(1086), + [sym_mutable_specifier] = ACTIONS(1086), + [sym_integer_literal] = ACTIONS(1084), + [aux_sym_string_literal_token1] = ACTIONS(1084), + [sym_char_literal] = ACTIONS(1084), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1086), + [sym_super] = ACTIONS(1086), + [sym_crate] = ACTIONS(1086), + [sym_metavariable] = ACTIONS(1084), + [sym_raw_string_literal] = ACTIONS(1084), + [sym_float_literal] = ACTIONS(1084), [sym_block_comment] = ACTIONS(3), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_macro_rules_BANG] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_u8] = ACTIONS(1715), - [anon_sym_i8] = ACTIONS(1715), - [anon_sym_u16] = ACTIONS(1715), - [anon_sym_i16] = ACTIONS(1715), - [anon_sym_u32] = ACTIONS(1715), - [anon_sym_i32] = ACTIONS(1715), - [anon_sym_u64] = ACTIONS(1715), - [anon_sym_i64] = ACTIONS(1715), - [anon_sym_u128] = ACTIONS(1715), - [anon_sym_i128] = ACTIONS(1715), - [anon_sym_isize] = ACTIONS(1715), - [anon_sym_usize] = ACTIONS(1715), - [anon_sym_f32] = ACTIONS(1715), - [anon_sym_f64] = ACTIONS(1715), - [anon_sym_bool] = ACTIONS(1715), - [anon_sym_str] = ACTIONS(1715), - [anon_sym_char] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_async] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_default] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_fn] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_impl] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1715), - [anon_sym_pub] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_trait] = ACTIONS(1715), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [anon_sym_unsafe] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_move] = ACTIONS(1715), - [sym_integer_literal] = ACTIONS(1713), - [aux_sym_string_literal_token1] = ACTIONS(1713), - [sym_char_literal] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1715), - [sym_super] = ACTIONS(1715), - [sym_crate] = ACTIONS(1715), - [sym_metavariable] = ACTIONS(1713), - [sym_raw_string_literal] = ACTIONS(1713), - [sym_float_literal] = ACTIONS(1713), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2747), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2747), + [sym__literal] = STATE(2747), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_macro_rules_BANG] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_u8] = ACTIONS(1719), - [anon_sym_i8] = ACTIONS(1719), - [anon_sym_u16] = ACTIONS(1719), - [anon_sym_i16] = ACTIONS(1719), - [anon_sym_u32] = ACTIONS(1719), - [anon_sym_i32] = ACTIONS(1719), - [anon_sym_u64] = ACTIONS(1719), - [anon_sym_i64] = ACTIONS(1719), - [anon_sym_u128] = ACTIONS(1719), - [anon_sym_i128] = ACTIONS(1719), - [anon_sym_isize] = ACTIONS(1719), - [anon_sym_usize] = ACTIONS(1719), - [anon_sym_f32] = ACTIONS(1719), - [anon_sym_f64] = ACTIONS(1719), - [anon_sym_bool] = ACTIONS(1719), - [anon_sym_str] = ACTIONS(1719), - [anon_sym_char] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_impl] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_mod] = ACTIONS(1719), - [anon_sym_pub] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_trait] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_unsafe] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_COLON_COLON] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_move] = ACTIONS(1719), - [sym_integer_literal] = ACTIONS(1717), - [aux_sym_string_literal_token1] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_crate] = ACTIONS(1719), - [sym_metavariable] = ACTIONS(1717), - [sym_raw_string_literal] = ACTIONS(1717), - [sym_float_literal] = ACTIONS(1717), + [sym_identifier] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), + [anon_sym_STAR_EQ] = ACTIONS(1088), + [anon_sym_SLASH_EQ] = ACTIONS(1088), + [anon_sym_PERCENT_EQ] = ACTIONS(1088), + [anon_sym_CARET_EQ] = ACTIONS(1088), + [anon_sym_AMP_EQ] = ACTIONS(1088), + [anon_sym_PIPE_EQ] = ACTIONS(1088), + [anon_sym_LT_LT_EQ] = ACTIONS(1088), + [anon_sym_GT_GT_EQ] = ACTIONS(1088), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym__] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1088), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_COLON_COLON] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1088), + [anon_sym_u8] = ACTIONS(1090), + [anon_sym_i8] = ACTIONS(1090), + [anon_sym_u16] = ACTIONS(1090), + [anon_sym_i16] = ACTIONS(1090), + [anon_sym_u32] = ACTIONS(1090), + [anon_sym_i32] = ACTIONS(1090), + [anon_sym_u64] = ACTIONS(1090), + [anon_sym_i64] = ACTIONS(1090), + [anon_sym_u128] = ACTIONS(1090), + [anon_sym_i128] = ACTIONS(1090), + [anon_sym_isize] = ACTIONS(1090), + [anon_sym_usize] = ACTIONS(1090), + [anon_sym_f32] = ACTIONS(1090), + [anon_sym_f64] = ACTIONS(1090), + [anon_sym_bool] = ACTIONS(1090), + [anon_sym_str] = ACTIONS(1090), + [anon_sym_char] = ACTIONS(1090), + [anon_sym_as] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_union] = ACTIONS(1090), + [anon_sym_ref] = ACTIONS(1090), + [sym_mutable_specifier] = ACTIONS(1090), + [sym_integer_literal] = ACTIONS(1088), + [aux_sym_string_literal_token1] = ACTIONS(1088), + [sym_char_literal] = ACTIONS(1088), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1090), + [sym_super] = ACTIONS(1090), + [sym_crate] = ACTIONS(1090), + [sym_metavariable] = ACTIONS(1088), + [sym_raw_string_literal] = ACTIONS(1088), + [sym_float_literal] = ACTIONS(1088), [sym_block_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1721), - [sym_identifier] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_macro_rules_BANG] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1723), - [anon_sym_i8] = ACTIONS(1723), - [anon_sym_u16] = ACTIONS(1723), - [anon_sym_i16] = ACTIONS(1723), - [anon_sym_u32] = ACTIONS(1723), - [anon_sym_i32] = ACTIONS(1723), - [anon_sym_u64] = ACTIONS(1723), - [anon_sym_i64] = ACTIONS(1723), - [anon_sym_u128] = ACTIONS(1723), - [anon_sym_i128] = ACTIONS(1723), - [anon_sym_isize] = ACTIONS(1723), - [anon_sym_usize] = ACTIONS(1723), - [anon_sym_f32] = ACTIONS(1723), - [anon_sym_f64] = ACTIONS(1723), - [anon_sym_bool] = ACTIONS(1723), - [anon_sym_str] = ACTIONS(1723), - [anon_sym_char] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [anon_sym_async] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_default] = ACTIONS(1723), - [anon_sym_enum] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_impl] = ACTIONS(1723), - [anon_sym_let] = ACTIONS(1723), - [anon_sym_loop] = ACTIONS(1723), - [anon_sym_match] = ACTIONS(1723), - [anon_sym_mod] = ACTIONS(1723), - [anon_sym_pub] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1723), - [anon_sym_struct] = ACTIONS(1723), - [anon_sym_trait] = ACTIONS(1723), - [anon_sym_type] = ACTIONS(1723), - [anon_sym_union] = ACTIONS(1723), - [anon_sym_unsafe] = ACTIONS(1723), - [anon_sym_use] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_COLON_COLON] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_move] = ACTIONS(1723), - [sym_integer_literal] = ACTIONS(1721), - [aux_sym_string_literal_token1] = ACTIONS(1721), - [sym_char_literal] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1723), - [sym_super] = ACTIONS(1723), - [sym_crate] = ACTIONS(1723), - [sym_metavariable] = ACTIONS(1721), - [sym_raw_string_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(1721), + [sym_identifier] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_SLASH] = ACTIONS(1144), + [anon_sym_PERCENT] = ACTIONS(1144), + [anon_sym_CARET] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1144), + [anon_sym_AMP_AMP] = ACTIONS(1142), + [anon_sym_PIPE_PIPE] = ACTIONS(1142), + [anon_sym_LT_LT] = ACTIONS(1144), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_PLUS_EQ] = ACTIONS(1142), + [anon_sym_DASH_EQ] = ACTIONS(1142), + [anon_sym_STAR_EQ] = ACTIONS(1142), + [anon_sym_SLASH_EQ] = ACTIONS(1142), + [anon_sym_PERCENT_EQ] = ACTIONS(1142), + [anon_sym_CARET_EQ] = ACTIONS(1142), + [anon_sym_AMP_EQ] = ACTIONS(1142), + [anon_sym_PIPE_EQ] = ACTIONS(1142), + [anon_sym_LT_LT_EQ] = ACTIONS(1142), + [anon_sym_GT_GT_EQ] = ACTIONS(1142), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_EQ_EQ] = ACTIONS(1142), + [anon_sym_BANG_EQ] = ACTIONS(1142), + [anon_sym_GT] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_GT_EQ] = ACTIONS(1142), + [anon_sym_LT_EQ] = ACTIONS(1142), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DOT] = ACTIONS(1144), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1142), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1142), + [anon_sym_COMMA] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(1142), + [anon_sym_POUND] = 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_str] = ACTIONS(1144), + [anon_sym_char] = ACTIONS(1144), + [anon_sym_as] = ACTIONS(1144), + [anon_sym_const] = ACTIONS(1144), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_ref] = ACTIONS(1144), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1144), + [sym_super] = ACTIONS(1144), + [sym_crate] = ACTIONS(1144), + [sym_metavariable] = ACTIONS(1142), + [sym_raw_string_literal] = ACTIONS(1142), + [sym_float_literal] = ACTIONS(1142), [sym_block_comment] = ACTIONS(3), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(1725), - [sym_identifier] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_macro_rules_BANG] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_u8] = ACTIONS(1727), - [anon_sym_i8] = ACTIONS(1727), - [anon_sym_u16] = ACTIONS(1727), - [anon_sym_i16] = ACTIONS(1727), - [anon_sym_u32] = ACTIONS(1727), - [anon_sym_i32] = ACTIONS(1727), - [anon_sym_u64] = ACTIONS(1727), - [anon_sym_i64] = ACTIONS(1727), - [anon_sym_u128] = ACTIONS(1727), - [anon_sym_i128] = ACTIONS(1727), - [anon_sym_isize] = ACTIONS(1727), - [anon_sym_usize] = ACTIONS(1727), - [anon_sym_f32] = ACTIONS(1727), - [anon_sym_f64] = ACTIONS(1727), - [anon_sym_bool] = ACTIONS(1727), - [anon_sym_str] = ACTIONS(1727), - [anon_sym_char] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_async] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_fn] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_impl] = ACTIONS(1727), - [anon_sym_let] = ACTIONS(1727), - [anon_sym_loop] = ACTIONS(1727), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_mod] = ACTIONS(1727), - [anon_sym_pub] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_trait] = ACTIONS(1727), - [anon_sym_type] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_unsafe] = ACTIONS(1727), - [anon_sym_use] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_COLON_COLON] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_move] = ACTIONS(1727), - [sym_integer_literal] = ACTIONS(1725), - [aux_sym_string_literal_token1] = ACTIONS(1725), - [sym_char_literal] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1727), - [sym_super] = ACTIONS(1727), - [sym_crate] = ACTIONS(1727), - [sym_metavariable] = ACTIONS(1725), - [sym_raw_string_literal] = ACTIONS(1725), - [sym_float_literal] = ACTIONS(1725), + [sym_identifier] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_CARET] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1098), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1096), + [anon_sym_SLASH_EQ] = ACTIONS(1096), + [anon_sym_PERCENT_EQ] = ACTIONS(1096), + [anon_sym_CARET_EQ] = ACTIONS(1096), + [anon_sym_AMP_EQ] = ACTIONS(1096), + [anon_sym_PIPE_EQ] = ACTIONS(1096), + [anon_sym_LT_LT_EQ] = ACTIONS(1096), + [anon_sym_GT_GT_EQ] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1098), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1098), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym__] = ACTIONS(1098), + [anon_sym_DOT] = ACTIONS(1098), + [anon_sym_DOT_DOT] = ACTIONS(1098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1096), + [anon_sym_COMMA] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1096), + [anon_sym_POUND] = ACTIONS(1096), + [anon_sym_u8] = ACTIONS(1098), + [anon_sym_i8] = ACTIONS(1098), + [anon_sym_u16] = ACTIONS(1098), + [anon_sym_i16] = ACTIONS(1098), + [anon_sym_u32] = ACTIONS(1098), + [anon_sym_i32] = ACTIONS(1098), + [anon_sym_u64] = ACTIONS(1098), + [anon_sym_i64] = ACTIONS(1098), + [anon_sym_u128] = ACTIONS(1098), + [anon_sym_i128] = ACTIONS(1098), + [anon_sym_isize] = ACTIONS(1098), + [anon_sym_usize] = ACTIONS(1098), + [anon_sym_f32] = ACTIONS(1098), + [anon_sym_f64] = ACTIONS(1098), + [anon_sym_bool] = ACTIONS(1098), + [anon_sym_str] = ACTIONS(1098), + [anon_sym_char] = ACTIONS(1098), + [anon_sym_as] = ACTIONS(1098), + [anon_sym_const] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_ref] = ACTIONS(1098), + [sym_mutable_specifier] = ACTIONS(1098), + [sym_integer_literal] = ACTIONS(1096), + [aux_sym_string_literal_token1] = ACTIONS(1096), + [sym_char_literal] = ACTIONS(1096), + [anon_sym_true] = ACTIONS(1098), + [anon_sym_false] = ACTIONS(1098), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1098), + [sym_super] = ACTIONS(1098), + [sym_crate] = ACTIONS(1098), + [sym_metavariable] = ACTIONS(1096), + [sym_raw_string_literal] = ACTIONS(1096), + [sym_float_literal] = ACTIONS(1096), [sym_block_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1729), - [sym_identifier] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_macro_rules_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_u8] = ACTIONS(1731), - [anon_sym_i8] = ACTIONS(1731), - [anon_sym_u16] = ACTIONS(1731), - [anon_sym_i16] = ACTIONS(1731), - [anon_sym_u32] = ACTIONS(1731), - [anon_sym_i32] = ACTIONS(1731), - [anon_sym_u64] = ACTIONS(1731), - [anon_sym_i64] = ACTIONS(1731), - [anon_sym_u128] = ACTIONS(1731), - [anon_sym_i128] = ACTIONS(1731), - [anon_sym_isize] = ACTIONS(1731), - [anon_sym_usize] = ACTIONS(1731), - [anon_sym_f32] = ACTIONS(1731), - [anon_sym_f64] = ACTIONS(1731), - [anon_sym_bool] = ACTIONS(1731), - [anon_sym_str] = ACTIONS(1731), - [anon_sym_char] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1731), - [anon_sym_async] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1731), - [anon_sym_const] = ACTIONS(1731), - [anon_sym_continue] = ACTIONS(1731), - [anon_sym_default] = ACTIONS(1731), - [anon_sym_enum] = ACTIONS(1731), - [anon_sym_fn] = ACTIONS(1731), - [anon_sym_for] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(1731), - [anon_sym_impl] = ACTIONS(1731), - [anon_sym_let] = ACTIONS(1731), - [anon_sym_loop] = ACTIONS(1731), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_mod] = ACTIONS(1731), - [anon_sym_pub] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1731), - [anon_sym_struct] = ACTIONS(1731), - [anon_sym_trait] = ACTIONS(1731), - [anon_sym_type] = ACTIONS(1731), - [anon_sym_union] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1731), - [anon_sym_use] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1731), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_move] = ACTIONS(1731), - [sym_integer_literal] = ACTIONS(1729), - [aux_sym_string_literal_token1] = ACTIONS(1729), - [sym_char_literal] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1731), - [anon_sym_false] = ACTIONS(1731), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1731), - [sym_super] = ACTIONS(1731), - [sym_crate] = ACTIONS(1731), - [sym_metavariable] = ACTIONS(1729), - [sym_raw_string_literal] = ACTIONS(1729), - [sym_float_literal] = ACTIONS(1729), + [sym_identifier] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_SLASH] = ACTIONS(1128), + [anon_sym_PERCENT] = ACTIONS(1128), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1128), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_PLUS_EQ] = ACTIONS(1126), + [anon_sym_DASH_EQ] = ACTIONS(1126), + [anon_sym_STAR_EQ] = ACTIONS(1126), + [anon_sym_SLASH_EQ] = ACTIONS(1126), + [anon_sym_PERCENT_EQ] = ACTIONS(1126), + [anon_sym_CARET_EQ] = ACTIONS(1126), + [anon_sym_AMP_EQ] = ACTIONS(1126), + [anon_sym_PIPE_EQ] = ACTIONS(1126), + [anon_sym_LT_LT_EQ] = ACTIONS(1126), + [anon_sym_GT_GT_EQ] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(1126), + [anon_sym_BANG_EQ] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1128), + [anon_sym_GT_EQ] = ACTIONS(1126), + [anon_sym_LT_EQ] = ACTIONS(1126), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1128), + [anon_sym_DOT_DOT] = ACTIONS(1128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1126), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_COLON_COLON] = ACTIONS(1126), + [anon_sym_POUND] = 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_str] = ACTIONS(1128), + [anon_sym_char] = ACTIONS(1128), + [anon_sym_as] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_ref] = ACTIONS(1128), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1128), + [sym_super] = ACTIONS(1128), + [sym_crate] = ACTIONS(1128), + [sym_metavariable] = ACTIONS(1126), + [sym_raw_string_literal] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1126), [sym_block_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_macro_rules_BANG] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_u8] = ACTIONS(1735), - [anon_sym_i8] = ACTIONS(1735), - [anon_sym_u16] = ACTIONS(1735), - [anon_sym_i16] = ACTIONS(1735), - [anon_sym_u32] = ACTIONS(1735), - [anon_sym_i32] = ACTIONS(1735), - [anon_sym_u64] = ACTIONS(1735), - [anon_sym_i64] = ACTIONS(1735), - [anon_sym_u128] = ACTIONS(1735), - [anon_sym_i128] = ACTIONS(1735), - [anon_sym_isize] = ACTIONS(1735), - [anon_sym_usize] = ACTIONS(1735), - [anon_sym_f32] = ACTIONS(1735), - [anon_sym_f64] = ACTIONS(1735), - [anon_sym_bool] = ACTIONS(1735), - [anon_sym_str] = ACTIONS(1735), - [anon_sym_char] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_fn] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_impl] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_loop] = ACTIONS(1735), - [anon_sym_match] = ACTIONS(1735), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_pub] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_trait] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_unsafe] = ACTIONS(1735), - [anon_sym_use] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_COLON_COLON] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_move] = ACTIONS(1735), - [sym_integer_literal] = ACTIONS(1733), - [aux_sym_string_literal_token1] = ACTIONS(1733), - [sym_char_literal] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1735), - [sym_super] = ACTIONS(1735), - [sym_crate] = ACTIONS(1735), - [sym_metavariable] = ACTIONS(1733), - [sym_raw_string_literal] = ACTIONS(1733), - [sym_float_literal] = ACTIONS(1733), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2747), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2747), + [sym__literal] = STATE(2747), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_macro_rules_BANG] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_u8] = ACTIONS(1739), - [anon_sym_i8] = ACTIONS(1739), - [anon_sym_u16] = ACTIONS(1739), - [anon_sym_i16] = ACTIONS(1739), - [anon_sym_u32] = ACTIONS(1739), - [anon_sym_i32] = ACTIONS(1739), - [anon_sym_u64] = ACTIONS(1739), - [anon_sym_i64] = ACTIONS(1739), - [anon_sym_u128] = ACTIONS(1739), - [anon_sym_i128] = ACTIONS(1739), - [anon_sym_isize] = ACTIONS(1739), - [anon_sym_usize] = ACTIONS(1739), - [anon_sym_f32] = ACTIONS(1739), - [anon_sym_f64] = ACTIONS(1739), - [anon_sym_bool] = ACTIONS(1739), - [anon_sym_str] = ACTIONS(1739), - [anon_sym_char] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_fn] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_impl] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_mod] = ACTIONS(1739), - [anon_sym_pub] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_trait] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [anon_sym_unsafe] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_move] = ACTIONS(1739), - [sym_integer_literal] = ACTIONS(1737), - [aux_sym_string_literal_token1] = ACTIONS(1737), - [sym_char_literal] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1739), - [anon_sym_false] = ACTIONS(1739), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1739), - [sym_super] = ACTIONS(1739), - [sym_crate] = ACTIONS(1739), - [sym_metavariable] = ACTIONS(1737), - [sym_raw_string_literal] = ACTIONS(1737), - [sym_float_literal] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_QMARK] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(1180), + [anon_sym_PERCENT] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_LT_LT] = ACTIONS(1180), + [anon_sym_GT_GT] = ACTIONS(1180), + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_STAR_EQ] = ACTIONS(1178), + [anon_sym_SLASH_EQ] = ACTIONS(1178), + [anon_sym_PERCENT_EQ] = ACTIONS(1178), + [anon_sym_CARET_EQ] = ACTIONS(1178), + [anon_sym_AMP_EQ] = ACTIONS(1178), + [anon_sym_PIPE_EQ] = ACTIONS(1178), + [anon_sym_LT_LT_EQ] = ACTIONS(1178), + [anon_sym_GT_GT_EQ] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1180), + [anon_sym_EQ_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym__] = ACTIONS(1180), + [anon_sym_DOT] = ACTIONS(1180), + [anon_sym_DOT_DOT] = ACTIONS(1180), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_POUND] = 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_str] = ACTIONS(1180), + [anon_sym_char] = ACTIONS(1180), + [anon_sym_as] = ACTIONS(1180), + [anon_sym_const] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_union] = ACTIONS(1180), + [anon_sym_ref] = ACTIONS(1180), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1178), + [sym_raw_string_literal] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(1741), - [sym_identifier] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_macro_rules_BANG] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_u8] = ACTIONS(1743), - [anon_sym_i8] = ACTIONS(1743), - [anon_sym_u16] = ACTIONS(1743), - [anon_sym_i16] = ACTIONS(1743), - [anon_sym_u32] = ACTIONS(1743), - [anon_sym_i32] = ACTIONS(1743), - [anon_sym_u64] = ACTIONS(1743), - [anon_sym_i64] = ACTIONS(1743), - [anon_sym_u128] = ACTIONS(1743), - [anon_sym_i128] = ACTIONS(1743), - [anon_sym_isize] = ACTIONS(1743), - [anon_sym_usize] = ACTIONS(1743), - [anon_sym_f32] = ACTIONS(1743), - [anon_sym_f64] = ACTIONS(1743), - [anon_sym_bool] = ACTIONS(1743), - [anon_sym_str] = ACTIONS(1743), - [anon_sym_char] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [anon_sym_async] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_fn] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_impl] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_loop] = ACTIONS(1743), - [anon_sym_match] = ACTIONS(1743), - [anon_sym_mod] = ACTIONS(1743), - [anon_sym_pub] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_trait] = ACTIONS(1743), - [anon_sym_type] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [anon_sym_unsafe] = ACTIONS(1743), - [anon_sym_use] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_move] = ACTIONS(1743), - [sym_integer_literal] = ACTIONS(1741), - [aux_sym_string_literal_token1] = ACTIONS(1741), - [sym_char_literal] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1743), - [anon_sym_false] = ACTIONS(1743), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1743), - [sym_super] = ACTIONS(1743), - [sym_crate] = ACTIONS(1743), - [sym_metavariable] = ACTIONS(1741), - [sym_raw_string_literal] = ACTIONS(1741), - [sym_float_literal] = ACTIONS(1741), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_QMARK] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_SLASH] = ACTIONS(1140), + [anon_sym_PERCENT] = ACTIONS(1140), + [anon_sym_CARET] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_AMP_AMP] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1140), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_PLUS_EQ] = ACTIONS(1138), + [anon_sym_DASH_EQ] = ACTIONS(1138), + [anon_sym_STAR_EQ] = ACTIONS(1138), + [anon_sym_SLASH_EQ] = ACTIONS(1138), + [anon_sym_PERCENT_EQ] = ACTIONS(1138), + [anon_sym_CARET_EQ] = ACTIONS(1138), + [anon_sym_AMP_EQ] = ACTIONS(1138), + [anon_sym_PIPE_EQ] = ACTIONS(1138), + [anon_sym_LT_LT_EQ] = ACTIONS(1138), + [anon_sym_GT_GT_EQ] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1140), + [anon_sym_EQ_EQ] = ACTIONS(1138), + [anon_sym_BANG_EQ] = ACTIONS(1138), + [anon_sym_GT] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_GT_EQ] = ACTIONS(1138), + [anon_sym_LT_EQ] = ACTIONS(1138), + [anon_sym__] = ACTIONS(1140), + [anon_sym_DOT] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1138), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1138), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_COLON_COLON] = ACTIONS(1138), + [anon_sym_POUND] = 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_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_as] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1140), + [anon_sym_default] = ACTIONS(1140), + [anon_sym_union] = ACTIONS(1140), + [anon_sym_ref] = ACTIONS(1140), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1140), + [sym_super] = ACTIONS(1140), + [sym_crate] = ACTIONS(1140), + [sym_metavariable] = ACTIONS(1138), + [sym_raw_string_literal] = ACTIONS(1138), + [sym_float_literal] = ACTIONS(1138), [sym_block_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1745), - [sym_identifier] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_macro_rules_BANG] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_u8] = ACTIONS(1747), - [anon_sym_i8] = ACTIONS(1747), - [anon_sym_u16] = ACTIONS(1747), - [anon_sym_i16] = ACTIONS(1747), - [anon_sym_u32] = ACTIONS(1747), - [anon_sym_i32] = ACTIONS(1747), - [anon_sym_u64] = ACTIONS(1747), - [anon_sym_i64] = ACTIONS(1747), - [anon_sym_u128] = ACTIONS(1747), - [anon_sym_i128] = ACTIONS(1747), - [anon_sym_isize] = ACTIONS(1747), - [anon_sym_usize] = ACTIONS(1747), - [anon_sym_f32] = ACTIONS(1747), - [anon_sym_f64] = ACTIONS(1747), - [anon_sym_bool] = ACTIONS(1747), - [anon_sym_str] = ACTIONS(1747), - [anon_sym_char] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1747), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_fn] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_impl] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_loop] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_pub] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_trait] = ACTIONS(1747), - [anon_sym_type] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [anon_sym_unsafe] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_COLON_COLON] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_move] = ACTIONS(1747), - [sym_integer_literal] = ACTIONS(1745), - [aux_sym_string_literal_token1] = ACTIONS(1745), - [sym_char_literal] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_QMARK] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_PERCENT] = ACTIONS(1176), + [anon_sym_CARET] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1174), + [anon_sym_LT_LT] = ACTIONS(1176), + [anon_sym_GT_GT] = ACTIONS(1176), + [anon_sym_PLUS_EQ] = ACTIONS(1174), + [anon_sym_DASH_EQ] = ACTIONS(1174), + [anon_sym_STAR_EQ] = ACTIONS(1174), + [anon_sym_SLASH_EQ] = ACTIONS(1174), + [anon_sym_PERCENT_EQ] = ACTIONS(1174), + [anon_sym_CARET_EQ] = ACTIONS(1174), + [anon_sym_AMP_EQ] = ACTIONS(1174), + [anon_sym_PIPE_EQ] = ACTIONS(1174), + [anon_sym_LT_LT_EQ] = ACTIONS(1174), + [anon_sym_GT_GT_EQ] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_EQ_EQ] = ACTIONS(1174), + [anon_sym_BANG_EQ] = ACTIONS(1174), + [anon_sym_GT] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_GT_EQ] = ACTIONS(1174), + [anon_sym_LT_EQ] = ACTIONS(1174), + [anon_sym__] = ACTIONS(1176), + [anon_sym_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1174), + [anon_sym_COMMA] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_POUND] = 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_str] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_as] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_ref] = ACTIONS(1176), + [sym_mutable_specifier] = 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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1745), - [sym_raw_string_literal] = ACTIONS(1745), - [sym_float_literal] = ACTIONS(1745), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_crate] = ACTIONS(1176), + [sym_metavariable] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1749), - [sym_identifier] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_macro_rules_BANG] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_u8] = ACTIONS(1751), - [anon_sym_i8] = ACTIONS(1751), - [anon_sym_u16] = ACTIONS(1751), - [anon_sym_i16] = ACTIONS(1751), - [anon_sym_u32] = ACTIONS(1751), - [anon_sym_i32] = ACTIONS(1751), - [anon_sym_u64] = ACTIONS(1751), - [anon_sym_i64] = ACTIONS(1751), - [anon_sym_u128] = ACTIONS(1751), - [anon_sym_i128] = ACTIONS(1751), - [anon_sym_isize] = ACTIONS(1751), - [anon_sym_usize] = ACTIONS(1751), - [anon_sym_f32] = ACTIONS(1751), - [anon_sym_f64] = ACTIONS(1751), - [anon_sym_bool] = ACTIONS(1751), - [anon_sym_str] = ACTIONS(1751), - [anon_sym_char] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_async] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1751), - [anon_sym_fn] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_impl] = ACTIONS(1751), - [anon_sym_let] = ACTIONS(1751), - [anon_sym_loop] = ACTIONS(1751), - [anon_sym_match] = ACTIONS(1751), - [anon_sym_mod] = ACTIONS(1751), - [anon_sym_pub] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1751), - [anon_sym_struct] = ACTIONS(1751), - [anon_sym_trait] = ACTIONS(1751), - [anon_sym_type] = ACTIONS(1751), - [anon_sym_union] = ACTIONS(1751), - [anon_sym_unsafe] = ACTIONS(1751), - [anon_sym_use] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_POUND] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_extern] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_COLON_COLON] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_move] = ACTIONS(1751), - [sym_integer_literal] = ACTIONS(1749), - [aux_sym_string_literal_token1] = ACTIONS(1749), - [sym_char_literal] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(1751), - [anon_sym_false] = ACTIONS(1751), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1751), - [sym_super] = ACTIONS(1751), - [sym_crate] = ACTIONS(1751), - [sym_metavariable] = ACTIONS(1749), - [sym_raw_string_literal] = ACTIONS(1749), - [sym_float_literal] = ACTIONS(1749), + [sym_identifier] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_SLASH] = ACTIONS(1094), + [anon_sym_PERCENT] = ACTIONS(1094), + [anon_sym_CARET] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1094), + [anon_sym_PLUS_EQ] = ACTIONS(1092), + [anon_sym_DASH_EQ] = ACTIONS(1092), + [anon_sym_STAR_EQ] = ACTIONS(1092), + [anon_sym_SLASH_EQ] = ACTIONS(1092), + [anon_sym_PERCENT_EQ] = ACTIONS(1092), + [anon_sym_CARET_EQ] = ACTIONS(1092), + [anon_sym_AMP_EQ] = ACTIONS(1092), + [anon_sym_PIPE_EQ] = ACTIONS(1092), + [anon_sym_LT_LT_EQ] = ACTIONS(1092), + [anon_sym_GT_GT_EQ] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym__] = ACTIONS(1094), + [anon_sym_DOT] = ACTIONS(1094), + [anon_sym_DOT_DOT] = ACTIONS(1094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1092), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1092), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(1092), + [anon_sym_u8] = ACTIONS(1094), + [anon_sym_i8] = ACTIONS(1094), + [anon_sym_u16] = ACTIONS(1094), + [anon_sym_i16] = ACTIONS(1094), + [anon_sym_u32] = ACTIONS(1094), + [anon_sym_i32] = ACTIONS(1094), + [anon_sym_u64] = ACTIONS(1094), + [anon_sym_i64] = ACTIONS(1094), + [anon_sym_u128] = ACTIONS(1094), + [anon_sym_i128] = ACTIONS(1094), + [anon_sym_isize] = ACTIONS(1094), + [anon_sym_usize] = ACTIONS(1094), + [anon_sym_f32] = ACTIONS(1094), + [anon_sym_f64] = ACTIONS(1094), + [anon_sym_bool] = ACTIONS(1094), + [anon_sym_str] = ACTIONS(1094), + [anon_sym_char] = ACTIONS(1094), + [anon_sym_as] = ACTIONS(1094), + [anon_sym_const] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_union] = ACTIONS(1094), + [anon_sym_ref] = ACTIONS(1094), + [sym_mutable_specifier] = ACTIONS(1094), + [sym_integer_literal] = ACTIONS(1092), + [aux_sym_string_literal_token1] = ACTIONS(1092), + [sym_char_literal] = ACTIONS(1092), + [anon_sym_true] = ACTIONS(1094), + [anon_sym_false] = ACTIONS(1094), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1094), + [sym_crate] = ACTIONS(1094), + [sym_metavariable] = ACTIONS(1092), + [sym_raw_string_literal] = ACTIONS(1092), + [sym_float_literal] = ACTIONS(1092), [sym_block_comment] = ACTIONS(3), }, [413] = { + [sym_identifier] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_SLASH] = ACTIONS(1172), + [anon_sym_PERCENT] = ACTIONS(1172), + [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1170), + [anon_sym_LT_LT] = ACTIONS(1172), + [anon_sym_GT_GT] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1170), + [anon_sym_DASH_EQ] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1170), + [anon_sym_SLASH_EQ] = ACTIONS(1170), + [anon_sym_PERCENT_EQ] = ACTIONS(1170), + [anon_sym_CARET_EQ] = ACTIONS(1170), + [anon_sym_AMP_EQ] = ACTIONS(1170), + [anon_sym_PIPE_EQ] = ACTIONS(1170), + [anon_sym_LT_LT_EQ] = ACTIONS(1170), + [anon_sym_GT_GT_EQ] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1172), + [anon_sym_EQ_EQ] = ACTIONS(1170), + [anon_sym_BANG_EQ] = ACTIONS(1170), + [anon_sym_GT] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1172), + [anon_sym_GT_EQ] = ACTIONS(1170), + [anon_sym_LT_EQ] = ACTIONS(1170), + [anon_sym__] = ACTIONS(1172), + [anon_sym_DOT] = ACTIONS(1172), + [anon_sym_DOT_DOT] = ACTIONS(1172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1170), + [anon_sym_COMMA] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1170), + [anon_sym_POUND] = 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_str] = ACTIONS(1172), + [anon_sym_char] = ACTIONS(1172), + [anon_sym_as] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_ref] = ACTIONS(1172), + [sym_mutable_specifier] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1172), + [sym_super] = ACTIONS(1172), + [sym_crate] = ACTIONS(1172), + [sym_metavariable] = ACTIONS(1170), + [sym_raw_string_literal] = ACTIONS(1170), + [sym_float_literal] = ACTIONS(1170), + [sym_block_comment] = ACTIONS(3), + }, + [414] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2194), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2193), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2401), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2401), + [sym__literal] = STATE(2401), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), + [sym_block_comment] = ACTIONS(3), + }, + [415] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2150), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2152), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2505), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2505), + [sym__literal] = STATE(2505), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), + [sym_block_comment] = ACTIONS(3), + }, + [416] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2747), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2747), + [sym__literal] = STATE(2747), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), + [sym_block_comment] = ACTIONS(3), + }, + [417] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2188), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2186), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_type_binding] = STATE(2414), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [sym_block] = STATE(2414), + [sym__literal] = STATE(2414), + [sym_string_literal] = STATE(2610), + [sym_boolean_literal] = STATE(2610), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), + [sym_block_comment] = ACTIONS(3), + }, + [418] = { + [sym_empty_statement] = STATE(422), + [sym_macro_definition] = STATE(422), + [sym_attribute_item] = STATE(422), + [sym_inner_attribute_item] = STATE(422), + [sym_mod_item] = STATE(422), + [sym_foreign_mod_item] = STATE(422), + [sym_struct_item] = STATE(422), + [sym_union_item] = STATE(422), + [sym_enum_item] = STATE(422), + [sym_extern_crate_declaration] = STATE(422), + [sym_const_item] = STATE(422), + [sym_static_item] = STATE(422), + [sym_type_item] = STATE(422), + [sym_function_item] = STATE(422), + [sym_function_signature_item] = STATE(422), + [sym_function_modifiers] = STATE(3059), + [sym_impl_item] = STATE(422), + [sym_trait_item] = STATE(422), + [sym_associated_type] = STATE(422), + [sym_let_declaration] = STATE(422), + [sym_use_declaration] = STATE(422), + [sym_extern_modifier] = STATE(1806), + [sym_visibility_modifier] = STATE(1667), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(2796), + [aux_sym_declaration_list_repeat1] = STATE(422), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_POUND] = 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_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1508), + [sym_block_comment] = ACTIONS(3), + }, + [419] = { + [sym_empty_statement] = STATE(421), + [sym_macro_definition] = STATE(421), + [sym_attribute_item] = STATE(421), + [sym_inner_attribute_item] = STATE(421), + [sym_mod_item] = STATE(421), + [sym_foreign_mod_item] = STATE(421), + [sym_struct_item] = STATE(421), + [sym_union_item] = STATE(421), + [sym_enum_item] = STATE(421), + [sym_extern_crate_declaration] = STATE(421), + [sym_const_item] = STATE(421), + [sym_static_item] = STATE(421), + [sym_type_item] = STATE(421), + [sym_function_item] = STATE(421), + [sym_function_signature_item] = STATE(421), + [sym_function_modifiers] = STATE(3059), + [sym_impl_item] = STATE(421), + [sym_trait_item] = STATE(421), + [sym_associated_type] = STATE(421), + [sym_let_declaration] = STATE(421), + [sym_use_declaration] = STATE(421), + [sym_extern_modifier] = STATE(1806), + [sym_visibility_modifier] = STATE(1667), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_macro_invocation] = STATE(421), + [sym_scoped_identifier] = STATE(2796), + [aux_sym_declaration_list_repeat1] = STATE(421), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_POUND] = 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_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1508), + [sym_block_comment] = ACTIONS(3), + }, + [420] = { + [sym_empty_statement] = STATE(420), + [sym_macro_definition] = STATE(420), + [sym_attribute_item] = STATE(420), + [sym_inner_attribute_item] = STATE(420), + [sym_mod_item] = STATE(420), + [sym_foreign_mod_item] = STATE(420), + [sym_struct_item] = STATE(420), + [sym_union_item] = STATE(420), + [sym_enum_item] = STATE(420), + [sym_extern_crate_declaration] = STATE(420), + [sym_const_item] = STATE(420), + [sym_static_item] = STATE(420), + [sym_type_item] = STATE(420), + [sym_function_item] = STATE(420), + [sym_function_signature_item] = STATE(420), + [sym_function_modifiers] = STATE(3059), + [sym_impl_item] = STATE(420), + [sym_trait_item] = STATE(420), + [sym_associated_type] = STATE(420), + [sym_let_declaration] = STATE(420), + [sym_use_declaration] = STATE(420), + [sym_extern_modifier] = STATE(1806), + [sym_visibility_modifier] = STATE(1667), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_macro_invocation] = STATE(420), + [sym_scoped_identifier] = STATE(2796), + [aux_sym_declaration_list_repeat1] = STATE(420), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_macro_rules_BANG] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1529), + [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_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1547), + [anon_sym_impl] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_mod] = ACTIONS(1556), + [anon_sym_pub] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1565), + [anon_sym_trait] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1574), + [anon_sym_unsafe] = ACTIONS(1577), + [anon_sym_use] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1583), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1586), + [sym_crate] = ACTIONS(1589), + [sym_metavariable] = ACTIONS(1592), + [sym_block_comment] = ACTIONS(3), + }, + [421] = { + [sym_empty_statement] = STATE(420), + [sym_macro_definition] = STATE(420), + [sym_attribute_item] = STATE(420), + [sym_inner_attribute_item] = STATE(420), + [sym_mod_item] = STATE(420), + [sym_foreign_mod_item] = STATE(420), + [sym_struct_item] = STATE(420), + [sym_union_item] = STATE(420), + [sym_enum_item] = STATE(420), + [sym_extern_crate_declaration] = STATE(420), + [sym_const_item] = STATE(420), + [sym_static_item] = STATE(420), + [sym_type_item] = STATE(420), + [sym_function_item] = STATE(420), + [sym_function_signature_item] = STATE(420), + [sym_function_modifiers] = STATE(3059), + [sym_impl_item] = STATE(420), + [sym_trait_item] = STATE(420), + [sym_associated_type] = STATE(420), + [sym_let_declaration] = STATE(420), + [sym_use_declaration] = STATE(420), + [sym_extern_modifier] = STATE(1806), + [sym_visibility_modifier] = STATE(1667), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_macro_invocation] = STATE(420), + [sym_scoped_identifier] = STATE(2796), + [aux_sym_declaration_list_repeat1] = STATE(420), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_POUND] = 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_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1508), + [sym_block_comment] = ACTIONS(3), + }, + [422] = { + [sym_empty_statement] = STATE(420), + [sym_macro_definition] = STATE(420), + [sym_attribute_item] = STATE(420), + [sym_inner_attribute_item] = STATE(420), + [sym_mod_item] = STATE(420), + [sym_foreign_mod_item] = STATE(420), + [sym_struct_item] = STATE(420), + [sym_union_item] = STATE(420), + [sym_enum_item] = STATE(420), + [sym_extern_crate_declaration] = STATE(420), + [sym_const_item] = STATE(420), + [sym_static_item] = STATE(420), + [sym_type_item] = STATE(420), + [sym_function_item] = STATE(420), + [sym_function_signature_item] = STATE(420), + [sym_function_modifiers] = STATE(3059), + [sym_impl_item] = STATE(420), + [sym_trait_item] = STATE(420), + [sym_associated_type] = STATE(420), + [sym_let_declaration] = STATE(420), + [sym_use_declaration] = STATE(420), + [sym_extern_modifier] = STATE(1806), + [sym_visibility_modifier] = STATE(1667), + [sym_bracketed_type] = STATE(2826), + [sym_generic_type_with_turbofish] = STATE(2945), + [sym_macro_invocation] = STATE(420), + [sym_scoped_identifier] = STATE(2796), + [aux_sym_declaration_list_repeat1] = STATE(420), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_POUND] = 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_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1508), + [sym_block_comment] = ACTIONS(3), + }, + [423] = { + [ts_builtin_sym_end] = ACTIONS(1599), + [sym_identifier] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_macro_rules_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(1599), + [anon_sym_u8] = ACTIONS(1601), + [anon_sym_i8] = ACTIONS(1601), + [anon_sym_u16] = ACTIONS(1601), + [anon_sym_i16] = ACTIONS(1601), + [anon_sym_u32] = ACTIONS(1601), + [anon_sym_i32] = ACTIONS(1601), + [anon_sym_u64] = ACTIONS(1601), + [anon_sym_i64] = ACTIONS(1601), + [anon_sym_u128] = ACTIONS(1601), + [anon_sym_i128] = ACTIONS(1601), + [anon_sym_isize] = ACTIONS(1601), + [anon_sym_usize] = ACTIONS(1601), + [anon_sym_f32] = ACTIONS(1601), + [anon_sym_f64] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_str] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1601), + [anon_sym_async] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_enum] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_impl] = ACTIONS(1601), + [anon_sym_let] = ACTIONS(1601), + [anon_sym_loop] = ACTIONS(1601), + [anon_sym_match] = ACTIONS(1601), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_pub] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_struct] = ACTIONS(1601), + [anon_sym_trait] = ACTIONS(1601), + [anon_sym_type] = ACTIONS(1601), + [anon_sym_union] = ACTIONS(1601), + [anon_sym_unsafe] = ACTIONS(1601), + [anon_sym_use] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_extern] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1601), + [anon_sym_move] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1599), + [aux_sym_string_literal_token1] = ACTIONS(1599), + [sym_char_literal] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1601), + [sym_super] = ACTIONS(1601), + [sym_crate] = ACTIONS(1601), + [sym_metavariable] = ACTIONS(1599), + [sym_raw_string_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1599), + [sym_block_comment] = ACTIONS(3), + }, + [424] = { + [ts_builtin_sym_end] = ACTIONS(1603), + [sym_identifier] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_macro_rules_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_COLON_COLON] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(1603), + [anon_sym_u8] = ACTIONS(1605), + [anon_sym_i8] = ACTIONS(1605), + [anon_sym_u16] = ACTIONS(1605), + [anon_sym_i16] = ACTIONS(1605), + [anon_sym_u32] = ACTIONS(1605), + [anon_sym_i32] = ACTIONS(1605), + [anon_sym_u64] = ACTIONS(1605), + [anon_sym_i64] = ACTIONS(1605), + [anon_sym_u128] = ACTIONS(1605), + [anon_sym_i128] = ACTIONS(1605), + [anon_sym_isize] = ACTIONS(1605), + [anon_sym_usize] = ACTIONS(1605), + [anon_sym_f32] = ACTIONS(1605), + [anon_sym_f64] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_str] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_move] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1603), + [aux_sym_string_literal_token1] = ACTIONS(1603), + [sym_char_literal] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1603), + [sym_raw_string_literal] = ACTIONS(1603), + [sym_float_literal] = ACTIONS(1603), + [sym_block_comment] = ACTIONS(3), + }, + [425] = { + [ts_builtin_sym_end] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_macro_rules_BANG] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_COLON_COLON] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_impl] = ACTIONS(1609), + [anon_sym_let] = ACTIONS(1609), + [anon_sym_loop] = ACTIONS(1609), + [anon_sym_match] = ACTIONS(1609), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_pub] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1609), + [anon_sym_trait] = ACTIONS(1609), + [anon_sym_type] = ACTIONS(1609), + [anon_sym_union] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(1609), + [anon_sym_use] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_extern] = ACTIONS(1609), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_move] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1607), + [aux_sym_string_literal_token1] = ACTIONS(1607), + [sym_char_literal] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1609), + [sym_super] = ACTIONS(1609), + [sym_crate] = ACTIONS(1609), + [sym_metavariable] = ACTIONS(1607), + [sym_raw_string_literal] = ACTIONS(1607), + [sym_float_literal] = ACTIONS(1607), + [sym_block_comment] = ACTIONS(3), + }, + [426] = { + [ts_builtin_sym_end] = ACTIONS(1611), + [sym_identifier] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_macro_rules_BANG] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_COLON_COLON] = ACTIONS(1611), + [anon_sym_POUND] = ACTIONS(1611), + [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_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(1613), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_enum] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_impl] = ACTIONS(1613), + [anon_sym_let] = ACTIONS(1613), + [anon_sym_loop] = ACTIONS(1613), + [anon_sym_match] = ACTIONS(1613), + [anon_sym_mod] = ACTIONS(1613), + [anon_sym_pub] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_struct] = ACTIONS(1613), + [anon_sym_trait] = ACTIONS(1613), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_union] = ACTIONS(1613), + [anon_sym_unsafe] = ACTIONS(1613), + [anon_sym_use] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_extern] = ACTIONS(1613), + [anon_sym_yield] = ACTIONS(1613), + [anon_sym_move] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1611), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1613), + [sym_super] = ACTIONS(1613), + [sym_crate] = ACTIONS(1613), + [sym_metavariable] = ACTIONS(1611), + [sym_raw_string_literal] = ACTIONS(1611), + [sym_float_literal] = ACTIONS(1611), + [sym_block_comment] = ACTIONS(3), + }, + [427] = { + [ts_builtin_sym_end] = ACTIONS(1615), + [sym_identifier] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_macro_rules_BANG] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_PIPE] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(1615), + [anon_sym_DOT_DOT] = ACTIONS(1615), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(1615), + [anon_sym_u8] = ACTIONS(1617), + [anon_sym_i8] = ACTIONS(1617), + [anon_sym_u16] = ACTIONS(1617), + [anon_sym_i16] = ACTIONS(1617), + [anon_sym_u32] = ACTIONS(1617), + [anon_sym_i32] = ACTIONS(1617), + [anon_sym_u64] = ACTIONS(1617), + [anon_sym_i64] = ACTIONS(1617), + [anon_sym_u128] = ACTIONS(1617), + [anon_sym_i128] = ACTIONS(1617), + [anon_sym_isize] = ACTIONS(1617), + [anon_sym_usize] = ACTIONS(1617), + [anon_sym_f32] = ACTIONS(1617), + [anon_sym_f64] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_str] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_default] = ACTIONS(1617), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_impl] = ACTIONS(1617), + [anon_sym_let] = ACTIONS(1617), + [anon_sym_loop] = ACTIONS(1617), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_mod] = ACTIONS(1617), + [anon_sym_pub] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_struct] = ACTIONS(1617), + [anon_sym_trait] = ACTIONS(1617), + [anon_sym_type] = ACTIONS(1617), + [anon_sym_union] = ACTIONS(1617), + [anon_sym_unsafe] = ACTIONS(1617), + [anon_sym_use] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_extern] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1617), + [anon_sym_move] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1615), + [aux_sym_string_literal_token1] = ACTIONS(1615), + [sym_char_literal] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1615), + [sym_raw_string_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1615), + [sym_block_comment] = ACTIONS(3), + }, + [428] = { + [ts_builtin_sym_end] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_macro_rules_BANG] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_DOT_DOT] = ACTIONS(1619), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(1619), + [anon_sym_u8] = ACTIONS(1621), + [anon_sym_i8] = ACTIONS(1621), + [anon_sym_u16] = ACTIONS(1621), + [anon_sym_i16] = ACTIONS(1621), + [anon_sym_u32] = ACTIONS(1621), + [anon_sym_i32] = ACTIONS(1621), + [anon_sym_u64] = ACTIONS(1621), + [anon_sym_i64] = ACTIONS(1621), + [anon_sym_u128] = ACTIONS(1621), + [anon_sym_i128] = ACTIONS(1621), + [anon_sym_isize] = ACTIONS(1621), + [anon_sym_usize] = ACTIONS(1621), + [anon_sym_f32] = ACTIONS(1621), + [anon_sym_f64] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_str] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_enum] = ACTIONS(1621), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_impl] = ACTIONS(1621), + [anon_sym_let] = ACTIONS(1621), + [anon_sym_loop] = ACTIONS(1621), + [anon_sym_match] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1621), + [anon_sym_pub] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_trait] = ACTIONS(1621), + [anon_sym_type] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_unsafe] = ACTIONS(1621), + [anon_sym_use] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym_yield] = ACTIONS(1621), + [anon_sym_move] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1619), + [aux_sym_string_literal_token1] = ACTIONS(1619), + [sym_char_literal] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1621), + [sym_super] = ACTIONS(1621), + [sym_crate] = ACTIONS(1621), + [sym_metavariable] = ACTIONS(1619), + [sym_raw_string_literal] = ACTIONS(1619), + [sym_float_literal] = ACTIONS(1619), + [sym_block_comment] = ACTIONS(3), + }, + [429] = { + [ts_builtin_sym_end] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_macro_rules_BANG] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_COLON_COLON] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(1623), + [anon_sym_u8] = ACTIONS(1625), + [anon_sym_i8] = ACTIONS(1625), + [anon_sym_u16] = ACTIONS(1625), + [anon_sym_i16] = ACTIONS(1625), + [anon_sym_u32] = ACTIONS(1625), + [anon_sym_i32] = ACTIONS(1625), + [anon_sym_u64] = ACTIONS(1625), + [anon_sym_i64] = ACTIONS(1625), + [anon_sym_u128] = ACTIONS(1625), + [anon_sym_i128] = ACTIONS(1625), + [anon_sym_isize] = ACTIONS(1625), + [anon_sym_usize] = ACTIONS(1625), + [anon_sym_f32] = ACTIONS(1625), + [anon_sym_f64] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_str] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1625), + [anon_sym_async] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_pub] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_trait] = ACTIONS(1625), + [anon_sym_type] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_unsafe] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_yield] = ACTIONS(1625), + [anon_sym_move] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1623), + [aux_sym_string_literal_token1] = ACTIONS(1623), + [sym_char_literal] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1625), + [sym_super] = ACTIONS(1625), + [sym_crate] = ACTIONS(1625), + [sym_metavariable] = ACTIONS(1623), + [sym_raw_string_literal] = ACTIONS(1623), + [sym_float_literal] = ACTIONS(1623), + [sym_block_comment] = ACTIONS(3), + }, + [430] = { + [ts_builtin_sym_end] = ACTIONS(1627), + [sym_identifier] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_macro_rules_BANG] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1627), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_DOT_DOT] = ACTIONS(1627), + [anon_sym_COLON_COLON] = ACTIONS(1627), + [anon_sym_POUND] = ACTIONS(1627), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1629), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(1629), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_mod] = ACTIONS(1629), + [anon_sym_pub] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_trait] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_unsafe] = ACTIONS(1629), + [anon_sym_use] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym_yield] = ACTIONS(1629), + [anon_sym_move] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1627), + [aux_sym_string_literal_token1] = ACTIONS(1627), + [sym_char_literal] = ACTIONS(1627), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1629), + [sym_super] = ACTIONS(1629), + [sym_crate] = ACTIONS(1629), + [sym_metavariable] = ACTIONS(1627), + [sym_raw_string_literal] = ACTIONS(1627), + [sym_float_literal] = ACTIONS(1627), + [sym_block_comment] = ACTIONS(3), + }, + [431] = { + [ts_builtin_sym_end] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_macro_rules_BANG] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(1631), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u128] = ACTIONS(1633), + [anon_sym_i128] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_str] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_impl] = ACTIONS(1633), + [anon_sym_let] = ACTIONS(1633), + [anon_sym_loop] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_mod] = ACTIONS(1633), + [anon_sym_pub] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_trait] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_unsafe] = ACTIONS(1633), + [anon_sym_use] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym_yield] = ACTIONS(1633), + [anon_sym_move] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1631), + [aux_sym_string_literal_token1] = ACTIONS(1631), + [sym_char_literal] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1633), + [sym_super] = ACTIONS(1633), + [sym_crate] = ACTIONS(1633), + [sym_metavariable] = ACTIONS(1631), + [sym_raw_string_literal] = ACTIONS(1631), + [sym_float_literal] = ACTIONS(1631), + [sym_block_comment] = ACTIONS(3), + }, + [432] = { + [ts_builtin_sym_end] = ACTIONS(1635), + [sym_identifier] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_macro_rules_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1635), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1635), + [anon_sym_COLON_COLON] = ACTIONS(1635), + [anon_sym_POUND] = ACTIONS(1635), + [anon_sym_u8] = ACTIONS(1637), + [anon_sym_i8] = ACTIONS(1637), + [anon_sym_u16] = ACTIONS(1637), + [anon_sym_i16] = ACTIONS(1637), + [anon_sym_u32] = ACTIONS(1637), + [anon_sym_i32] = ACTIONS(1637), + [anon_sym_u64] = ACTIONS(1637), + [anon_sym_i64] = ACTIONS(1637), + [anon_sym_u128] = ACTIONS(1637), + [anon_sym_i128] = ACTIONS(1637), + [anon_sym_isize] = ACTIONS(1637), + [anon_sym_usize] = ACTIONS(1637), + [anon_sym_f32] = ACTIONS(1637), + [anon_sym_f64] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_str] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_async] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1637), + [anon_sym_let] = ACTIONS(1637), + [anon_sym_loop] = ACTIONS(1637), + [anon_sym_match] = ACTIONS(1637), + [anon_sym_mod] = ACTIONS(1637), + [anon_sym_pub] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_trait] = ACTIONS(1637), + [anon_sym_type] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1637), + [anon_sym_use] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1637), + [anon_sym_move] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1635), + [aux_sym_string_literal_token1] = ACTIONS(1635), + [sym_char_literal] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1637), + [sym_super] = ACTIONS(1637), + [sym_crate] = ACTIONS(1637), + [sym_metavariable] = ACTIONS(1635), + [sym_raw_string_literal] = ACTIONS(1635), + [sym_float_literal] = ACTIONS(1635), + [sym_block_comment] = ACTIONS(3), + }, + [433] = { + [ts_builtin_sym_end] = ACTIONS(1639), + [sym_identifier] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_macro_rules_BANG] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(1639), + [anon_sym_u8] = ACTIONS(1641), + [anon_sym_i8] = ACTIONS(1641), + [anon_sym_u16] = ACTIONS(1641), + [anon_sym_i16] = ACTIONS(1641), + [anon_sym_u32] = ACTIONS(1641), + [anon_sym_i32] = ACTIONS(1641), + [anon_sym_u64] = ACTIONS(1641), + [anon_sym_i64] = ACTIONS(1641), + [anon_sym_u128] = ACTIONS(1641), + [anon_sym_i128] = ACTIONS(1641), + [anon_sym_isize] = ACTIONS(1641), + [anon_sym_usize] = ACTIONS(1641), + [anon_sym_f32] = ACTIONS(1641), + [anon_sym_f64] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_str] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(1641), + [anon_sym_async] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1641), + [anon_sym_enum] = ACTIONS(1641), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_impl] = ACTIONS(1641), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_loop] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_mod] = ACTIONS(1641), + [anon_sym_pub] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_struct] = ACTIONS(1641), + [anon_sym_trait] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_union] = ACTIONS(1641), + [anon_sym_unsafe] = ACTIONS(1641), + [anon_sym_use] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_move] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1639), + [aux_sym_string_literal_token1] = ACTIONS(1639), + [sym_char_literal] = ACTIONS(1639), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1641), + [sym_super] = ACTIONS(1641), + [sym_crate] = ACTIONS(1641), + [sym_metavariable] = ACTIONS(1639), + [sym_raw_string_literal] = ACTIONS(1639), + [sym_float_literal] = ACTIONS(1639), + [sym_block_comment] = ACTIONS(3), + }, + [434] = { + [ts_builtin_sym_end] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_macro_rules_BANG] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_COLON_COLON] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1645), + [anon_sym_enum] = ACTIONS(1645), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_impl] = ACTIONS(1645), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_loop] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1645), + [anon_sym_mod] = ACTIONS(1645), + [anon_sym_pub] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_struct] = ACTIONS(1645), + [anon_sym_trait] = ACTIONS(1645), + [anon_sym_type] = ACTIONS(1645), + [anon_sym_union] = ACTIONS(1645), + [anon_sym_unsafe] = ACTIONS(1645), + [anon_sym_use] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_extern] = ACTIONS(1645), + [anon_sym_yield] = ACTIONS(1645), + [anon_sym_move] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1643), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1643), + [sym_raw_string_literal] = ACTIONS(1643), + [sym_float_literal] = ACTIONS(1643), + [sym_block_comment] = ACTIONS(3), + }, + [435] = { + [ts_builtin_sym_end] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_macro_rules_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1647), + [anon_sym_DOT_DOT] = ACTIONS(1647), + [anon_sym_COLON_COLON] = ACTIONS(1647), + [anon_sym_POUND] = ACTIONS(1647), + [anon_sym_u8] = ACTIONS(1649), + [anon_sym_i8] = ACTIONS(1649), + [anon_sym_u16] = ACTIONS(1649), + [anon_sym_i16] = ACTIONS(1649), + [anon_sym_u32] = ACTIONS(1649), + [anon_sym_i32] = ACTIONS(1649), + [anon_sym_u64] = ACTIONS(1649), + [anon_sym_i64] = ACTIONS(1649), + [anon_sym_u128] = ACTIONS(1649), + [anon_sym_i128] = ACTIONS(1649), + [anon_sym_isize] = ACTIONS(1649), + [anon_sym_usize] = ACTIONS(1649), + [anon_sym_f32] = ACTIONS(1649), + [anon_sym_f64] = ACTIONS(1649), + [anon_sym_bool] = ACTIONS(1649), + [anon_sym_str] = ACTIONS(1649), + [anon_sym_char] = ACTIONS(1649), + [anon_sym_SQUOTE] = ACTIONS(1649), + [anon_sym_async] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_default] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_fn] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_impl] = ACTIONS(1649), + [anon_sym_let] = ACTIONS(1649), + [anon_sym_loop] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1649), + [anon_sym_mod] = ACTIONS(1649), + [anon_sym_pub] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_static] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_trait] = ACTIONS(1649), + [anon_sym_type] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_unsafe] = ACTIONS(1649), + [anon_sym_use] = ACTIONS(1649), + [anon_sym_while] = ACTIONS(1649), + [anon_sym_extern] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1649), + [anon_sym_move] = ACTIONS(1649), + [sym_integer_literal] = ACTIONS(1647), + [aux_sym_string_literal_token1] = ACTIONS(1647), + [sym_char_literal] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1649), + [anon_sym_false] = ACTIONS(1649), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1649), + [sym_super] = ACTIONS(1649), + [sym_crate] = ACTIONS(1649), + [sym_metavariable] = ACTIONS(1647), + [sym_raw_string_literal] = ACTIONS(1647), + [sym_float_literal] = ACTIONS(1647), + [sym_block_comment] = ACTIONS(3), + }, + [436] = { + [ts_builtin_sym_end] = ACTIONS(1651), + [sym_identifier] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_macro_rules_BANG] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1651), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u128] = ACTIONS(1653), + [anon_sym_i128] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_str] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_impl] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_mod] = ACTIONS(1653), + [anon_sym_pub] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_trait] = ACTIONS(1653), + [anon_sym_type] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_yield] = ACTIONS(1653), + [anon_sym_move] = ACTIONS(1653), + [sym_integer_literal] = ACTIONS(1651), + [aux_sym_string_literal_token1] = ACTIONS(1651), + [sym_char_literal] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_crate] = ACTIONS(1653), + [sym_metavariable] = ACTIONS(1651), + [sym_raw_string_literal] = ACTIONS(1651), + [sym_float_literal] = ACTIONS(1651), + [sym_block_comment] = ACTIONS(3), + }, + [437] = { + [ts_builtin_sym_end] = ACTIONS(1655), + [sym_identifier] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_macro_rules_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_async] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_default] = 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_loop] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_mod] = ACTIONS(1657), + [anon_sym_pub] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1657), + [anon_sym_struct] = ACTIONS(1657), + [anon_sym_trait] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1657), + [anon_sym_union] = ACTIONS(1657), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_use] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [anon_sym_extern] = ACTIONS(1657), + [anon_sym_yield] = ACTIONS(1657), + [anon_sym_move] = ACTIONS(1657), + [sym_integer_literal] = ACTIONS(1655), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1657), + [sym_super] = ACTIONS(1657), + [sym_crate] = ACTIONS(1657), + [sym_metavariable] = ACTIONS(1655), + [sym_raw_string_literal] = ACTIONS(1655), + [sym_float_literal] = ACTIONS(1655), + [sym_block_comment] = ACTIONS(3), + }, + [438] = { + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_identifier] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_macro_rules_BANG] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_COLON_COLON] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_u8] = ACTIONS(1661), + [anon_sym_i8] = ACTIONS(1661), + [anon_sym_u16] = ACTIONS(1661), + [anon_sym_i16] = ACTIONS(1661), + [anon_sym_u32] = ACTIONS(1661), + [anon_sym_i32] = ACTIONS(1661), + [anon_sym_u64] = ACTIONS(1661), + [anon_sym_i64] = ACTIONS(1661), + [anon_sym_u128] = ACTIONS(1661), + [anon_sym_i128] = ACTIONS(1661), + [anon_sym_isize] = ACTIONS(1661), + [anon_sym_usize] = ACTIONS(1661), + [anon_sym_f32] = ACTIONS(1661), + [anon_sym_f64] = ACTIONS(1661), + [anon_sym_bool] = ACTIONS(1661), + [anon_sym_str] = ACTIONS(1661), + [anon_sym_char] = ACTIONS(1661), + [anon_sym_SQUOTE] = ACTIONS(1661), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_fn] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_loop] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1661), + [anon_sym_pub] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_trait] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_unsafe] = ACTIONS(1661), + [anon_sym_use] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1661), + [anon_sym_move] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [aux_sym_string_literal_token1] = ACTIONS(1659), + [sym_char_literal] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1661), + [sym_super] = ACTIONS(1661), + [sym_crate] = ACTIONS(1661), + [sym_metavariable] = ACTIONS(1659), + [sym_raw_string_literal] = ACTIONS(1659), + [sym_float_literal] = ACTIONS(1659), + [sym_block_comment] = ACTIONS(3), + }, + [439] = { + [ts_builtin_sym_end] = ACTIONS(1663), + [sym_identifier] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_macro_rules_BANG] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_COLON_COLON] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_async] = ACTIONS(1665), + [anon_sym_break] = ACTIONS(1665), + [anon_sym_const] = ACTIONS(1665), + [anon_sym_continue] = ACTIONS(1665), + [anon_sym_default] = ACTIONS(1665), + [anon_sym_enum] = ACTIONS(1665), + [anon_sym_fn] = ACTIONS(1665), + [anon_sym_for] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_impl] = ACTIONS(1665), + [anon_sym_let] = ACTIONS(1665), + [anon_sym_loop] = ACTIONS(1665), + [anon_sym_match] = ACTIONS(1665), + [anon_sym_mod] = ACTIONS(1665), + [anon_sym_pub] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1665), + [anon_sym_struct] = ACTIONS(1665), + [anon_sym_trait] = ACTIONS(1665), + [anon_sym_type] = ACTIONS(1665), + [anon_sym_union] = ACTIONS(1665), + [anon_sym_unsafe] = ACTIONS(1665), + [anon_sym_use] = ACTIONS(1665), + [anon_sym_while] = ACTIONS(1665), + [anon_sym_extern] = ACTIONS(1665), + [anon_sym_yield] = ACTIONS(1665), + [anon_sym_move] = ACTIONS(1665), + [sym_integer_literal] = ACTIONS(1663), + [aux_sym_string_literal_token1] = ACTIONS(1663), + [sym_char_literal] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1665), + [sym_super] = ACTIONS(1665), + [sym_crate] = ACTIONS(1665), + [sym_metavariable] = ACTIONS(1663), + [sym_raw_string_literal] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1663), + [sym_block_comment] = ACTIONS(3), + }, + [440] = { + [ts_builtin_sym_end] = ACTIONS(1667), + [sym_identifier] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_macro_rules_BANG] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1669), + [anon_sym_i8] = ACTIONS(1669), + [anon_sym_u16] = ACTIONS(1669), + [anon_sym_i16] = ACTIONS(1669), + [anon_sym_u32] = ACTIONS(1669), + [anon_sym_i32] = ACTIONS(1669), + [anon_sym_u64] = ACTIONS(1669), + [anon_sym_i64] = ACTIONS(1669), + [anon_sym_u128] = ACTIONS(1669), + [anon_sym_i128] = ACTIONS(1669), + [anon_sym_isize] = ACTIONS(1669), + [anon_sym_usize] = ACTIONS(1669), + [anon_sym_f32] = ACTIONS(1669), + [anon_sym_f64] = ACTIONS(1669), + [anon_sym_bool] = ACTIONS(1669), + [anon_sym_str] = ACTIONS(1669), + [anon_sym_char] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_default] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1669), + [anon_sym_fn] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_impl] = ACTIONS(1669), + [anon_sym_let] = ACTIONS(1669), + [anon_sym_loop] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1669), + [anon_sym_pub] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1669), + [anon_sym_trait] = ACTIONS(1669), + [anon_sym_type] = ACTIONS(1669), + [anon_sym_union] = ACTIONS(1669), + [anon_sym_unsafe] = ACTIONS(1669), + [anon_sym_use] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_yield] = ACTIONS(1669), + [anon_sym_move] = ACTIONS(1669), + [sym_integer_literal] = ACTIONS(1667), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1669), + [sym_super] = ACTIONS(1669), + [sym_crate] = ACTIONS(1669), + [sym_metavariable] = ACTIONS(1667), + [sym_raw_string_literal] = ACTIONS(1667), + [sym_float_literal] = ACTIONS(1667), + [sym_block_comment] = ACTIONS(3), + }, + [441] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_macro_rules_BANG] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1671), + [anon_sym_COLON_COLON] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_u8] = ACTIONS(1673), + [anon_sym_i8] = ACTIONS(1673), + [anon_sym_u16] = ACTIONS(1673), + [anon_sym_i16] = ACTIONS(1673), + [anon_sym_u32] = ACTIONS(1673), + [anon_sym_i32] = ACTIONS(1673), + [anon_sym_u64] = ACTIONS(1673), + [anon_sym_i64] = ACTIONS(1673), + [anon_sym_u128] = ACTIONS(1673), + [anon_sym_i128] = ACTIONS(1673), + [anon_sym_isize] = ACTIONS(1673), + [anon_sym_usize] = ACTIONS(1673), + [anon_sym_f32] = ACTIONS(1673), + [anon_sym_f64] = ACTIONS(1673), + [anon_sym_bool] = ACTIONS(1673), + [anon_sym_str] = ACTIONS(1673), + [anon_sym_char] = ACTIONS(1673), + [anon_sym_SQUOTE] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [anon_sym_fn] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_impl] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_loop] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1673), + [anon_sym_pub] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_struct] = ACTIONS(1673), + [anon_sym_trait] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_unsafe] = ACTIONS(1673), + [anon_sym_use] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_move] = ACTIONS(1673), + [sym_integer_literal] = ACTIONS(1671), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_crate] = ACTIONS(1673), + [sym_metavariable] = ACTIONS(1671), + [sym_raw_string_literal] = ACTIONS(1671), + [sym_float_literal] = ACTIONS(1671), + [sym_block_comment] = ACTIONS(3), + }, + [442] = { + [ts_builtin_sym_end] = ACTIONS(1675), + [sym_identifier] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_macro_rules_BANG] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1677), + [anon_sym_i8] = ACTIONS(1677), + [anon_sym_u16] = ACTIONS(1677), + [anon_sym_i16] = ACTIONS(1677), + [anon_sym_u32] = ACTIONS(1677), + [anon_sym_i32] = ACTIONS(1677), + [anon_sym_u64] = ACTIONS(1677), + [anon_sym_i64] = ACTIONS(1677), + [anon_sym_u128] = ACTIONS(1677), + [anon_sym_i128] = ACTIONS(1677), + [anon_sym_isize] = ACTIONS(1677), + [anon_sym_usize] = ACTIONS(1677), + [anon_sym_f32] = ACTIONS(1677), + [anon_sym_f64] = ACTIONS(1677), + [anon_sym_bool] = ACTIONS(1677), + [anon_sym_str] = ACTIONS(1677), + [anon_sym_char] = ACTIONS(1677), + [anon_sym_SQUOTE] = ACTIONS(1677), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1677), + [anon_sym_enum] = ACTIONS(1677), + [anon_sym_fn] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_impl] = ACTIONS(1677), + [anon_sym_let] = ACTIONS(1677), + [anon_sym_loop] = ACTIONS(1677), + [anon_sym_match] = ACTIONS(1677), + [anon_sym_mod] = ACTIONS(1677), + [anon_sym_pub] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_struct] = ACTIONS(1677), + [anon_sym_trait] = ACTIONS(1677), + [anon_sym_type] = ACTIONS(1677), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_use] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_yield] = ACTIONS(1677), + [anon_sym_move] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1675), + [aux_sym_string_literal_token1] = ACTIONS(1675), + [sym_char_literal] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1677), + [sym_super] = ACTIONS(1677), + [sym_crate] = ACTIONS(1677), + [sym_metavariable] = ACTIONS(1675), + [sym_raw_string_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1675), + [sym_block_comment] = ACTIONS(3), + }, + [443] = { + [ts_builtin_sym_end] = ACTIONS(1679), + [sym_identifier] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_macro_rules_BANG] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_u8] = ACTIONS(1681), + [anon_sym_i8] = ACTIONS(1681), + [anon_sym_u16] = ACTIONS(1681), + [anon_sym_i16] = ACTIONS(1681), + [anon_sym_u32] = ACTIONS(1681), + [anon_sym_i32] = ACTIONS(1681), + [anon_sym_u64] = ACTIONS(1681), + [anon_sym_i64] = ACTIONS(1681), + [anon_sym_u128] = ACTIONS(1681), + [anon_sym_i128] = ACTIONS(1681), + [anon_sym_isize] = ACTIONS(1681), + [anon_sym_usize] = ACTIONS(1681), + [anon_sym_f32] = ACTIONS(1681), + [anon_sym_f64] = ACTIONS(1681), + [anon_sym_bool] = ACTIONS(1681), + [anon_sym_str] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_SQUOTE] = ACTIONS(1681), + [anon_sym_async] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_default] = ACTIONS(1681), + [anon_sym_enum] = ACTIONS(1681), + [anon_sym_fn] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_impl] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1681), + [anon_sym_loop] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1681), + [anon_sym_pub] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1681), + [anon_sym_struct] = ACTIONS(1681), + [anon_sym_trait] = ACTIONS(1681), + [anon_sym_type] = ACTIONS(1681), + [anon_sym_union] = ACTIONS(1681), + [anon_sym_unsafe] = ACTIONS(1681), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1681), + [anon_sym_yield] = ACTIONS(1681), + [anon_sym_move] = ACTIONS(1681), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1679), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1681), + [anon_sym_false] = ACTIONS(1681), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1681), + [sym_super] = ACTIONS(1681), + [sym_crate] = ACTIONS(1681), + [sym_metavariable] = ACTIONS(1679), + [sym_raw_string_literal] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1679), + [sym_block_comment] = ACTIONS(3), + }, + [444] = { + [ts_builtin_sym_end] = ACTIONS(1683), + [sym_identifier] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_macro_rules_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_u8] = ACTIONS(1685), + [anon_sym_i8] = ACTIONS(1685), + [anon_sym_u16] = ACTIONS(1685), + [anon_sym_i16] = ACTIONS(1685), + [anon_sym_u32] = ACTIONS(1685), + [anon_sym_i32] = ACTIONS(1685), + [anon_sym_u64] = ACTIONS(1685), + [anon_sym_i64] = ACTIONS(1685), + [anon_sym_u128] = ACTIONS(1685), + [anon_sym_i128] = ACTIONS(1685), + [anon_sym_isize] = ACTIONS(1685), + [anon_sym_usize] = ACTIONS(1685), + [anon_sym_f32] = ACTIONS(1685), + [anon_sym_f64] = ACTIONS(1685), + [anon_sym_bool] = ACTIONS(1685), + [anon_sym_str] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_SQUOTE] = ACTIONS(1685), + [anon_sym_async] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_impl] = ACTIONS(1685), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_loop] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1685), + [anon_sym_pub] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_struct] = ACTIONS(1685), + [anon_sym_trait] = ACTIONS(1685), + [anon_sym_type] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1685), + [anon_sym_use] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1685), + [anon_sym_move] = ACTIONS(1685), + [sym_integer_literal] = ACTIONS(1683), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1683), + [sym_raw_string_literal] = ACTIONS(1683), + [sym_float_literal] = ACTIONS(1683), + [sym_block_comment] = ACTIONS(3), + }, + [445] = { + [ts_builtin_sym_end] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_macro_rules_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_u8] = ACTIONS(1689), + [anon_sym_i8] = ACTIONS(1689), + [anon_sym_u16] = ACTIONS(1689), + [anon_sym_i16] = ACTIONS(1689), + [anon_sym_u32] = ACTIONS(1689), + [anon_sym_i32] = ACTIONS(1689), + [anon_sym_u64] = ACTIONS(1689), + [anon_sym_i64] = ACTIONS(1689), + [anon_sym_u128] = ACTIONS(1689), + [anon_sym_i128] = ACTIONS(1689), + [anon_sym_isize] = ACTIONS(1689), + [anon_sym_usize] = ACTIONS(1689), + [anon_sym_f32] = ACTIONS(1689), + [anon_sym_f64] = ACTIONS(1689), + [anon_sym_bool] = ACTIONS(1689), + [anon_sym_str] = ACTIONS(1689), + [anon_sym_char] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), + [anon_sym_fn] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_impl] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_loop] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_pub] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_struct] = ACTIONS(1689), + [anon_sym_trait] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_union] = ACTIONS(1689), + [anon_sym_unsafe] = ACTIONS(1689), + [anon_sym_use] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_move] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1687), + [aux_sym_string_literal_token1] = ACTIONS(1687), + [sym_char_literal] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_crate] = ACTIONS(1689), + [sym_metavariable] = ACTIONS(1687), + [sym_raw_string_literal] = ACTIONS(1687), + [sym_float_literal] = ACTIONS(1687), + [sym_block_comment] = ACTIONS(3), + }, + [446] = { + [ts_builtin_sym_end] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_macro_rules_BANG] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_u8] = ACTIONS(1693), + [anon_sym_i8] = ACTIONS(1693), + [anon_sym_u16] = ACTIONS(1693), + [anon_sym_i16] = ACTIONS(1693), + [anon_sym_u32] = ACTIONS(1693), + [anon_sym_i32] = ACTIONS(1693), + [anon_sym_u64] = ACTIONS(1693), + [anon_sym_i64] = ACTIONS(1693), + [anon_sym_u128] = ACTIONS(1693), + [anon_sym_i128] = ACTIONS(1693), + [anon_sym_isize] = ACTIONS(1693), + [anon_sym_usize] = ACTIONS(1693), + [anon_sym_f32] = ACTIONS(1693), + [anon_sym_f64] = ACTIONS(1693), + [anon_sym_bool] = ACTIONS(1693), + [anon_sym_str] = ACTIONS(1693), + [anon_sym_char] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_async] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1693), + [anon_sym_enum] = ACTIONS(1693), + [anon_sym_fn] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_impl] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_mod] = ACTIONS(1693), + [anon_sym_pub] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1693), + [anon_sym_struct] = ACTIONS(1693), + [anon_sym_trait] = ACTIONS(1693), + [anon_sym_type] = ACTIONS(1693), + [anon_sym_union] = ACTIONS(1693), + [anon_sym_unsafe] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_move] = ACTIONS(1693), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1691), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1693), + [sym_super] = ACTIONS(1693), + [sym_crate] = ACTIONS(1693), + [sym_metavariable] = ACTIONS(1691), + [sym_raw_string_literal] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1691), + [sym_block_comment] = ACTIONS(3), + }, + [447] = { + [ts_builtin_sym_end] = ACTIONS(1695), + [sym_identifier] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_macro_rules_BANG] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1695), + [anon_sym_COLON_COLON] = ACTIONS(1695), + [anon_sym_POUND] = 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_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_str] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1697), + [anon_sym_enum] = ACTIONS(1697), + [anon_sym_fn] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_impl] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1697), + [anon_sym_loop] = ACTIONS(1697), + [anon_sym_match] = ACTIONS(1697), + [anon_sym_mod] = ACTIONS(1697), + [anon_sym_pub] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1697), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_trait] = ACTIONS(1697), + [anon_sym_type] = ACTIONS(1697), + [anon_sym_union] = ACTIONS(1697), + [anon_sym_unsafe] = ACTIONS(1697), + [anon_sym_use] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_extern] = ACTIONS(1697), + [anon_sym_yield] = ACTIONS(1697), + [anon_sym_move] = ACTIONS(1697), + [sym_integer_literal] = ACTIONS(1695), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1695), + [sym_raw_string_literal] = ACTIONS(1695), + [sym_float_literal] = ACTIONS(1695), + [sym_block_comment] = ACTIONS(3), + }, + [448] = { + [ts_builtin_sym_end] = ACTIONS(1699), + [sym_identifier] = ACTIONS(1701), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_macro_rules_BANG] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1699), + [anon_sym_COLON_COLON] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(1699), + [anon_sym_u8] = ACTIONS(1701), + [anon_sym_i8] = ACTIONS(1701), + [anon_sym_u16] = ACTIONS(1701), + [anon_sym_i16] = ACTIONS(1701), + [anon_sym_u32] = ACTIONS(1701), + [anon_sym_i32] = ACTIONS(1701), + [anon_sym_u64] = ACTIONS(1701), + [anon_sym_i64] = ACTIONS(1701), + [anon_sym_u128] = ACTIONS(1701), + [anon_sym_i128] = ACTIONS(1701), + [anon_sym_isize] = ACTIONS(1701), + [anon_sym_usize] = ACTIONS(1701), + [anon_sym_f32] = ACTIONS(1701), + [anon_sym_f64] = ACTIONS(1701), + [anon_sym_bool] = ACTIONS(1701), + [anon_sym_str] = ACTIONS(1701), + [anon_sym_char] = ACTIONS(1701), + [anon_sym_SQUOTE] = ACTIONS(1701), + [anon_sym_async] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_default] = ACTIONS(1701), + [anon_sym_enum] = ACTIONS(1701), + [anon_sym_fn] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_impl] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_pub] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1701), + [anon_sym_struct] = ACTIONS(1701), + [anon_sym_trait] = ACTIONS(1701), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_union] = ACTIONS(1701), + [anon_sym_unsafe] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_move] = ACTIONS(1701), + [sym_integer_literal] = ACTIONS(1699), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1701), + [sym_super] = ACTIONS(1701), + [sym_crate] = ACTIONS(1701), + [sym_metavariable] = ACTIONS(1699), + [sym_raw_string_literal] = ACTIONS(1699), + [sym_float_literal] = ACTIONS(1699), + [sym_block_comment] = ACTIONS(3), + }, + [449] = { + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_macro_rules_BANG] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_COLON_COLON] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1703), + [anon_sym_u8] = ACTIONS(1705), + [anon_sym_i8] = ACTIONS(1705), + [anon_sym_u16] = ACTIONS(1705), + [anon_sym_i16] = ACTIONS(1705), + [anon_sym_u32] = ACTIONS(1705), + [anon_sym_i32] = ACTIONS(1705), + [anon_sym_u64] = ACTIONS(1705), + [anon_sym_i64] = ACTIONS(1705), + [anon_sym_u128] = ACTIONS(1705), + [anon_sym_i128] = ACTIONS(1705), + [anon_sym_isize] = ACTIONS(1705), + [anon_sym_usize] = ACTIONS(1705), + [anon_sym_f32] = ACTIONS(1705), + [anon_sym_f64] = ACTIONS(1705), + [anon_sym_bool] = ACTIONS(1705), + [anon_sym_str] = ACTIONS(1705), + [anon_sym_char] = ACTIONS(1705), + [anon_sym_SQUOTE] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [anon_sym_fn] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_impl] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_mod] = ACTIONS(1705), + [anon_sym_pub] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_trait] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_union] = ACTIONS(1705), + [anon_sym_unsafe] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_move] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [aux_sym_string_literal_token1] = ACTIONS(1703), + [sym_char_literal] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1705), + [sym_super] = ACTIONS(1705), + [sym_crate] = ACTIONS(1705), + [sym_metavariable] = ACTIONS(1703), + [sym_raw_string_literal] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1703), + [sym_block_comment] = ACTIONS(3), + }, + [450] = { + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_macro_rules_BANG] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(1707), + [anon_sym_u8] = ACTIONS(1709), + [anon_sym_i8] = ACTIONS(1709), + [anon_sym_u16] = ACTIONS(1709), + [anon_sym_i16] = ACTIONS(1709), + [anon_sym_u32] = ACTIONS(1709), + [anon_sym_i32] = ACTIONS(1709), + [anon_sym_u64] = ACTIONS(1709), + [anon_sym_i64] = ACTIONS(1709), + [anon_sym_u128] = ACTIONS(1709), + [anon_sym_i128] = ACTIONS(1709), + [anon_sym_isize] = ACTIONS(1709), + [anon_sym_usize] = ACTIONS(1709), + [anon_sym_f32] = ACTIONS(1709), + [anon_sym_f64] = ACTIONS(1709), + [anon_sym_bool] = ACTIONS(1709), + [anon_sym_str] = ACTIONS(1709), + [anon_sym_char] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_default] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [anon_sym_fn] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_impl] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1709), + [anon_sym_pub] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_struct] = ACTIONS(1709), + [anon_sym_trait] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_union] = ACTIONS(1709), + [anon_sym_unsafe] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_move] = ACTIONS(1709), + [sym_integer_literal] = ACTIONS(1707), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1709), + [sym_super] = ACTIONS(1709), + [sym_crate] = ACTIONS(1709), + [sym_metavariable] = ACTIONS(1707), + [sym_raw_string_literal] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1707), + [sym_block_comment] = ACTIONS(3), + }, + [451] = { + [ts_builtin_sym_end] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_macro_rules_BANG] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_COLON_COLON] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_u8] = ACTIONS(1713), + [anon_sym_i8] = ACTIONS(1713), + [anon_sym_u16] = ACTIONS(1713), + [anon_sym_i16] = ACTIONS(1713), + [anon_sym_u32] = ACTIONS(1713), + [anon_sym_i32] = ACTIONS(1713), + [anon_sym_u64] = ACTIONS(1713), + [anon_sym_i64] = ACTIONS(1713), + [anon_sym_u128] = ACTIONS(1713), + [anon_sym_i128] = ACTIONS(1713), + [anon_sym_isize] = ACTIONS(1713), + [anon_sym_usize] = ACTIONS(1713), + [anon_sym_f32] = ACTIONS(1713), + [anon_sym_f64] = ACTIONS(1713), + [anon_sym_bool] = ACTIONS(1713), + [anon_sym_str] = ACTIONS(1713), + [anon_sym_char] = ACTIONS(1713), + [anon_sym_SQUOTE] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1713), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_fn] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_impl] = ACTIONS(1713), + [anon_sym_let] = ACTIONS(1713), + [anon_sym_loop] = ACTIONS(1713), + [anon_sym_match] = ACTIONS(1713), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_pub] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1713), + [anon_sym_struct] = ACTIONS(1713), + [anon_sym_trait] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(1713), + [anon_sym_union] = ACTIONS(1713), + [anon_sym_unsafe] = ACTIONS(1713), + [anon_sym_use] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1713), + [anon_sym_extern] = ACTIONS(1713), + [anon_sym_yield] = ACTIONS(1713), + [anon_sym_move] = ACTIONS(1713), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1711), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1713), + [sym_super] = ACTIONS(1713), + [sym_crate] = ACTIONS(1713), + [sym_metavariable] = ACTIONS(1711), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), + [sym_block_comment] = ACTIONS(3), + }, + [452] = { + [sym_attribute_item] = STATE(659), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(653), + [sym_last_match_arm] = STATE(2924), + [sym_match_pattern] = STATE(3048), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(659), + [aux_sym_match_block_repeat1] = STATE(653), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [453] = { [ts_builtin_sym_end] = ACTIONS(1753), [sym_identifier] = ACTIONS(1755), [anon_sym_SEMI] = ACTIONS(1753), @@ -52238,6 +63175,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1753), [anon_sym_LBRACK] = ACTIONS(1753), [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1753), + [anon_sym_DOT_DOT] = ACTIONS(1753), + [anon_sym_COLON_COLON] = ACTIONS(1753), + [anon_sym_POUND] = ACTIONS(1753), [anon_sym_u8] = ACTIONS(1755), [anon_sym_i8] = ACTIONS(1755), [anon_sym_u16] = ACTIONS(1755), @@ -52280,15 +63225,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1755), [anon_sym_use] = ACTIONS(1755), [anon_sym_while] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), [anon_sym_extern] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_DOT_DOT] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1755), [anon_sym_move] = ACTIONS(1755), [sym_integer_literal] = ACTIONS(1753), [aux_sym_string_literal_token1] = ACTIONS(1753), @@ -52304,7 +63242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1753), [sym_block_comment] = ACTIONS(3), }, - [414] = { + [454] = { [ts_builtin_sym_end] = ACTIONS(1757), [sym_identifier] = ACTIONS(1759), [anon_sym_SEMI] = ACTIONS(1757), @@ -52314,6 +63252,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1757), [anon_sym_LBRACK] = ACTIONS(1757), [anon_sym_STAR] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_COLON_COLON] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(1757), [anon_sym_u8] = ACTIONS(1759), [anon_sym_i8] = ACTIONS(1759), [anon_sym_u16] = ACTIONS(1759), @@ -52356,15 +63302,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1759), [anon_sym_use] = ACTIONS(1759), [anon_sym_while] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), [anon_sym_extern] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_COLON_COLON] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_yield] = ACTIONS(1759), [anon_sym_move] = ACTIONS(1759), [sym_integer_literal] = ACTIONS(1757), [aux_sym_string_literal_token1] = ACTIONS(1757), @@ -52380,7 +63319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1757), [sym_block_comment] = ACTIONS(3), }, - [415] = { + [455] = { [ts_builtin_sym_end] = ACTIONS(1761), [sym_identifier] = ACTIONS(1763), [anon_sym_SEMI] = ACTIONS(1761), @@ -52390,6 +63329,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1761), [anon_sym_LBRACK] = ACTIONS(1761), [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_COLON_COLON] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(1761), [anon_sym_u8] = ACTIONS(1763), [anon_sym_i8] = ACTIONS(1763), [anon_sym_u16] = ACTIONS(1763), @@ -52432,15 +63379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1763), [anon_sym_use] = ACTIONS(1763), [anon_sym_while] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), [anon_sym_extern] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_COLON_COLON] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_yield] = ACTIONS(1763), [anon_sym_move] = ACTIONS(1763), [sym_integer_literal] = ACTIONS(1761), [aux_sym_string_literal_token1] = ACTIONS(1761), @@ -52456,7 +63396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1761), [sym_block_comment] = ACTIONS(3), }, - [416] = { + [456] = { [ts_builtin_sym_end] = ACTIONS(1765), [sym_identifier] = ACTIONS(1767), [anon_sym_SEMI] = ACTIONS(1765), @@ -52466,6 +63406,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1765), [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_COLON_COLON] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), [anon_sym_u8] = ACTIONS(1767), [anon_sym_i8] = ACTIONS(1767), [anon_sym_u16] = ACTIONS(1767), @@ -52508,15 +63456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1767), [anon_sym_use] = ACTIONS(1767), [anon_sym_while] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), [anon_sym_extern] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_COLON_COLON] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_yield] = ACTIONS(1767), [anon_sym_move] = ACTIONS(1767), [sym_integer_literal] = ACTIONS(1765), [aux_sym_string_literal_token1] = ACTIONS(1765), @@ -52532,7 +63473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1765), [sym_block_comment] = ACTIONS(3), }, - [417] = { + [457] = { [ts_builtin_sym_end] = ACTIONS(1769), [sym_identifier] = ACTIONS(1771), [anon_sym_SEMI] = ACTIONS(1769), @@ -52542,6 +63483,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1769), [anon_sym_LBRACK] = ACTIONS(1769), [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_COLON_COLON] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(1769), [anon_sym_u8] = ACTIONS(1771), [anon_sym_i8] = ACTIONS(1771), [anon_sym_u16] = ACTIONS(1771), @@ -52584,15 +63533,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1771), [anon_sym_use] = ACTIONS(1771), [anon_sym_while] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), [anon_sym_extern] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_COLON_COLON] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1771), [anon_sym_move] = ACTIONS(1771), [sym_integer_literal] = ACTIONS(1769), [aux_sym_string_literal_token1] = ACTIONS(1769), @@ -52608,7 +63550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1769), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [458] = { [ts_builtin_sym_end] = ACTIONS(1773), [sym_identifier] = ACTIONS(1775), [anon_sym_SEMI] = ACTIONS(1773), @@ -52618,6 +63560,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_LBRACK] = ACTIONS(1773), [anon_sym_STAR] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_COLON_COLON] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(1773), [anon_sym_u8] = ACTIONS(1775), [anon_sym_i8] = ACTIONS(1775), [anon_sym_u16] = ACTIONS(1775), @@ -52660,15 +63610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1775), [anon_sym_use] = ACTIONS(1775), [anon_sym_while] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1773), [anon_sym_extern] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_COLON_COLON] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1775), [anon_sym_move] = ACTIONS(1775), [sym_integer_literal] = ACTIONS(1773), [aux_sym_string_literal_token1] = ACTIONS(1773), @@ -52684,7 +63627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1773), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [459] = { [ts_builtin_sym_end] = ACTIONS(1777), [sym_identifier] = ACTIONS(1779), [anon_sym_SEMI] = ACTIONS(1777), @@ -52694,6 +63637,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1777), [anon_sym_LBRACK] = ACTIONS(1777), [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_DOT_DOT] = ACTIONS(1777), + [anon_sym_COLON_COLON] = ACTIONS(1777), + [anon_sym_POUND] = ACTIONS(1777), [anon_sym_u8] = ACTIONS(1779), [anon_sym_i8] = ACTIONS(1779), [anon_sym_u16] = ACTIONS(1779), @@ -52736,15 +63687,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1779), [anon_sym_use] = ACTIONS(1779), [anon_sym_while] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(1777), - [anon_sym_BANG] = ACTIONS(1777), [anon_sym_extern] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_COLON_COLON] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1779), [anon_sym_move] = ACTIONS(1779), [sym_integer_literal] = ACTIONS(1777), [aux_sym_string_literal_token1] = ACTIONS(1777), @@ -52760,7 +63704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1777), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [460] = { [ts_builtin_sym_end] = ACTIONS(1781), [sym_identifier] = ACTIONS(1783), [anon_sym_SEMI] = ACTIONS(1781), @@ -52770,6 +63714,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(1781), [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_COLON_COLON] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(1781), [anon_sym_u8] = ACTIONS(1783), [anon_sym_i8] = ACTIONS(1783), [anon_sym_u16] = ACTIONS(1783), @@ -52812,15 +63764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1783), [anon_sym_use] = ACTIONS(1783), [anon_sym_while] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1781), [anon_sym_extern] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_COLON_COLON] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1783), [anon_sym_move] = ACTIONS(1783), [sym_integer_literal] = ACTIONS(1781), [aux_sym_string_literal_token1] = ACTIONS(1781), @@ -52836,7 +63781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1781), [sym_block_comment] = ACTIONS(3), }, - [421] = { + [461] = { [ts_builtin_sym_end] = ACTIONS(1785), [sym_identifier] = ACTIONS(1787), [anon_sym_SEMI] = ACTIONS(1785), @@ -52846,6 +63791,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1785), [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(1785), [anon_sym_u8] = ACTIONS(1787), [anon_sym_i8] = ACTIONS(1787), [anon_sym_u16] = ACTIONS(1787), @@ -52888,15 +63841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1787), [anon_sym_use] = ACTIONS(1787), [anon_sym_while] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_BANG] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_COLON_COLON] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1787), [anon_sym_move] = ACTIONS(1787), [sym_integer_literal] = ACTIONS(1785), [aux_sym_string_literal_token1] = ACTIONS(1785), @@ -52912,7 +63858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1785), [sym_block_comment] = ACTIONS(3), }, - [422] = { + [462] = { [ts_builtin_sym_end] = ACTIONS(1789), [sym_identifier] = ACTIONS(1791), [anon_sym_SEMI] = ACTIONS(1789), @@ -52922,6 +63868,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1789), [anon_sym_LBRACK] = ACTIONS(1789), [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1789), + [anon_sym_COLON_COLON] = ACTIONS(1789), + [anon_sym_POUND] = ACTIONS(1789), [anon_sym_u8] = ACTIONS(1791), [anon_sym_i8] = ACTIONS(1791), [anon_sym_u16] = ACTIONS(1791), @@ -52964,15 +63918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1791), [anon_sym_use] = ACTIONS(1791), [anon_sym_while] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1789), [anon_sym_extern] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_DOT_DOT] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1791), [anon_sym_move] = ACTIONS(1791), [sym_integer_literal] = ACTIONS(1789), [aux_sym_string_literal_token1] = ACTIONS(1789), @@ -52988,7 +63935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1789), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [463] = { [ts_builtin_sym_end] = ACTIONS(1793), [sym_identifier] = ACTIONS(1795), [anon_sym_SEMI] = ACTIONS(1793), @@ -52998,6 +63945,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1793), [anon_sym_LBRACK] = ACTIONS(1793), [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_COLON_COLON] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1793), [anon_sym_u8] = ACTIONS(1795), [anon_sym_i8] = ACTIONS(1795), [anon_sym_u16] = ACTIONS(1795), @@ -53040,15 +63995,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1795), [anon_sym_use] = ACTIONS(1795), [anon_sym_while] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), [anon_sym_extern] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_PIPE] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1795), [anon_sym_move] = ACTIONS(1795), [sym_integer_literal] = ACTIONS(1793), [aux_sym_string_literal_token1] = ACTIONS(1793), @@ -53064,7 +64012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1793), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [464] = { [ts_builtin_sym_end] = ACTIONS(1797), [sym_identifier] = ACTIONS(1799), [anon_sym_SEMI] = ACTIONS(1797), @@ -53074,6 +64022,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1797), [anon_sym_LBRACK] = ACTIONS(1797), [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_COLON_COLON] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(1797), [anon_sym_u8] = ACTIONS(1799), [anon_sym_i8] = ACTIONS(1799), [anon_sym_u16] = ACTIONS(1799), @@ -53116,15 +64072,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1799), [anon_sym_use] = ACTIONS(1799), [anon_sym_while] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), [anon_sym_extern] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_COLON_COLON] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1799), [anon_sym_move] = ACTIONS(1799), [sym_integer_literal] = ACTIONS(1797), [aux_sym_string_literal_token1] = ACTIONS(1797), @@ -53140,7 +64089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1797), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [465] = { [ts_builtin_sym_end] = ACTIONS(1801), [sym_identifier] = ACTIONS(1803), [anon_sym_SEMI] = ACTIONS(1801), @@ -53150,6 +64099,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1801), [anon_sym_LBRACK] = ACTIONS(1801), [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1801), + [anon_sym_COLON_COLON] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(1801), [anon_sym_u8] = ACTIONS(1803), [anon_sym_i8] = ACTIONS(1803), [anon_sym_u16] = ACTIONS(1803), @@ -53192,15 +64149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1803), [anon_sym_use] = ACTIONS(1803), [anon_sym_while] = ACTIONS(1803), - [anon_sym_POUND] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), [anon_sym_extern] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_yield] = ACTIONS(1803), [anon_sym_move] = ACTIONS(1803), [sym_integer_literal] = ACTIONS(1801), [aux_sym_string_literal_token1] = ACTIONS(1801), @@ -53216,7 +64166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1801), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [466] = { [ts_builtin_sym_end] = ACTIONS(1805), [sym_identifier] = ACTIONS(1807), [anon_sym_SEMI] = ACTIONS(1805), @@ -53226,6 +64176,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1805), [anon_sym_LBRACK] = ACTIONS(1805), [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [anon_sym_POUND] = ACTIONS(1805), [anon_sym_u8] = ACTIONS(1807), [anon_sym_i8] = ACTIONS(1807), [anon_sym_u16] = ACTIONS(1807), @@ -53268,15 +64226,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1807), [anon_sym_use] = ACTIONS(1807), [anon_sym_while] = ACTIONS(1807), - [anon_sym_POUND] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), [anon_sym_extern] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_DOT_DOT] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_yield] = ACTIONS(1807), [anon_sym_move] = ACTIONS(1807), [sym_integer_literal] = ACTIONS(1805), [aux_sym_string_literal_token1] = ACTIONS(1805), @@ -53292,7 +64243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1805), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [467] = { [ts_builtin_sym_end] = ACTIONS(1809), [sym_identifier] = ACTIONS(1811), [anon_sym_SEMI] = ACTIONS(1809), @@ -53302,6 +64253,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1809), [anon_sym_LBRACK] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_DOT_DOT] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), [anon_sym_u8] = ACTIONS(1811), [anon_sym_i8] = ACTIONS(1811), [anon_sym_u16] = ACTIONS(1811), @@ -53344,15 +64303,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1811), [anon_sym_use] = ACTIONS(1811), [anon_sym_while] = ACTIONS(1811), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), [anon_sym_extern] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_DOT_DOT] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_yield] = ACTIONS(1811), [anon_sym_move] = ACTIONS(1811), [sym_integer_literal] = ACTIONS(1809), [aux_sym_string_literal_token1] = ACTIONS(1809), @@ -53368,250 +64320,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1809), [sym_block_comment] = ACTIONS(3), }, - [428] = { - [sym__token_pattern] = STATE(280), - [sym_token_tree_pattern] = STATE(280), - [sym_token_binding_pattern] = STATE(280), - [sym_token_repetition_pattern] = STATE(280), - [sym__literal] = STATE(280), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1815), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1813), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u128] = ACTIONS(1813), - [anon_sym_i128] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_str] = ACTIONS(1813), - [anon_sym_char] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_impl] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_mod] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_trait] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_where] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [sym_mutable_specifier] = ACTIONS(1813), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_crate] = ACTIONS(1813), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [429] = { - [sym__token_pattern] = STATE(273), - [sym_token_tree_pattern] = STATE(273), - [sym_token_binding_pattern] = STATE(273), - [sym_token_repetition_pattern] = STATE(273), - [sym__literal] = STATE(273), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1817), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u128] = ACTIONS(1817), - [anon_sym_i128] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_str] = ACTIONS(1817), - [anon_sym_char] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_as] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_await] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_impl] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_loop] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_mod] = ACTIONS(1817), - [anon_sym_pub] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_trait] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_union] = ACTIONS(1817), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_use] = ACTIONS(1817), - [anon_sym_where] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [sym_mutable_specifier] = ACTIONS(1817), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1817), - [sym_super] = ACTIONS(1817), - [sym_crate] = ACTIONS(1817), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [468] = { + [ts_builtin_sym_end] = ACTIONS(1813), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_macro_rules_BANG] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1813), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_u8] = ACTIONS(1815), + [anon_sym_i8] = ACTIONS(1815), + [anon_sym_u16] = ACTIONS(1815), + [anon_sym_i16] = ACTIONS(1815), + [anon_sym_u32] = ACTIONS(1815), + [anon_sym_i32] = ACTIONS(1815), + [anon_sym_u64] = ACTIONS(1815), + [anon_sym_i64] = ACTIONS(1815), + [anon_sym_u128] = ACTIONS(1815), + [anon_sym_i128] = ACTIONS(1815), + [anon_sym_isize] = ACTIONS(1815), + [anon_sym_usize] = ACTIONS(1815), + [anon_sym_f32] = ACTIONS(1815), + [anon_sym_f64] = ACTIONS(1815), + [anon_sym_bool] = ACTIONS(1815), + [anon_sym_str] = ACTIONS(1815), + [anon_sym_char] = ACTIONS(1815), + [anon_sym_SQUOTE] = ACTIONS(1815), + [anon_sym_async] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1815), + [anon_sym_fn] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_impl] = ACTIONS(1815), + [anon_sym_let] = ACTIONS(1815), + [anon_sym_loop] = ACTIONS(1815), + [anon_sym_match] = ACTIONS(1815), + [anon_sym_mod] = ACTIONS(1815), + [anon_sym_pub] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_static] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1815), + [anon_sym_trait] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_union] = ACTIONS(1815), + [anon_sym_unsafe] = ACTIONS(1815), + [anon_sym_use] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_extern] = ACTIONS(1815), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_move] = ACTIONS(1815), + [sym_integer_literal] = ACTIONS(1813), + [aux_sym_string_literal_token1] = ACTIONS(1813), + [sym_char_literal] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1815), + [anon_sym_false] = ACTIONS(1815), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1815), + [sym_super] = ACTIONS(1815), + [sym_crate] = ACTIONS(1815), + [sym_metavariable] = ACTIONS(1813), + [sym_raw_string_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), [sym_block_comment] = ACTIONS(3), }, - [430] = { - [ts_builtin_sym_end] = ACTIONS(1819), - [sym_identifier] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_macro_rules_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u128] = ACTIONS(1821), - [anon_sym_i128] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_str] = ACTIONS(1821), - [anon_sym_char] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_fn] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_impl] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_mod] = ACTIONS(1821), - [anon_sym_pub] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_trait] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_POUND] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_move] = ACTIONS(1821), - [sym_integer_literal] = ACTIONS(1819), - [aux_sym_string_literal_token1] = ACTIONS(1819), - [sym_char_literal] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1821), - [sym_super] = ACTIONS(1821), - [sym_crate] = ACTIONS(1821), - [sym_metavariable] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1819), - [sym_float_literal] = ACTIONS(1819), + [469] = { + [ts_builtin_sym_end] = ACTIONS(1817), + [sym_identifier] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1817), + [anon_sym_macro_rules_BANG] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_COLON_COLON] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(1817), + [anon_sym_u8] = ACTIONS(1819), + [anon_sym_i8] = ACTIONS(1819), + [anon_sym_u16] = ACTIONS(1819), + [anon_sym_i16] = ACTIONS(1819), + [anon_sym_u32] = ACTIONS(1819), + [anon_sym_i32] = ACTIONS(1819), + [anon_sym_u64] = ACTIONS(1819), + [anon_sym_i64] = ACTIONS(1819), + [anon_sym_u128] = ACTIONS(1819), + [anon_sym_i128] = ACTIONS(1819), + [anon_sym_isize] = ACTIONS(1819), + [anon_sym_usize] = ACTIONS(1819), + [anon_sym_f32] = ACTIONS(1819), + [anon_sym_f64] = ACTIONS(1819), + [anon_sym_bool] = ACTIONS(1819), + [anon_sym_str] = ACTIONS(1819), + [anon_sym_char] = ACTIONS(1819), + [anon_sym_SQUOTE] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1819), + [anon_sym_fn] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_impl] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_mod] = ACTIONS(1819), + [anon_sym_pub] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1819), + [anon_sym_trait] = ACTIONS(1819), + [anon_sym_type] = ACTIONS(1819), + [anon_sym_union] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_yield] = ACTIONS(1819), + [anon_sym_move] = ACTIONS(1819), + [sym_integer_literal] = ACTIONS(1817), + [aux_sym_string_literal_token1] = ACTIONS(1817), + [sym_char_literal] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1819), + [sym_super] = ACTIONS(1819), + [sym_crate] = ACTIONS(1819), + [sym_metavariable] = ACTIONS(1817), + [sym_raw_string_literal] = ACTIONS(1817), + [sym_float_literal] = ACTIONS(1817), [sym_block_comment] = ACTIONS(3), }, - [431] = { - [sym__token_pattern] = STATE(271), - [sym_token_tree_pattern] = STATE(271), - [sym_token_binding_pattern] = STATE(271), - [sym_token_repetition_pattern] = STATE(271), - [sym__literal] = STATE(271), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(271), + [470] = { + [ts_builtin_sym_end] = ACTIONS(1821), [sym_identifier] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_macro_rules_BANG] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_COLON_COLON] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(1821), [anon_sym_u8] = ACTIONS(1823), [anon_sym_i8] = ACTIONS(1823), [anon_sym_u16] = ACTIONS(1823), @@ -53630,9 +64510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1823), [anon_sym_char] = ACTIONS(1823), [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_as] = ACTIONS(1823), [anon_sym_async] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1823), [anon_sym_break] = ACTIONS(1823), [anon_sym_const] = ACTIONS(1823), [anon_sym_continue] = ACTIONS(1823), @@ -53655,24 +64533,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1823), [anon_sym_unsafe] = ACTIONS(1823), [anon_sym_use] = ACTIONS(1823), - [anon_sym_where] = ACTIONS(1823), [anon_sym_while] = ACTIONS(1823), - [sym_mutable_specifier] = ACTIONS(1823), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_move] = ACTIONS(1823), + [sym_integer_literal] = ACTIONS(1821), + [aux_sym_string_literal_token1] = ACTIONS(1821), + [sym_char_literal] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1823), [sym_super] = ACTIONS(1823), [sym_crate] = ACTIONS(1823), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(1821), + [sym_raw_string_literal] = ACTIONS(1821), + [sym_float_literal] = ACTIONS(1821), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [471] = { [ts_builtin_sym_end] = ACTIONS(1825), [sym_identifier] = ACTIONS(1827), [anon_sym_SEMI] = ACTIONS(1825), @@ -53682,6 +64561,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1825), [anon_sym_LBRACK] = ACTIONS(1825), [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [anon_sym_POUND] = ACTIONS(1825), [anon_sym_u8] = ACTIONS(1827), [anon_sym_i8] = ACTIONS(1827), [anon_sym_u16] = ACTIONS(1827), @@ -53724,15 +64611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1827), [anon_sym_use] = ACTIONS(1827), [anon_sym_while] = ACTIONS(1827), - [anon_sym_POUND] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), [anon_sym_extern] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1827), [anon_sym_move] = ACTIONS(1827), [sym_integer_literal] = ACTIONS(1825), [aux_sym_string_literal_token1] = ACTIONS(1825), @@ -53748,7 +64628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1825), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [472] = { [ts_builtin_sym_end] = ACTIONS(1829), [sym_identifier] = ACTIONS(1831), [anon_sym_SEMI] = ACTIONS(1829), @@ -53758,6 +64638,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(1829), [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_COLON_COLON] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(1829), [anon_sym_u8] = ACTIONS(1831), [anon_sym_i8] = ACTIONS(1831), [anon_sym_u16] = ACTIONS(1831), @@ -53800,15 +64688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_use] = ACTIONS(1831), [anon_sym_while] = ACTIONS(1831), - [anon_sym_POUND] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), [anon_sym_extern] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1831), [anon_sym_move] = ACTIONS(1831), [sym_integer_literal] = ACTIONS(1829), [aux_sym_string_literal_token1] = ACTIONS(1829), @@ -53824,7 +64705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1829), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [473] = { [ts_builtin_sym_end] = ACTIONS(1833), [sym_identifier] = ACTIONS(1835), [anon_sym_SEMI] = ACTIONS(1833), @@ -53834,6 +64715,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1833), [anon_sym_LBRACK] = ACTIONS(1833), [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(1833), [anon_sym_u8] = ACTIONS(1835), [anon_sym_i8] = ACTIONS(1835), [anon_sym_u16] = ACTIONS(1835), @@ -53876,15 +64765,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1835), [anon_sym_use] = ACTIONS(1835), [anon_sym_while] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), [anon_sym_extern] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1835), [anon_sym_move] = ACTIONS(1835), [sym_integer_literal] = ACTIONS(1833), [aux_sym_string_literal_token1] = ACTIONS(1833), @@ -53900,7 +64782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1833), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [474] = { [ts_builtin_sym_end] = ACTIONS(1837), [sym_identifier] = ACTIONS(1839), [anon_sym_SEMI] = ACTIONS(1837), @@ -53910,6 +64792,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1837), [anon_sym_LBRACK] = ACTIONS(1837), [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), [anon_sym_u8] = ACTIONS(1839), [anon_sym_i8] = ACTIONS(1839), [anon_sym_u16] = ACTIONS(1839), @@ -53952,15 +64842,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1839), [anon_sym_use] = ACTIONS(1839), [anon_sym_while] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), [anon_sym_extern] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1839), [anon_sym_move] = ACTIONS(1839), [sym_integer_literal] = ACTIONS(1837), [aux_sym_string_literal_token1] = ACTIONS(1837), @@ -53976,7 +64859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1837), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [475] = { [ts_builtin_sym_end] = ACTIONS(1841), [sym_identifier] = ACTIONS(1843), [anon_sym_SEMI] = ACTIONS(1841), @@ -53986,6 +64869,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1841), [anon_sym_LBRACK] = ACTIONS(1841), [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_COLON_COLON] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(1841), [anon_sym_u8] = ACTIONS(1843), [anon_sym_i8] = ACTIONS(1843), [anon_sym_u16] = ACTIONS(1843), @@ -54028,15 +64919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1843), [anon_sym_use] = ACTIONS(1843), [anon_sym_while] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), [anon_sym_extern] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1843), [anon_sym_move] = ACTIONS(1843), [sym_integer_literal] = ACTIONS(1841), [aux_sym_string_literal_token1] = ACTIONS(1841), @@ -54052,7 +64936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1841), [sym_block_comment] = ACTIONS(3), }, - [437] = { + [476] = { [ts_builtin_sym_end] = ACTIONS(1845), [sym_identifier] = ACTIONS(1847), [anon_sym_SEMI] = ACTIONS(1845), @@ -54062,6 +64946,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(1845), [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_DOT_DOT] = ACTIONS(1845), + [anon_sym_COLON_COLON] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(1845), [anon_sym_u8] = ACTIONS(1847), [anon_sym_i8] = ACTIONS(1847), [anon_sym_u16] = ACTIONS(1847), @@ -54104,15 +64996,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1847), [anon_sym_use] = ACTIONS(1847), [anon_sym_while] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), [anon_sym_extern] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1847), [anon_sym_move] = ACTIONS(1847), [sym_integer_literal] = ACTIONS(1845), [aux_sym_string_literal_token1] = ACTIONS(1845), @@ -54128,7 +65013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1845), [sym_block_comment] = ACTIONS(3), }, - [438] = { + [477] = { [ts_builtin_sym_end] = ACTIONS(1849), [sym_identifier] = ACTIONS(1851), [anon_sym_SEMI] = ACTIONS(1849), @@ -54138,6 +65023,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1849), [anon_sym_LBRACK] = ACTIONS(1849), [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1849), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), [anon_sym_u8] = ACTIONS(1851), [anon_sym_i8] = ACTIONS(1851), [anon_sym_u16] = ACTIONS(1851), @@ -54180,15 +65073,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1851), [anon_sym_use] = ACTIONS(1851), [anon_sym_while] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), [anon_sym_extern] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1851), [anon_sym_move] = ACTIONS(1851), [sym_integer_literal] = ACTIONS(1849), [aux_sym_string_literal_token1] = ACTIONS(1849), @@ -54204,7 +65090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1849), [sym_block_comment] = ACTIONS(3), }, - [439] = { + [478] = { [ts_builtin_sym_end] = ACTIONS(1853), [sym_identifier] = ACTIONS(1855), [anon_sym_SEMI] = ACTIONS(1853), @@ -54214,6 +65100,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1853), [anon_sym_LBRACK] = ACTIONS(1853), [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_COLON_COLON] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(1853), [anon_sym_u8] = ACTIONS(1855), [anon_sym_i8] = ACTIONS(1855), [anon_sym_u16] = ACTIONS(1855), @@ -54256,15 +65150,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1855), [anon_sym_use] = ACTIONS(1855), [anon_sym_while] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), [anon_sym_extern] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1855), [anon_sym_move] = ACTIONS(1855), [sym_integer_literal] = ACTIONS(1853), [aux_sym_string_literal_token1] = ACTIONS(1853), @@ -54280,7 +65167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1853), [sym_block_comment] = ACTIONS(3), }, - [440] = { + [479] = { [ts_builtin_sym_end] = ACTIONS(1857), [sym_identifier] = ACTIONS(1859), [anon_sym_SEMI] = ACTIONS(1857), @@ -54290,6 +65177,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1857), [anon_sym_LBRACK] = ACTIONS(1857), [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_COLON_COLON] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(1857), [anon_sym_u8] = ACTIONS(1859), [anon_sym_i8] = ACTIONS(1859), [anon_sym_u16] = ACTIONS(1859), @@ -54332,15 +65227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1859), [anon_sym_use] = ACTIONS(1859), [anon_sym_while] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), [anon_sym_extern] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_COLON_COLON] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_yield] = ACTIONS(1859), [anon_sym_move] = ACTIONS(1859), [sym_integer_literal] = ACTIONS(1857), [aux_sym_string_literal_token1] = ACTIONS(1857), @@ -54356,7 +65244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1857), [sym_block_comment] = ACTIONS(3), }, - [441] = { + [480] = { [ts_builtin_sym_end] = ACTIONS(1861), [sym_identifier] = ACTIONS(1863), [anon_sym_SEMI] = ACTIONS(1861), @@ -54366,6 +65254,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(1861), [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(1861), [anon_sym_u8] = ACTIONS(1863), [anon_sym_i8] = ACTIONS(1863), [anon_sym_u16] = ACTIONS(1863), @@ -54408,15 +65304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1863), [anon_sym_use] = ACTIONS(1863), [anon_sym_while] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), [anon_sym_extern] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1863), [anon_sym_move] = ACTIONS(1863), [sym_integer_literal] = ACTIONS(1861), [aux_sym_string_literal_token1] = ACTIONS(1861), @@ -54432,7 +65321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1861), [sym_block_comment] = ACTIONS(3), }, - [442] = { + [481] = { [ts_builtin_sym_end] = ACTIONS(1865), [sym_identifier] = ACTIONS(1867), [anon_sym_SEMI] = ACTIONS(1865), @@ -54442,6 +65331,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1865), [anon_sym_LBRACK] = ACTIONS(1865), [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_DOT_DOT] = ACTIONS(1865), + [anon_sym_COLON_COLON] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(1865), [anon_sym_u8] = ACTIONS(1867), [anon_sym_i8] = ACTIONS(1867), [anon_sym_u16] = ACTIONS(1867), @@ -54484,15 +65381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1867), [anon_sym_use] = ACTIONS(1867), [anon_sym_while] = ACTIONS(1867), - [anon_sym_POUND] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), [anon_sym_extern] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_yield] = ACTIONS(1867), [anon_sym_move] = ACTIONS(1867), [sym_integer_literal] = ACTIONS(1865), [aux_sym_string_literal_token1] = ACTIONS(1865), @@ -54508,7 +65398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1865), [sym_block_comment] = ACTIONS(3), }, - [443] = { + [482] = { [ts_builtin_sym_end] = ACTIONS(1869), [sym_identifier] = ACTIONS(1871), [anon_sym_SEMI] = ACTIONS(1869), @@ -54518,6 +65408,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1869), [anon_sym_LBRACK] = ACTIONS(1869), [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1869), + [anon_sym_COLON_COLON] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(1869), [anon_sym_u8] = ACTIONS(1871), [anon_sym_i8] = ACTIONS(1871), [anon_sym_u16] = ACTIONS(1871), @@ -54560,15 +65458,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1871), [anon_sym_use] = ACTIONS(1871), [anon_sym_while] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), [anon_sym_extern] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_yield] = ACTIONS(1871), [anon_sym_move] = ACTIONS(1871), [sym_integer_literal] = ACTIONS(1869), [aux_sym_string_literal_token1] = ACTIONS(1869), @@ -54584,7 +65475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1869), [sym_block_comment] = ACTIONS(3), }, - [444] = { + [483] = { [ts_builtin_sym_end] = ACTIONS(1873), [sym_identifier] = ACTIONS(1875), [anon_sym_SEMI] = ACTIONS(1873), @@ -54594,6 +65485,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1873), [anon_sym_LBRACK] = ACTIONS(1873), [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(1873), [anon_sym_u8] = ACTIONS(1875), [anon_sym_i8] = ACTIONS(1875), [anon_sym_u16] = ACTIONS(1875), @@ -54636,15 +65535,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1875), [anon_sym_use] = ACTIONS(1875), [anon_sym_while] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), [anon_sym_extern] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1875), [anon_sym_move] = ACTIONS(1875), [sym_integer_literal] = ACTIONS(1873), [aux_sym_string_literal_token1] = ACTIONS(1873), @@ -54660,7 +65552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1873), [sym_block_comment] = ACTIONS(3), }, - [445] = { + [484] = { [ts_builtin_sym_end] = ACTIONS(1877), [sym_identifier] = ACTIONS(1879), [anon_sym_SEMI] = ACTIONS(1877), @@ -54670,6 +65562,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1877), [anon_sym_LBRACK] = ACTIONS(1877), [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), [anon_sym_u8] = ACTIONS(1879), [anon_sym_i8] = ACTIONS(1879), [anon_sym_u16] = ACTIONS(1879), @@ -54712,15 +65612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1879), [anon_sym_use] = ACTIONS(1879), [anon_sym_while] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), [anon_sym_extern] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1879), [anon_sym_move] = ACTIONS(1879), [sym_integer_literal] = ACTIONS(1877), [aux_sym_string_literal_token1] = ACTIONS(1877), @@ -54736,7 +65629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1877), [sym_block_comment] = ACTIONS(3), }, - [446] = { + [485] = { [ts_builtin_sym_end] = ACTIONS(1881), [sym_identifier] = ACTIONS(1883), [anon_sym_SEMI] = ACTIONS(1881), @@ -54746,6 +65639,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1881), [anon_sym_LBRACK] = ACTIONS(1881), [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1881), + [anon_sym_COLON_COLON] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), [anon_sym_u8] = ACTIONS(1883), [anon_sym_i8] = ACTIONS(1883), [anon_sym_u16] = ACTIONS(1883), @@ -54788,15 +65689,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1883), [anon_sym_use] = ACTIONS(1883), [anon_sym_while] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), [anon_sym_extern] = ACTIONS(1883), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1883), [anon_sym_move] = ACTIONS(1883), [sym_integer_literal] = ACTIONS(1881), [aux_sym_string_literal_token1] = ACTIONS(1881), @@ -54812,7 +65706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1881), [sym_block_comment] = ACTIONS(3), }, - [447] = { + [486] = { [ts_builtin_sym_end] = ACTIONS(1885), [sym_identifier] = ACTIONS(1887), [anon_sym_SEMI] = ACTIONS(1885), @@ -54822,6 +65716,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1885), [anon_sym_LBRACK] = ACTIONS(1885), [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1885), + [anon_sym_COLON_COLON] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(1885), [anon_sym_u8] = ACTIONS(1887), [anon_sym_i8] = ACTIONS(1887), [anon_sym_u16] = ACTIONS(1887), @@ -54864,15 +65766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1887), [anon_sym_use] = ACTIONS(1887), [anon_sym_while] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), [anon_sym_extern] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_yield] = ACTIONS(1887), [anon_sym_move] = ACTIONS(1887), [sym_integer_literal] = ACTIONS(1885), [aux_sym_string_literal_token1] = ACTIONS(1885), @@ -54888,7 +65783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1885), [sym_block_comment] = ACTIONS(3), }, - [448] = { + [487] = { [ts_builtin_sym_end] = ACTIONS(1889), [sym_identifier] = ACTIONS(1891), [anon_sym_SEMI] = ACTIONS(1889), @@ -54898,6 +65793,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1889), [anon_sym_LBRACK] = ACTIONS(1889), [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_COLON_COLON] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), [anon_sym_u8] = ACTIONS(1891), [anon_sym_i8] = ACTIONS(1891), [anon_sym_u16] = ACTIONS(1891), @@ -54940,15 +65843,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1891), [anon_sym_use] = ACTIONS(1891), [anon_sym_while] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), [anon_sym_extern] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_yield] = ACTIONS(1891), [anon_sym_move] = ACTIONS(1891), [sym_integer_literal] = ACTIONS(1889), [aux_sym_string_literal_token1] = ACTIONS(1889), @@ -54964,7 +65860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1889), [sym_block_comment] = ACTIONS(3), }, - [449] = { + [488] = { [ts_builtin_sym_end] = ACTIONS(1893), [sym_identifier] = ACTIONS(1895), [anon_sym_SEMI] = ACTIONS(1893), @@ -54974,6 +65870,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1893), [anon_sym_LBRACK] = ACTIONS(1893), [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(1893), [anon_sym_u8] = ACTIONS(1895), [anon_sym_i8] = ACTIONS(1895), [anon_sym_u16] = ACTIONS(1895), @@ -55016,15 +65920,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1895), [anon_sym_use] = ACTIONS(1895), [anon_sym_while] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), [anon_sym_extern] = ACTIONS(1895), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_COLON_COLON] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1895), [anon_sym_move] = ACTIONS(1895), [sym_integer_literal] = ACTIONS(1893), [aux_sym_string_literal_token1] = ACTIONS(1893), @@ -55040,7 +65937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1893), [sym_block_comment] = ACTIONS(3), }, - [450] = { + [489] = { [ts_builtin_sym_end] = ACTIONS(1897), [sym_identifier] = ACTIONS(1899), [anon_sym_SEMI] = ACTIONS(1897), @@ -55050,6 +65947,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1897), [anon_sym_LBRACK] = ACTIONS(1897), [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(1897), [anon_sym_u8] = ACTIONS(1899), [anon_sym_i8] = ACTIONS(1899), [anon_sym_u16] = ACTIONS(1899), @@ -55092,15 +65997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1899), [anon_sym_use] = ACTIONS(1899), [anon_sym_while] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), [anon_sym_extern] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1897), - [anon_sym_COLON_COLON] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1899), [anon_sym_move] = ACTIONS(1899), [sym_integer_literal] = ACTIONS(1897), [aux_sym_string_literal_token1] = ACTIONS(1897), @@ -55116,7 +66014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1897), [sym_block_comment] = ACTIONS(3), }, - [451] = { + [490] = { [ts_builtin_sym_end] = ACTIONS(1901), [sym_identifier] = ACTIONS(1903), [anon_sym_SEMI] = ACTIONS(1901), @@ -55126,6 +66024,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1901), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(1901), [anon_sym_u8] = ACTIONS(1903), [anon_sym_i8] = ACTIONS(1903), [anon_sym_u16] = ACTIONS(1903), @@ -55168,15 +66074,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1903), [anon_sym_use] = ACTIONS(1903), [anon_sym_while] = ACTIONS(1903), - [anon_sym_POUND] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), [anon_sym_extern] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_yield] = ACTIONS(1903), [anon_sym_move] = ACTIONS(1903), [sym_integer_literal] = ACTIONS(1901), [aux_sym_string_literal_token1] = ACTIONS(1901), @@ -55192,7 +66091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1901), [sym_block_comment] = ACTIONS(3), }, - [452] = { + [491] = { [ts_builtin_sym_end] = ACTIONS(1905), [sym_identifier] = ACTIONS(1907), [anon_sym_SEMI] = ACTIONS(1905), @@ -55202,6 +66101,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1905), [anon_sym_LBRACK] = ACTIONS(1905), [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1905), + [anon_sym_DOT_DOT] = ACTIONS(1905), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(1905), [anon_sym_u8] = ACTIONS(1907), [anon_sym_i8] = ACTIONS(1907), [anon_sym_u16] = ACTIONS(1907), @@ -55244,15 +66151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1907), [anon_sym_use] = ACTIONS(1907), [anon_sym_while] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), [anon_sym_extern] = ACTIONS(1907), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_COLON_COLON] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_yield] = ACTIONS(1907), [anon_sym_move] = ACTIONS(1907), [sym_integer_literal] = ACTIONS(1905), [aux_sym_string_literal_token1] = ACTIONS(1905), @@ -55268,7 +66168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1905), [sym_block_comment] = ACTIONS(3), }, - [453] = { + [492] = { [ts_builtin_sym_end] = ACTIONS(1909), [sym_identifier] = ACTIONS(1911), [anon_sym_SEMI] = ACTIONS(1909), @@ -55278,6 +66178,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1909), [anon_sym_LBRACK] = ACTIONS(1909), [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(1909), [anon_sym_u8] = ACTIONS(1911), [anon_sym_i8] = ACTIONS(1911), [anon_sym_u16] = ACTIONS(1911), @@ -55320,15 +66228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1911), [anon_sym_use] = ACTIONS(1911), [anon_sym_while] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1909), [anon_sym_extern] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_COLON_COLON] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_yield] = ACTIONS(1911), [anon_sym_move] = ACTIONS(1911), [sym_integer_literal] = ACTIONS(1909), [aux_sym_string_literal_token1] = ACTIONS(1909), @@ -55344,7 +66245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1909), [sym_block_comment] = ACTIONS(3), }, - [454] = { + [493] = { [ts_builtin_sym_end] = ACTIONS(1913), [sym_identifier] = ACTIONS(1915), [anon_sym_SEMI] = ACTIONS(1913), @@ -55354,6 +66255,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1913), [anon_sym_LBRACK] = ACTIONS(1913), [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_COLON_COLON] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1913), [anon_sym_u8] = ACTIONS(1915), [anon_sym_i8] = ACTIONS(1915), [anon_sym_u16] = ACTIONS(1915), @@ -55396,15 +66305,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1915), [anon_sym_use] = ACTIONS(1915), [anon_sym_while] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), [anon_sym_extern] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_COLON_COLON] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_yield] = ACTIONS(1915), [anon_sym_move] = ACTIONS(1915), [sym_integer_literal] = ACTIONS(1913), [aux_sym_string_literal_token1] = ACTIONS(1913), @@ -55420,7 +66322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1913), [sym_block_comment] = ACTIONS(3), }, - [455] = { + [494] = { [ts_builtin_sym_end] = ACTIONS(1917), [sym_identifier] = ACTIONS(1919), [anon_sym_SEMI] = ACTIONS(1917), @@ -55430,6 +66332,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1917), [anon_sym_LBRACK] = ACTIONS(1917), [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_AMP] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(1917), [anon_sym_u8] = ACTIONS(1919), [anon_sym_i8] = ACTIONS(1919), [anon_sym_u16] = ACTIONS(1919), @@ -55472,15 +66382,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1919), [anon_sym_use] = ACTIONS(1919), [anon_sym_while] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), [anon_sym_extern] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_COLON_COLON] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1919), [anon_sym_move] = ACTIONS(1919), [sym_integer_literal] = ACTIONS(1917), [aux_sym_string_literal_token1] = ACTIONS(1917), @@ -55496,7 +66399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1917), [sym_block_comment] = ACTIONS(3), }, - [456] = { + [495] = { [ts_builtin_sym_end] = ACTIONS(1921), [sym_identifier] = ACTIONS(1923), [anon_sym_SEMI] = ACTIONS(1921), @@ -55506,6 +66409,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1921), [anon_sym_LBRACK] = ACTIONS(1921), [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1921), + [anon_sym_COLON_COLON] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(1921), [anon_sym_u8] = ACTIONS(1923), [anon_sym_i8] = ACTIONS(1923), [anon_sym_u16] = ACTIONS(1923), @@ -55548,15 +66459,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1923), [anon_sym_use] = ACTIONS(1923), [anon_sym_while] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), [anon_sym_extern] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_yield] = ACTIONS(1923), [anon_sym_move] = ACTIONS(1923), [sym_integer_literal] = ACTIONS(1921), [aux_sym_string_literal_token1] = ACTIONS(1921), @@ -55572,7 +66476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1921), [sym_block_comment] = ACTIONS(3), }, - [457] = { + [496] = { [ts_builtin_sym_end] = ACTIONS(1925), [sym_identifier] = ACTIONS(1927), [anon_sym_SEMI] = ACTIONS(1925), @@ -55582,6 +66486,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1925), [anon_sym_LBRACK] = ACTIONS(1925), [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_COLON_COLON] = ACTIONS(1925), + [anon_sym_POUND] = ACTIONS(1925), [anon_sym_u8] = ACTIONS(1927), [anon_sym_i8] = ACTIONS(1927), [anon_sym_u16] = ACTIONS(1927), @@ -55624,15 +66536,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1927), [anon_sym_use] = ACTIONS(1927), [anon_sym_while] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1925), [anon_sym_extern] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1927), [anon_sym_move] = ACTIONS(1927), [sym_integer_literal] = ACTIONS(1925), [aux_sym_string_literal_token1] = ACTIONS(1925), @@ -55648,7 +66553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1925), [sym_block_comment] = ACTIONS(3), }, - [458] = { + [497] = { [ts_builtin_sym_end] = ACTIONS(1929), [sym_identifier] = ACTIONS(1931), [anon_sym_SEMI] = ACTIONS(1929), @@ -55658,6 +66563,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(1929), [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_BANG] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(1929), [anon_sym_u8] = ACTIONS(1931), [anon_sym_i8] = ACTIONS(1931), [anon_sym_u16] = ACTIONS(1931), @@ -55700,15 +66613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1931), [anon_sym_use] = ACTIONS(1931), [anon_sym_while] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(1929), - [anon_sym_BANG] = ACTIONS(1929), [anon_sym_extern] = ACTIONS(1931), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_COLON_COLON] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_yield] = ACTIONS(1931), [anon_sym_move] = ACTIONS(1931), [sym_integer_literal] = ACTIONS(1929), [aux_sym_string_literal_token1] = ACTIONS(1929), @@ -55724,7 +66630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1929), [sym_block_comment] = ACTIONS(3), }, - [459] = { + [498] = { [ts_builtin_sym_end] = ACTIONS(1933), [sym_identifier] = ACTIONS(1935), [anon_sym_SEMI] = ACTIONS(1933), @@ -55734,6 +66640,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1933), [anon_sym_LBRACK] = ACTIONS(1933), [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_COLON_COLON] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1933), [anon_sym_u8] = ACTIONS(1935), [anon_sym_i8] = ACTIONS(1935), [anon_sym_u16] = ACTIONS(1935), @@ -55776,15 +66690,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1935), [anon_sym_use] = ACTIONS(1935), [anon_sym_while] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(1933), - [anon_sym_BANG] = ACTIONS(1933), [anon_sym_extern] = ACTIONS(1935), - [anon_sym_LT] = ACTIONS(1933), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1933), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_yield] = ACTIONS(1935), [anon_sym_move] = ACTIONS(1935), [sym_integer_literal] = ACTIONS(1933), [aux_sym_string_literal_token1] = ACTIONS(1933), @@ -55800,7 +66707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1933), [sym_block_comment] = ACTIONS(3), }, - [460] = { + [499] = { [ts_builtin_sym_end] = ACTIONS(1937), [sym_identifier] = ACTIONS(1939), [anon_sym_SEMI] = ACTIONS(1937), @@ -55810,6 +66717,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1937), [anon_sym_LBRACK] = ACTIONS(1937), [anon_sym_STAR] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1937), + [anon_sym_AMP] = ACTIONS(1937), + [anon_sym_PIPE] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1937), + [anon_sym_DOT_DOT] = ACTIONS(1937), + [anon_sym_COLON_COLON] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(1937), [anon_sym_u8] = ACTIONS(1939), [anon_sym_i8] = ACTIONS(1939), [anon_sym_u16] = ACTIONS(1939), @@ -55852,15 +66767,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(1939), [anon_sym_use] = ACTIONS(1939), [anon_sym_while] = ACTIONS(1939), - [anon_sym_POUND] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1937), [anon_sym_extern] = ACTIONS(1939), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_COLON_COLON] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), + [anon_sym_yield] = ACTIONS(1939), [anon_sym_move] = ACTIONS(1939), [sym_integer_literal] = ACTIONS(1937), [aux_sym_string_literal_token1] = ACTIONS(1937), @@ -55876,475 +66784,1487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1937), [sym_block_comment] = ACTIONS(3), }, - [461] = { - [sym__token_pattern] = STATE(243), - [sym_token_tree_pattern] = STATE(243), - [sym_token_binding_pattern] = STATE(243), - [sym_token_repetition_pattern] = STATE(243), - [sym__literal] = STATE(243), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_non_special_punctuation] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_where] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [sym_mutable_specifier] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [500] = { + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_macro_rules_BANG] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_PIPE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1941), + [anon_sym_COLON_COLON] = ACTIONS(1941), + [anon_sym_POUND] = ACTIONS(1941), + [anon_sym_u8] = ACTIONS(1943), + [anon_sym_i8] = ACTIONS(1943), + [anon_sym_u16] = ACTIONS(1943), + [anon_sym_i16] = ACTIONS(1943), + [anon_sym_u32] = ACTIONS(1943), + [anon_sym_i32] = ACTIONS(1943), + [anon_sym_u64] = ACTIONS(1943), + [anon_sym_i64] = ACTIONS(1943), + [anon_sym_u128] = ACTIONS(1943), + [anon_sym_i128] = ACTIONS(1943), + [anon_sym_isize] = ACTIONS(1943), + [anon_sym_usize] = ACTIONS(1943), + [anon_sym_f32] = ACTIONS(1943), + [anon_sym_f64] = ACTIONS(1943), + [anon_sym_bool] = ACTIONS(1943), + [anon_sym_str] = ACTIONS(1943), + [anon_sym_char] = ACTIONS(1943), + [anon_sym_SQUOTE] = ACTIONS(1943), + [anon_sym_async] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_default] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_fn] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_impl] = ACTIONS(1943), + [anon_sym_let] = ACTIONS(1943), + [anon_sym_loop] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_mod] = ACTIONS(1943), + [anon_sym_pub] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_trait] = ACTIONS(1943), + [anon_sym_type] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [anon_sym_unsafe] = ACTIONS(1943), + [anon_sym_use] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_yield] = ACTIONS(1943), + [anon_sym_move] = ACTIONS(1943), + [sym_integer_literal] = ACTIONS(1941), + [aux_sym_string_literal_token1] = ACTIONS(1941), + [sym_char_literal] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1943), + [anon_sym_false] = ACTIONS(1943), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1943), + [sym_super] = ACTIONS(1943), + [sym_crate] = ACTIONS(1943), + [sym_metavariable] = ACTIONS(1941), + [sym_raw_string_literal] = ACTIONS(1941), + [sym_float_literal] = ACTIONS(1941), [sym_block_comment] = ACTIONS(3), }, - [462] = { - [ts_builtin_sym_end] = ACTIONS(1943), - [sym_identifier] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_macro_rules_BANG] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_u8] = ACTIONS(1945), - [anon_sym_i8] = ACTIONS(1945), - [anon_sym_u16] = ACTIONS(1945), - [anon_sym_i16] = ACTIONS(1945), - [anon_sym_u32] = ACTIONS(1945), - [anon_sym_i32] = ACTIONS(1945), - [anon_sym_u64] = ACTIONS(1945), - [anon_sym_i64] = ACTIONS(1945), - [anon_sym_u128] = ACTIONS(1945), - [anon_sym_i128] = ACTIONS(1945), - [anon_sym_isize] = ACTIONS(1945), - [anon_sym_usize] = ACTIONS(1945), - [anon_sym_f32] = ACTIONS(1945), - [anon_sym_f64] = ACTIONS(1945), - [anon_sym_bool] = ACTIONS(1945), - [anon_sym_str] = ACTIONS(1945), - [anon_sym_char] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_async] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_default] = ACTIONS(1945), - [anon_sym_enum] = ACTIONS(1945), - [anon_sym_fn] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_impl] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_mod] = ACTIONS(1945), - [anon_sym_pub] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1945), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_trait] = ACTIONS(1945), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1945), - [anon_sym_unsafe] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_COLON_COLON] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_move] = ACTIONS(1945), - [sym_integer_literal] = ACTIONS(1943), - [aux_sym_string_literal_token1] = ACTIONS(1943), - [sym_char_literal] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1945), - [sym_super] = ACTIONS(1945), - [sym_crate] = ACTIONS(1945), - [sym_metavariable] = ACTIONS(1943), - [sym_raw_string_literal] = ACTIONS(1943), - [sym_float_literal] = ACTIONS(1943), + [501] = { + [ts_builtin_sym_end] = ACTIONS(1945), + [sym_identifier] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_macro_rules_BANG] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_DOT_DOT] = ACTIONS(1945), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_u8] = ACTIONS(1947), + [anon_sym_i8] = ACTIONS(1947), + [anon_sym_u16] = ACTIONS(1947), + [anon_sym_i16] = ACTIONS(1947), + [anon_sym_u32] = ACTIONS(1947), + [anon_sym_i32] = ACTIONS(1947), + [anon_sym_u64] = ACTIONS(1947), + [anon_sym_i64] = ACTIONS(1947), + [anon_sym_u128] = ACTIONS(1947), + [anon_sym_i128] = ACTIONS(1947), + [anon_sym_isize] = ACTIONS(1947), + [anon_sym_usize] = ACTIONS(1947), + [anon_sym_f32] = ACTIONS(1947), + [anon_sym_f64] = ACTIONS(1947), + [anon_sym_bool] = ACTIONS(1947), + [anon_sym_str] = ACTIONS(1947), + [anon_sym_char] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_fn] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_impl] = ACTIONS(1947), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_loop] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_mod] = ACTIONS(1947), + [anon_sym_pub] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_struct] = ACTIONS(1947), + [anon_sym_trait] = ACTIONS(1947), + [anon_sym_type] = ACTIONS(1947), + [anon_sym_union] = ACTIONS(1947), + [anon_sym_unsafe] = ACTIONS(1947), + [anon_sym_use] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_yield] = ACTIONS(1947), + [anon_sym_move] = ACTIONS(1947), + [sym_integer_literal] = ACTIONS(1945), + [aux_sym_string_literal_token1] = ACTIONS(1945), + [sym_char_literal] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1947), + [sym_super] = ACTIONS(1947), + [sym_crate] = ACTIONS(1947), + [sym_metavariable] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), [sym_block_comment] = ACTIONS(3), }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_macro_rules_BANG] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_u8] = ACTIONS(1949), - [anon_sym_i8] = ACTIONS(1949), - [anon_sym_u16] = ACTIONS(1949), - [anon_sym_i16] = ACTIONS(1949), - [anon_sym_u32] = ACTIONS(1949), - [anon_sym_i32] = ACTIONS(1949), - [anon_sym_u64] = ACTIONS(1949), - [anon_sym_i64] = ACTIONS(1949), - [anon_sym_u128] = ACTIONS(1949), - [anon_sym_i128] = ACTIONS(1949), - [anon_sym_isize] = ACTIONS(1949), - [anon_sym_usize] = ACTIONS(1949), - [anon_sym_f32] = ACTIONS(1949), - [anon_sym_f64] = ACTIONS(1949), - [anon_sym_bool] = ACTIONS(1949), - [anon_sym_str] = ACTIONS(1949), - [anon_sym_char] = ACTIONS(1949), - [anon_sym_SQUOTE] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_default] = ACTIONS(1949), - [anon_sym_enum] = ACTIONS(1949), - [anon_sym_fn] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_impl] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_mod] = ACTIONS(1949), - [anon_sym_pub] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_static] = ACTIONS(1949), - [anon_sym_struct] = ACTIONS(1949), - [anon_sym_trait] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_union] = ACTIONS(1949), - [anon_sym_unsafe] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_COLON_COLON] = ACTIONS(1947), - [anon_sym_AMP] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_move] = ACTIONS(1949), - [sym_integer_literal] = ACTIONS(1947), - [aux_sym_string_literal_token1] = ACTIONS(1947), - [sym_char_literal] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1949), - [sym_super] = ACTIONS(1949), - [sym_crate] = ACTIONS(1949), - [sym_metavariable] = ACTIONS(1947), - [sym_raw_string_literal] = ACTIONS(1947), - [sym_float_literal] = ACTIONS(1947), + [502] = { + [ts_builtin_sym_end] = ACTIONS(1949), + [sym_identifier] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym_macro_rules_BANG] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1949), + [anon_sym_PIPE] = ACTIONS(1949), + [anon_sym_LT] = ACTIONS(1949), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_COLON_COLON] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(1949), + [anon_sym_u8] = ACTIONS(1951), + [anon_sym_i8] = ACTIONS(1951), + [anon_sym_u16] = ACTIONS(1951), + [anon_sym_i16] = ACTIONS(1951), + [anon_sym_u32] = ACTIONS(1951), + [anon_sym_i32] = ACTIONS(1951), + [anon_sym_u64] = ACTIONS(1951), + [anon_sym_i64] = ACTIONS(1951), + [anon_sym_u128] = ACTIONS(1951), + [anon_sym_i128] = ACTIONS(1951), + [anon_sym_isize] = ACTIONS(1951), + [anon_sym_usize] = ACTIONS(1951), + [anon_sym_f32] = ACTIONS(1951), + [anon_sym_f64] = ACTIONS(1951), + [anon_sym_bool] = ACTIONS(1951), + [anon_sym_str] = ACTIONS(1951), + [anon_sym_char] = ACTIONS(1951), + [anon_sym_SQUOTE] = ACTIONS(1951), + [anon_sym_async] = ACTIONS(1951), + [anon_sym_break] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_continue] = ACTIONS(1951), + [anon_sym_default] = ACTIONS(1951), + [anon_sym_enum] = ACTIONS(1951), + [anon_sym_fn] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1951), + [anon_sym_impl] = ACTIONS(1951), + [anon_sym_let] = ACTIONS(1951), + [anon_sym_loop] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1951), + [anon_sym_mod] = ACTIONS(1951), + [anon_sym_pub] = ACTIONS(1951), + [anon_sym_return] = ACTIONS(1951), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_struct] = ACTIONS(1951), + [anon_sym_trait] = ACTIONS(1951), + [anon_sym_type] = ACTIONS(1951), + [anon_sym_union] = ACTIONS(1951), + [anon_sym_unsafe] = ACTIONS(1951), + [anon_sym_use] = ACTIONS(1951), + [anon_sym_while] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym_yield] = ACTIONS(1951), + [anon_sym_move] = ACTIONS(1951), + [sym_integer_literal] = ACTIONS(1949), + [aux_sym_string_literal_token1] = ACTIONS(1949), + [sym_char_literal] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1951), + [sym_super] = ACTIONS(1951), + [sym_crate] = ACTIONS(1951), + [sym_metavariable] = ACTIONS(1949), + [sym_raw_string_literal] = ACTIONS(1949), + [sym_float_literal] = ACTIONS(1949), [sym_block_comment] = ACTIONS(3), }, - [464] = { - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_macro_rules_BANG] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_u8] = ACTIONS(1953), - [anon_sym_i8] = ACTIONS(1953), - [anon_sym_u16] = ACTIONS(1953), - [anon_sym_i16] = ACTIONS(1953), - [anon_sym_u32] = ACTIONS(1953), - [anon_sym_i32] = ACTIONS(1953), - [anon_sym_u64] = ACTIONS(1953), - [anon_sym_i64] = ACTIONS(1953), - [anon_sym_u128] = ACTIONS(1953), - [anon_sym_i128] = ACTIONS(1953), - [anon_sym_isize] = ACTIONS(1953), - [anon_sym_usize] = ACTIONS(1953), - [anon_sym_f32] = ACTIONS(1953), - [anon_sym_f64] = ACTIONS(1953), - [anon_sym_bool] = ACTIONS(1953), - [anon_sym_str] = ACTIONS(1953), - [anon_sym_char] = ACTIONS(1953), - [anon_sym_SQUOTE] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_default] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1953), - [anon_sym_fn] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_impl] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_mod] = ACTIONS(1953), - [anon_sym_pub] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_static] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1953), - [anon_sym_trait] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_union] = ACTIONS(1953), - [anon_sym_unsafe] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_COLON_COLON] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_move] = ACTIONS(1953), - [sym_integer_literal] = ACTIONS(1951), - [aux_sym_string_literal_token1] = ACTIONS(1951), - [sym_char_literal] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1953), - [sym_super] = ACTIONS(1953), - [sym_crate] = ACTIONS(1953), - [sym_metavariable] = ACTIONS(1951), - [sym_raw_string_literal] = ACTIONS(1951), - [sym_float_literal] = ACTIONS(1951), + [503] = { + [ts_builtin_sym_end] = ACTIONS(1953), + [sym_identifier] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_macro_rules_BANG] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_BANG] = ACTIONS(1953), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1953), + [anon_sym_DOT_DOT] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(1953), + [anon_sym_u8] = ACTIONS(1955), + [anon_sym_i8] = ACTIONS(1955), + [anon_sym_u16] = ACTIONS(1955), + [anon_sym_i16] = ACTIONS(1955), + [anon_sym_u32] = ACTIONS(1955), + [anon_sym_i32] = ACTIONS(1955), + [anon_sym_u64] = ACTIONS(1955), + [anon_sym_i64] = ACTIONS(1955), + [anon_sym_u128] = ACTIONS(1955), + [anon_sym_i128] = ACTIONS(1955), + [anon_sym_isize] = ACTIONS(1955), + [anon_sym_usize] = ACTIONS(1955), + [anon_sym_f32] = ACTIONS(1955), + [anon_sym_f64] = ACTIONS(1955), + [anon_sym_bool] = ACTIONS(1955), + [anon_sym_str] = ACTIONS(1955), + [anon_sym_char] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [anon_sym_async] = ACTIONS(1955), + [anon_sym_break] = ACTIONS(1955), + [anon_sym_const] = ACTIONS(1955), + [anon_sym_continue] = ACTIONS(1955), + [anon_sym_default] = ACTIONS(1955), + [anon_sym_enum] = ACTIONS(1955), + [anon_sym_fn] = ACTIONS(1955), + [anon_sym_for] = ACTIONS(1955), + [anon_sym_if] = ACTIONS(1955), + [anon_sym_impl] = ACTIONS(1955), + [anon_sym_let] = ACTIONS(1955), + [anon_sym_loop] = ACTIONS(1955), + [anon_sym_match] = ACTIONS(1955), + [anon_sym_mod] = ACTIONS(1955), + [anon_sym_pub] = ACTIONS(1955), + [anon_sym_return] = ACTIONS(1955), + [anon_sym_static] = ACTIONS(1955), + [anon_sym_struct] = ACTIONS(1955), + [anon_sym_trait] = ACTIONS(1955), + [anon_sym_type] = ACTIONS(1955), + [anon_sym_union] = ACTIONS(1955), + [anon_sym_unsafe] = ACTIONS(1955), + [anon_sym_use] = ACTIONS(1955), + [anon_sym_while] = ACTIONS(1955), + [anon_sym_extern] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1955), + [anon_sym_move] = ACTIONS(1955), + [sym_integer_literal] = ACTIONS(1953), + [aux_sym_string_literal_token1] = ACTIONS(1953), + [sym_char_literal] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1955), + [sym_super] = ACTIONS(1955), + [sym_crate] = ACTIONS(1955), + [sym_metavariable] = ACTIONS(1953), + [sym_raw_string_literal] = ACTIONS(1953), + [sym_float_literal] = ACTIONS(1953), [sym_block_comment] = ACTIONS(3), }, - [465] = { - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_macro_rules_BANG] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_u8] = ACTIONS(1957), - [anon_sym_i8] = ACTIONS(1957), - [anon_sym_u16] = ACTIONS(1957), - [anon_sym_i16] = ACTIONS(1957), - [anon_sym_u32] = ACTIONS(1957), - [anon_sym_i32] = ACTIONS(1957), - [anon_sym_u64] = ACTIONS(1957), - [anon_sym_i64] = ACTIONS(1957), - [anon_sym_u128] = ACTIONS(1957), - [anon_sym_i128] = ACTIONS(1957), - [anon_sym_isize] = ACTIONS(1957), - [anon_sym_usize] = ACTIONS(1957), - [anon_sym_f32] = ACTIONS(1957), - [anon_sym_f64] = ACTIONS(1957), - [anon_sym_bool] = ACTIONS(1957), - [anon_sym_str] = ACTIONS(1957), - [anon_sym_char] = ACTIONS(1957), - [anon_sym_SQUOTE] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1957), - [anon_sym_enum] = ACTIONS(1957), - [anon_sym_fn] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_impl] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_mod] = ACTIONS(1957), - [anon_sym_pub] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_static] = ACTIONS(1957), - [anon_sym_struct] = ACTIONS(1957), - [anon_sym_trait] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_union] = ACTIONS(1957), - [anon_sym_unsafe] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(1955), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1955), - [anon_sym_COLON_COLON] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_move] = ACTIONS(1957), - [sym_integer_literal] = ACTIONS(1955), - [aux_sym_string_literal_token1] = ACTIONS(1955), - [sym_char_literal] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1957), - [sym_super] = ACTIONS(1957), - [sym_crate] = ACTIONS(1957), - [sym_metavariable] = ACTIONS(1955), - [sym_raw_string_literal] = ACTIONS(1955), - [sym_float_literal] = ACTIONS(1955), + [504] = { + [ts_builtin_sym_end] = ACTIONS(1957), + [sym_identifier] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_macro_rules_BANG] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_COLON_COLON] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1957), + [anon_sym_u8] = ACTIONS(1959), + [anon_sym_i8] = ACTIONS(1959), + [anon_sym_u16] = ACTIONS(1959), + [anon_sym_i16] = ACTIONS(1959), + [anon_sym_u32] = ACTIONS(1959), + [anon_sym_i32] = ACTIONS(1959), + [anon_sym_u64] = ACTIONS(1959), + [anon_sym_i64] = ACTIONS(1959), + [anon_sym_u128] = ACTIONS(1959), + [anon_sym_i128] = ACTIONS(1959), + [anon_sym_isize] = ACTIONS(1959), + [anon_sym_usize] = ACTIONS(1959), + [anon_sym_f32] = ACTIONS(1959), + [anon_sym_f64] = ACTIONS(1959), + [anon_sym_bool] = ACTIONS(1959), + [anon_sym_str] = ACTIONS(1959), + [anon_sym_char] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [anon_sym_async] = ACTIONS(1959), + [anon_sym_break] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(1959), + [anon_sym_continue] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1959), + [anon_sym_enum] = ACTIONS(1959), + [anon_sym_fn] = ACTIONS(1959), + [anon_sym_for] = ACTIONS(1959), + [anon_sym_if] = ACTIONS(1959), + [anon_sym_impl] = ACTIONS(1959), + [anon_sym_let] = ACTIONS(1959), + [anon_sym_loop] = ACTIONS(1959), + [anon_sym_match] = ACTIONS(1959), + [anon_sym_mod] = ACTIONS(1959), + [anon_sym_pub] = ACTIONS(1959), + [anon_sym_return] = ACTIONS(1959), + [anon_sym_static] = ACTIONS(1959), + [anon_sym_struct] = ACTIONS(1959), + [anon_sym_trait] = ACTIONS(1959), + [anon_sym_type] = ACTIONS(1959), + [anon_sym_union] = ACTIONS(1959), + [anon_sym_unsafe] = ACTIONS(1959), + [anon_sym_use] = ACTIONS(1959), + [anon_sym_while] = ACTIONS(1959), + [anon_sym_extern] = ACTIONS(1959), + [anon_sym_yield] = ACTIONS(1959), + [anon_sym_move] = ACTIONS(1959), + [sym_integer_literal] = ACTIONS(1957), + [aux_sym_string_literal_token1] = ACTIONS(1957), + [sym_char_literal] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1959), + [anon_sym_false] = ACTIONS(1959), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1959), + [sym_super] = ACTIONS(1959), + [sym_crate] = ACTIONS(1959), + [sym_metavariable] = ACTIONS(1957), + [sym_raw_string_literal] = ACTIONS(1957), + [sym_float_literal] = ACTIONS(1957), [sym_block_comment] = ACTIONS(3), }, - [466] = { - [sym_attribute_item] = STATE(499), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2317), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_arm] = STATE(466), - [sym_match_pattern] = STATE(2317), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(499), - [aux_sym_match_block_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1962), + [505] = { + [ts_builtin_sym_end] = ACTIONS(1961), + [sym_identifier] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_macro_rules_BANG] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_COLON_COLON] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(1961), + [anon_sym_u8] = ACTIONS(1963), + [anon_sym_i8] = ACTIONS(1963), + [anon_sym_u16] = ACTIONS(1963), + [anon_sym_i16] = ACTIONS(1963), + [anon_sym_u32] = ACTIONS(1963), + [anon_sym_i32] = ACTIONS(1963), + [anon_sym_u64] = ACTIONS(1963), + [anon_sym_i64] = ACTIONS(1963), + [anon_sym_u128] = ACTIONS(1963), + [anon_sym_i128] = ACTIONS(1963), + [anon_sym_isize] = ACTIONS(1963), + [anon_sym_usize] = ACTIONS(1963), + [anon_sym_f32] = ACTIONS(1963), + [anon_sym_f64] = ACTIONS(1963), + [anon_sym_bool] = ACTIONS(1963), + [anon_sym_str] = ACTIONS(1963), + [anon_sym_char] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1963), + [anon_sym_async] = ACTIONS(1963), + [anon_sym_break] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_continue] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1963), + [anon_sym_enum] = ACTIONS(1963), + [anon_sym_fn] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1963), + [anon_sym_if] = ACTIONS(1963), + [anon_sym_impl] = ACTIONS(1963), + [anon_sym_let] = ACTIONS(1963), + [anon_sym_loop] = ACTIONS(1963), + [anon_sym_match] = ACTIONS(1963), + [anon_sym_mod] = ACTIONS(1963), + [anon_sym_pub] = ACTIONS(1963), + [anon_sym_return] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_struct] = ACTIONS(1963), + [anon_sym_trait] = ACTIONS(1963), + [anon_sym_type] = ACTIONS(1963), + [anon_sym_union] = ACTIONS(1963), + [anon_sym_unsafe] = ACTIONS(1963), + [anon_sym_use] = ACTIONS(1963), + [anon_sym_while] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym_yield] = ACTIONS(1963), + [anon_sym_move] = ACTIONS(1963), + [sym_integer_literal] = ACTIONS(1961), + [aux_sym_string_literal_token1] = ACTIONS(1961), + [sym_char_literal] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1963), + [sym_super] = ACTIONS(1963), + [sym_crate] = ACTIONS(1963), + [sym_metavariable] = ACTIONS(1961), + [sym_raw_string_literal] = ACTIONS(1961), + [sym_float_literal] = ACTIONS(1961), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [ts_builtin_sym_end] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_macro_rules_BANG] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1965), [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_COLON_COLON] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(1965), + [anon_sym_u8] = ACTIONS(1967), + [anon_sym_i8] = ACTIONS(1967), + [anon_sym_u16] = ACTIONS(1967), + [anon_sym_i16] = ACTIONS(1967), + [anon_sym_u32] = ACTIONS(1967), + [anon_sym_i32] = ACTIONS(1967), + [anon_sym_u64] = ACTIONS(1967), + [anon_sym_i64] = ACTIONS(1967), + [anon_sym_u128] = ACTIONS(1967), + [anon_sym_i128] = ACTIONS(1967), + [anon_sym_isize] = ACTIONS(1967), + [anon_sym_usize] = ACTIONS(1967), + [anon_sym_f32] = ACTIONS(1967), + [anon_sym_f64] = ACTIONS(1967), + [anon_sym_bool] = ACTIONS(1967), + [anon_sym_str] = ACTIONS(1967), + [anon_sym_char] = ACTIONS(1967), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_async] = ACTIONS(1967), + [anon_sym_break] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_continue] = ACTIONS(1967), + [anon_sym_default] = ACTIONS(1967), + [anon_sym_enum] = ACTIONS(1967), + [anon_sym_fn] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_impl] = ACTIONS(1967), + [anon_sym_let] = ACTIONS(1967), + [anon_sym_loop] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_mod] = ACTIONS(1967), + [anon_sym_pub] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_struct] = ACTIONS(1967), + [anon_sym_trait] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_union] = ACTIONS(1967), + [anon_sym_unsafe] = ACTIONS(1967), + [anon_sym_use] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym_yield] = ACTIONS(1967), + [anon_sym_move] = ACTIONS(1967), + [sym_integer_literal] = ACTIONS(1965), + [aux_sym_string_literal_token1] = ACTIONS(1965), + [sym_char_literal] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = ACTIONS(1967), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1967), + [sym_super] = ACTIONS(1967), + [sym_crate] = ACTIONS(1967), + [sym_metavariable] = ACTIONS(1965), + [sym_raw_string_literal] = ACTIONS(1965), + [sym_float_literal] = ACTIONS(1965), + [sym_block_comment] = ACTIONS(3), + }, + [507] = { + [ts_builtin_sym_end] = ACTIONS(1969), + [sym_identifier] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_macro_rules_BANG] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(1969), + [anon_sym_u8] = ACTIONS(1971), + [anon_sym_i8] = ACTIONS(1971), + [anon_sym_u16] = ACTIONS(1971), + [anon_sym_i16] = ACTIONS(1971), + [anon_sym_u32] = ACTIONS(1971), + [anon_sym_i32] = ACTIONS(1971), + [anon_sym_u64] = ACTIONS(1971), + [anon_sym_i64] = ACTIONS(1971), + [anon_sym_u128] = ACTIONS(1971), + [anon_sym_i128] = ACTIONS(1971), + [anon_sym_isize] = ACTIONS(1971), + [anon_sym_usize] = ACTIONS(1971), + [anon_sym_f32] = ACTIONS(1971), + [anon_sym_f64] = ACTIONS(1971), + [anon_sym_bool] = ACTIONS(1971), + [anon_sym_str] = ACTIONS(1971), + [anon_sym_char] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), [anon_sym_const] = ACTIONS(1971), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_default] = ACTIONS(1971), + [anon_sym_enum] = ACTIONS(1971), + [anon_sym_fn] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_impl] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_loop] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_mod] = ACTIONS(1971), + [anon_sym_pub] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1971), + [anon_sym_struct] = ACTIONS(1971), + [anon_sym_trait] = ACTIONS(1971), + [anon_sym_type] = ACTIONS(1971), + [anon_sym_union] = ACTIONS(1971), + [anon_sym_unsafe] = ACTIONS(1971), + [anon_sym_use] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1971), + [anon_sym_yield] = ACTIONS(1971), + [anon_sym_move] = ACTIONS(1971), + [sym_integer_literal] = ACTIONS(1969), + [aux_sym_string_literal_token1] = ACTIONS(1969), + [sym_char_literal] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1971), + [sym_super] = ACTIONS(1971), + [sym_crate] = ACTIONS(1971), + [sym_metavariable] = ACTIONS(1969), + [sym_raw_string_literal] = ACTIONS(1969), + [sym_float_literal] = ACTIONS(1969), + [sym_block_comment] = ACTIONS(3), + }, + [508] = { + [ts_builtin_sym_end] = ACTIONS(1973), + [sym_identifier] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_macro_rules_BANG] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_COLON_COLON] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1973), + [anon_sym_u8] = ACTIONS(1975), + [anon_sym_i8] = ACTIONS(1975), + [anon_sym_u16] = ACTIONS(1975), + [anon_sym_i16] = ACTIONS(1975), + [anon_sym_u32] = ACTIONS(1975), + [anon_sym_i32] = ACTIONS(1975), + [anon_sym_u64] = ACTIONS(1975), + [anon_sym_i64] = ACTIONS(1975), + [anon_sym_u128] = ACTIONS(1975), + [anon_sym_i128] = ACTIONS(1975), + [anon_sym_isize] = ACTIONS(1975), + [anon_sym_usize] = ACTIONS(1975), + [anon_sym_f32] = ACTIONS(1975), + [anon_sym_f64] = ACTIONS(1975), + [anon_sym_bool] = ACTIONS(1975), + [anon_sym_str] = ACTIONS(1975), + [anon_sym_char] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [anon_sym_async] = ACTIONS(1975), + [anon_sym_break] = ACTIONS(1975), + [anon_sym_const] = ACTIONS(1975), + [anon_sym_continue] = ACTIONS(1975), + [anon_sym_default] = ACTIONS(1975), + [anon_sym_enum] = ACTIONS(1975), + [anon_sym_fn] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_if] = ACTIONS(1975), + [anon_sym_impl] = ACTIONS(1975), + [anon_sym_let] = ACTIONS(1975), + [anon_sym_loop] = ACTIONS(1975), + [anon_sym_match] = ACTIONS(1975), + [anon_sym_mod] = ACTIONS(1975), + [anon_sym_pub] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1975), + [anon_sym_struct] = ACTIONS(1975), + [anon_sym_trait] = ACTIONS(1975), + [anon_sym_type] = ACTIONS(1975), + [anon_sym_union] = ACTIONS(1975), + [anon_sym_unsafe] = ACTIONS(1975), + [anon_sym_use] = ACTIONS(1975), + [anon_sym_while] = ACTIONS(1975), + [anon_sym_extern] = ACTIONS(1975), + [anon_sym_yield] = ACTIONS(1975), + [anon_sym_move] = ACTIONS(1975), + [sym_integer_literal] = ACTIONS(1973), + [aux_sym_string_literal_token1] = ACTIONS(1973), + [sym_char_literal] = ACTIONS(1973), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1975), + [sym_super] = ACTIONS(1975), + [sym_crate] = ACTIONS(1975), + [sym_metavariable] = ACTIONS(1973), + [sym_raw_string_literal] = ACTIONS(1973), + [sym_float_literal] = ACTIONS(1973), + [sym_block_comment] = ACTIONS(3), + }, + [509] = { + [ts_builtin_sym_end] = ACTIONS(1977), + [sym_identifier] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1977), + [anon_sym_macro_rules_BANG] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_COLON_COLON] = ACTIONS(1977), [anon_sym_POUND] = ACTIONS(1977), - [anon_sym_ref] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1983), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym__] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1992), - [sym_mutable_specifier] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_u8] = ACTIONS(1979), + [anon_sym_i8] = ACTIONS(1979), + [anon_sym_u16] = ACTIONS(1979), + [anon_sym_i16] = ACTIONS(1979), + [anon_sym_u32] = ACTIONS(1979), + [anon_sym_i32] = ACTIONS(1979), + [anon_sym_u64] = ACTIONS(1979), + [anon_sym_i64] = ACTIONS(1979), + [anon_sym_u128] = ACTIONS(1979), + [anon_sym_i128] = ACTIONS(1979), + [anon_sym_isize] = ACTIONS(1979), + [anon_sym_usize] = ACTIONS(1979), + [anon_sym_f32] = ACTIONS(1979), + [anon_sym_f64] = ACTIONS(1979), + [anon_sym_bool] = ACTIONS(1979), + [anon_sym_str] = ACTIONS(1979), + [anon_sym_char] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_break] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1979), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_default] = ACTIONS(1979), + [anon_sym_enum] = ACTIONS(1979), + [anon_sym_fn] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_impl] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1979), + [anon_sym_loop] = ACTIONS(1979), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_mod] = ACTIONS(1979), + [anon_sym_pub] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_struct] = ACTIONS(1979), + [anon_sym_trait] = ACTIONS(1979), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_union] = ACTIONS(1979), + [anon_sym_unsafe] = ACTIONS(1979), + [anon_sym_use] = ACTIONS(1979), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_extern] = ACTIONS(1979), + [anon_sym_yield] = ACTIONS(1979), + [anon_sym_move] = ACTIONS(1979), + [sym_integer_literal] = ACTIONS(1977), + [aux_sym_string_literal_token1] = ACTIONS(1977), + [sym_char_literal] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = ACTIONS(1979), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1979), + [sym_super] = ACTIONS(1979), + [sym_crate] = ACTIONS(1979), + [sym_metavariable] = ACTIONS(1977), + [sym_raw_string_literal] = ACTIONS(1977), + [sym_float_literal] = ACTIONS(1977), + [sym_block_comment] = ACTIONS(3), + }, + [510] = { + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_identifier] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1981), + [anon_sym_macro_rules_BANG] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(1981), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_PIPE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [anon_sym_COLON_COLON] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(1981), + [anon_sym_u8] = ACTIONS(1983), + [anon_sym_i8] = ACTIONS(1983), + [anon_sym_u16] = ACTIONS(1983), + [anon_sym_i16] = ACTIONS(1983), + [anon_sym_u32] = ACTIONS(1983), + [anon_sym_i32] = ACTIONS(1983), + [anon_sym_u64] = ACTIONS(1983), + [anon_sym_i64] = ACTIONS(1983), + [anon_sym_u128] = ACTIONS(1983), + [anon_sym_i128] = ACTIONS(1983), + [anon_sym_isize] = ACTIONS(1983), + [anon_sym_usize] = ACTIONS(1983), + [anon_sym_f32] = ACTIONS(1983), + [anon_sym_f64] = ACTIONS(1983), + [anon_sym_bool] = ACTIONS(1983), + [anon_sym_str] = ACTIONS(1983), + [anon_sym_char] = ACTIONS(1983), + [anon_sym_SQUOTE] = ACTIONS(1983), + [anon_sym_async] = ACTIONS(1983), + [anon_sym_break] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_continue] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1983), + [anon_sym_enum] = ACTIONS(1983), + [anon_sym_fn] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_impl] = ACTIONS(1983), + [anon_sym_let] = ACTIONS(1983), + [anon_sym_loop] = ACTIONS(1983), + [anon_sym_match] = ACTIONS(1983), + [anon_sym_mod] = ACTIONS(1983), + [anon_sym_pub] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_struct] = ACTIONS(1983), + [anon_sym_trait] = ACTIONS(1983), + [anon_sym_type] = ACTIONS(1983), + [anon_sym_union] = ACTIONS(1983), + [anon_sym_unsafe] = ACTIONS(1983), + [anon_sym_use] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1983), + [anon_sym_move] = ACTIONS(1983), + [sym_integer_literal] = ACTIONS(1981), + [aux_sym_string_literal_token1] = ACTIONS(1981), + [sym_char_literal] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1983), + [anon_sym_false] = ACTIONS(1983), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1983), + [sym_super] = ACTIONS(1983), + [sym_crate] = ACTIONS(1983), + [sym_metavariable] = ACTIONS(1981), + [sym_raw_string_literal] = ACTIONS(1981), + [sym_float_literal] = ACTIONS(1981), + [sym_block_comment] = ACTIONS(3), + }, + [511] = { + [ts_builtin_sym_end] = ACTIONS(1985), + [sym_identifier] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym_macro_rules_BANG] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_STAR] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1985), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_COLON_COLON] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(1985), + [anon_sym_u8] = ACTIONS(1987), + [anon_sym_i8] = ACTIONS(1987), + [anon_sym_u16] = ACTIONS(1987), + [anon_sym_i16] = ACTIONS(1987), + [anon_sym_u32] = ACTIONS(1987), + [anon_sym_i32] = ACTIONS(1987), + [anon_sym_u64] = ACTIONS(1987), + [anon_sym_i64] = ACTIONS(1987), + [anon_sym_u128] = ACTIONS(1987), + [anon_sym_i128] = ACTIONS(1987), + [anon_sym_isize] = ACTIONS(1987), + [anon_sym_usize] = ACTIONS(1987), + [anon_sym_f32] = ACTIONS(1987), + [anon_sym_f64] = ACTIONS(1987), + [anon_sym_bool] = ACTIONS(1987), + [anon_sym_str] = ACTIONS(1987), + [anon_sym_char] = ACTIONS(1987), + [anon_sym_SQUOTE] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_default] = ACTIONS(1987), + [anon_sym_enum] = ACTIONS(1987), + [anon_sym_fn] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_impl] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1987), + [anon_sym_loop] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_mod] = ACTIONS(1987), + [anon_sym_pub] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_static] = ACTIONS(1987), + [anon_sym_struct] = ACTIONS(1987), + [anon_sym_trait] = ACTIONS(1987), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_union] = ACTIONS(1987), + [anon_sym_unsafe] = ACTIONS(1987), + [anon_sym_use] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_extern] = ACTIONS(1987), + [anon_sym_yield] = ACTIONS(1987), + [anon_sym_move] = ACTIONS(1987), + [sym_integer_literal] = ACTIONS(1985), + [aux_sym_string_literal_token1] = ACTIONS(1985), + [sym_char_literal] = ACTIONS(1985), + [anon_sym_true] = ACTIONS(1987), + [anon_sym_false] = ACTIONS(1987), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1987), + [sym_super] = ACTIONS(1987), + [sym_crate] = ACTIONS(1987), + [sym_metavariable] = ACTIONS(1985), + [sym_raw_string_literal] = ACTIONS(1985), + [sym_float_literal] = ACTIONS(1985), + [sym_block_comment] = ACTIONS(3), + }, + [512] = { + [ts_builtin_sym_end] = ACTIONS(1989), + [sym_identifier] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1989), + [anon_sym_macro_rules_BANG] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_BANG] = ACTIONS(1989), + [anon_sym_AMP] = ACTIONS(1989), + [anon_sym_PIPE] = ACTIONS(1989), + [anon_sym_LT] = ACTIONS(1989), + [anon_sym_DOT_DOT] = ACTIONS(1989), + [anon_sym_COLON_COLON] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(1989), + [anon_sym_u8] = ACTIONS(1991), + [anon_sym_i8] = ACTIONS(1991), + [anon_sym_u16] = ACTIONS(1991), + [anon_sym_i16] = ACTIONS(1991), + [anon_sym_u32] = ACTIONS(1991), + [anon_sym_i32] = ACTIONS(1991), + [anon_sym_u64] = ACTIONS(1991), + [anon_sym_i64] = ACTIONS(1991), + [anon_sym_u128] = ACTIONS(1991), + [anon_sym_i128] = ACTIONS(1991), + [anon_sym_isize] = ACTIONS(1991), + [anon_sym_usize] = ACTIONS(1991), + [anon_sym_f32] = ACTIONS(1991), + [anon_sym_f64] = ACTIONS(1991), + [anon_sym_bool] = ACTIONS(1991), + [anon_sym_str] = ACTIONS(1991), + [anon_sym_char] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1991), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1991), + [anon_sym_enum] = ACTIONS(1991), + [anon_sym_fn] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_impl] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_loop] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_mod] = ACTIONS(1991), + [anon_sym_pub] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_struct] = ACTIONS(1991), + [anon_sym_trait] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_union] = ACTIONS(1991), + [anon_sym_unsafe] = ACTIONS(1991), + [anon_sym_use] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1991), + [anon_sym_yield] = ACTIONS(1991), + [anon_sym_move] = ACTIONS(1991), + [sym_integer_literal] = ACTIONS(1989), + [aux_sym_string_literal_token1] = ACTIONS(1989), + [sym_char_literal] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1991), + [sym_super] = ACTIONS(1991), + [sym_crate] = ACTIONS(1991), + [sym_metavariable] = ACTIONS(1989), + [sym_raw_string_literal] = ACTIONS(1989), + [sym_float_literal] = ACTIONS(1989), + [sym_block_comment] = ACTIONS(3), + }, + [513] = { + [ts_builtin_sym_end] = ACTIONS(1993), + [sym_identifier] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1993), + [anon_sym_macro_rules_BANG] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PIPE] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_COLON_COLON] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(1993), + [anon_sym_u8] = ACTIONS(1995), + [anon_sym_i8] = ACTIONS(1995), + [anon_sym_u16] = ACTIONS(1995), + [anon_sym_i16] = ACTIONS(1995), + [anon_sym_u32] = ACTIONS(1995), + [anon_sym_i32] = ACTIONS(1995), + [anon_sym_u64] = ACTIONS(1995), + [anon_sym_i64] = ACTIONS(1995), + [anon_sym_u128] = ACTIONS(1995), + [anon_sym_i128] = ACTIONS(1995), + [anon_sym_isize] = ACTIONS(1995), + [anon_sym_usize] = ACTIONS(1995), + [anon_sym_f32] = ACTIONS(1995), + [anon_sym_f64] = ACTIONS(1995), + [anon_sym_bool] = ACTIONS(1995), + [anon_sym_str] = ACTIONS(1995), + [anon_sym_char] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_default] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), + [anon_sym_fn] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_impl] = ACTIONS(1995), + [anon_sym_let] = ACTIONS(1995), + [anon_sym_loop] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_mod] = ACTIONS(1995), + [anon_sym_pub] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_static] = ACTIONS(1995), + [anon_sym_struct] = ACTIONS(1995), + [anon_sym_trait] = ACTIONS(1995), + [anon_sym_type] = ACTIONS(1995), + [anon_sym_union] = ACTIONS(1995), + [anon_sym_unsafe] = ACTIONS(1995), + [anon_sym_use] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_extern] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_move] = ACTIONS(1995), + [sym_integer_literal] = ACTIONS(1993), + [aux_sym_string_literal_token1] = ACTIONS(1993), + [sym_char_literal] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1995), + [sym_super] = ACTIONS(1995), + [sym_crate] = ACTIONS(1995), + [sym_metavariable] = ACTIONS(1993), + [sym_raw_string_literal] = ACTIONS(1993), + [sym_float_literal] = ACTIONS(1993), + [sym_block_comment] = ACTIONS(3), + }, + [514] = { + [ts_builtin_sym_end] = ACTIONS(1997), + [sym_identifier] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_macro_rules_BANG] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_AMP] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(1999), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_default] = ACTIONS(1999), + [anon_sym_enum] = ACTIONS(1999), + [anon_sym_fn] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_impl] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_mod] = ACTIONS(1999), + [anon_sym_pub] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_static] = ACTIONS(1999), + [anon_sym_struct] = ACTIONS(1999), + [anon_sym_trait] = ACTIONS(1999), + [anon_sym_type] = ACTIONS(1999), + [anon_sym_union] = ACTIONS(1999), + [anon_sym_unsafe] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_yield] = ACTIONS(1999), + [anon_sym_move] = ACTIONS(1999), + [sym_integer_literal] = ACTIONS(1997), + [aux_sym_string_literal_token1] = ACTIONS(1997), + [sym_char_literal] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1999), + [sym_super] = ACTIONS(1999), + [sym_crate] = ACTIONS(1999), + [sym_metavariable] = ACTIONS(1997), + [sym_raw_string_literal] = ACTIONS(1997), + [sym_float_literal] = ACTIONS(1997), + [sym_block_comment] = ACTIONS(3), + }, + [515] = { + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_macro_rules_BANG] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), [anon_sym_DASH] = ACTIONS(2001), - [sym_integer_literal] = ACTIONS(2004), - [aux_sym_string_literal_token1] = ACTIONS(2007), - [sym_char_literal] = ACTIONS(2004), - [anon_sym_true] = ACTIONS(2010), - [anon_sym_false] = ACTIONS(2010), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2013), - [sym_super] = ACTIONS(2013), - [sym_crate] = ACTIONS(2013), - [sym_metavariable] = ACTIONS(2016), - [sym_raw_string_literal] = ACTIONS(2004), - [sym_float_literal] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_COLON_COLON] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(2001), + [anon_sym_u8] = ACTIONS(2003), + [anon_sym_i8] = ACTIONS(2003), + [anon_sym_u16] = ACTIONS(2003), + [anon_sym_i16] = ACTIONS(2003), + [anon_sym_u32] = ACTIONS(2003), + [anon_sym_i32] = ACTIONS(2003), + [anon_sym_u64] = ACTIONS(2003), + [anon_sym_i64] = ACTIONS(2003), + [anon_sym_u128] = ACTIONS(2003), + [anon_sym_i128] = ACTIONS(2003), + [anon_sym_isize] = ACTIONS(2003), + [anon_sym_usize] = ACTIONS(2003), + [anon_sym_f32] = ACTIONS(2003), + [anon_sym_f64] = ACTIONS(2003), + [anon_sym_bool] = ACTIONS(2003), + [anon_sym_str] = ACTIONS(2003), + [anon_sym_char] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2003), + [anon_sym_default] = ACTIONS(2003), + [anon_sym_enum] = ACTIONS(2003), + [anon_sym_fn] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_impl] = ACTIONS(2003), + [anon_sym_let] = ACTIONS(2003), + [anon_sym_loop] = ACTIONS(2003), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_mod] = ACTIONS(2003), + [anon_sym_pub] = ACTIONS(2003), + [anon_sym_return] = ACTIONS(2003), + [anon_sym_static] = ACTIONS(2003), + [anon_sym_struct] = ACTIONS(2003), + [anon_sym_trait] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_union] = ACTIONS(2003), + [anon_sym_unsafe] = ACTIONS(2003), + [anon_sym_use] = ACTIONS(2003), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_extern] = ACTIONS(2003), + [anon_sym_yield] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [sym_integer_literal] = ACTIONS(2001), + [aux_sym_string_literal_token1] = ACTIONS(2001), + [sym_char_literal] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2003), + [sym_super] = ACTIONS(2003), + [sym_crate] = ACTIONS(2003), + [sym_metavariable] = ACTIONS(2001), + [sym_raw_string_literal] = ACTIONS(2001), + [sym_float_literal] = ACTIONS(2001), [sym_block_comment] = ACTIONS(3), }, - [467] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), + [516] = { + [ts_builtin_sym_end] = ACTIONS(2005), + [sym_identifier] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_macro_rules_BANG] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_BANG] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_COLON_COLON] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(2005), + [anon_sym_u8] = ACTIONS(2007), + [anon_sym_i8] = ACTIONS(2007), + [anon_sym_u16] = ACTIONS(2007), + [anon_sym_i16] = ACTIONS(2007), + [anon_sym_u32] = ACTIONS(2007), + [anon_sym_i32] = ACTIONS(2007), + [anon_sym_u64] = ACTIONS(2007), + [anon_sym_i64] = ACTIONS(2007), + [anon_sym_u128] = ACTIONS(2007), + [anon_sym_i128] = ACTIONS(2007), + [anon_sym_isize] = ACTIONS(2007), + [anon_sym_usize] = ACTIONS(2007), + [anon_sym_f32] = ACTIONS(2007), + [anon_sym_f64] = ACTIONS(2007), + [anon_sym_bool] = ACTIONS(2007), + [anon_sym_str] = ACTIONS(2007), + [anon_sym_char] = ACTIONS(2007), + [anon_sym_SQUOTE] = ACTIONS(2007), + [anon_sym_async] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_enum] = ACTIONS(2007), + [anon_sym_fn] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_impl] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_mod] = ACTIONS(2007), + [anon_sym_pub] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_static] = ACTIONS(2007), + [anon_sym_struct] = ACTIONS(2007), + [anon_sym_trait] = ACTIONS(2007), + [anon_sym_type] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_unsafe] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_move] = ACTIONS(2007), + [sym_integer_literal] = ACTIONS(2005), + [aux_sym_string_literal_token1] = ACTIONS(2005), + [sym_char_literal] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2007), + [sym_super] = ACTIONS(2007), + [sym_crate] = ACTIONS(2007), + [sym_metavariable] = ACTIONS(2005), + [sym_raw_string_literal] = ACTIONS(2005), + [sym_float_literal] = ACTIONS(2005), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_macro_rules_BANG] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_COLON_COLON] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(2009), + [anon_sym_u8] = ACTIONS(2011), + [anon_sym_i8] = ACTIONS(2011), + [anon_sym_u16] = ACTIONS(2011), + [anon_sym_i16] = ACTIONS(2011), + [anon_sym_u32] = ACTIONS(2011), + [anon_sym_i32] = ACTIONS(2011), + [anon_sym_u64] = ACTIONS(2011), + [anon_sym_i64] = ACTIONS(2011), + [anon_sym_u128] = ACTIONS(2011), + [anon_sym_i128] = ACTIONS(2011), + [anon_sym_isize] = ACTIONS(2011), + [anon_sym_usize] = ACTIONS(2011), + [anon_sym_f32] = ACTIONS(2011), + [anon_sym_f64] = ACTIONS(2011), + [anon_sym_bool] = ACTIONS(2011), + [anon_sym_str] = ACTIONS(2011), + [anon_sym_char] = ACTIONS(2011), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_break] = ACTIONS(2011), + [anon_sym_const] = ACTIONS(2011), + [anon_sym_continue] = ACTIONS(2011), + [anon_sym_default] = ACTIONS(2011), + [anon_sym_enum] = ACTIONS(2011), + [anon_sym_fn] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_impl] = ACTIONS(2011), + [anon_sym_let] = ACTIONS(2011), + [anon_sym_loop] = ACTIONS(2011), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_mod] = ACTIONS(2011), + [anon_sym_pub] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(2011), + [anon_sym_static] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2011), + [anon_sym_trait] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_union] = ACTIONS(2011), + [anon_sym_unsafe] = ACTIONS(2011), + [anon_sym_use] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_extern] = ACTIONS(2011), + [anon_sym_yield] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [sym_integer_literal] = ACTIONS(2009), + [aux_sym_string_literal_token1] = ACTIONS(2009), + [sym_char_literal] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2011), + [sym_super] = ACTIONS(2011), + [sym_crate] = ACTIONS(2011), + [sym_metavariable] = ACTIONS(2009), + [sym_raw_string_literal] = ACTIONS(2009), + [sym_float_literal] = ACTIONS(2009), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { + [ts_builtin_sym_end] = ACTIONS(2013), + [sym_identifier] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_macro_rules_BANG] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_AMP] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_LT] = ACTIONS(2013), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_COLON_COLON] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(2013), + [anon_sym_u8] = ACTIONS(2015), + [anon_sym_i8] = ACTIONS(2015), + [anon_sym_u16] = ACTIONS(2015), + [anon_sym_i16] = ACTIONS(2015), + [anon_sym_u32] = ACTIONS(2015), + [anon_sym_i32] = ACTIONS(2015), + [anon_sym_u64] = ACTIONS(2015), + [anon_sym_i64] = ACTIONS(2015), + [anon_sym_u128] = ACTIONS(2015), + [anon_sym_i128] = ACTIONS(2015), + [anon_sym_isize] = ACTIONS(2015), + [anon_sym_usize] = ACTIONS(2015), + [anon_sym_f32] = ACTIONS(2015), + [anon_sym_f64] = ACTIONS(2015), + [anon_sym_bool] = ACTIONS(2015), + [anon_sym_str] = ACTIONS(2015), + [anon_sym_char] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_async] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(2015), + [anon_sym_enum] = ACTIONS(2015), + [anon_sym_fn] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_impl] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_mod] = ACTIONS(2015), + [anon_sym_pub] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_static] = ACTIONS(2015), + [anon_sym_struct] = ACTIONS(2015), + [anon_sym_trait] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_union] = ACTIONS(2015), + [anon_sym_unsafe] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_yield] = ACTIONS(2015), + [anon_sym_move] = ACTIONS(2015), + [sym_integer_literal] = ACTIONS(2013), + [aux_sym_string_literal_token1] = ACTIONS(2013), + [sym_char_literal] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2015), + [sym_super] = ACTIONS(2015), + [sym_crate] = ACTIONS(2015), + [sym_metavariable] = ACTIONS(2013), + [sym_raw_string_literal] = ACTIONS(2013), + [sym_float_literal] = ACTIONS(2013), + [sym_block_comment] = ACTIONS(3), + }, + [519] = { + [ts_builtin_sym_end] = ACTIONS(2017), [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_macro_rules_BANG] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(2017), [anon_sym_u8] = ACTIONS(2019), [anon_sym_i8] = ACTIONS(2019), [anon_sym_u16] = ACTIONS(2019), @@ -56363,9 +68283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2019), [anon_sym_char] = ACTIONS(2019), [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), [anon_sym_break] = ACTIONS(2019), [anon_sym_const] = ACTIONS(2019), [anon_sym_continue] = ACTIONS(2019), @@ -56388,111 +68306,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2019), [anon_sym_unsafe] = ACTIONS(2019), [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_yield] = ACTIONS(2019), + [anon_sym_move] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(2017), + [aux_sym_string_literal_token1] = ACTIONS(2017), + [sym_char_literal] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2019), [sym_super] = ACTIONS(2019), [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2017), + [sym_raw_string_literal] = ACTIONS(2017), + [sym_float_literal] = ACTIONS(2017), [sym_block_comment] = ACTIONS(3), }, - [468] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), + [520] = { + [ts_builtin_sym_end] = ACTIONS(2021), + [sym_identifier] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_macro_rules_BANG] = ACTIONS(2021), [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_BANG] = ACTIONS(2021), + [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_COLON_COLON] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(2021), + [anon_sym_u8] = ACTIONS(2023), + [anon_sym_i8] = ACTIONS(2023), + [anon_sym_u16] = ACTIONS(2023), + [anon_sym_i16] = ACTIONS(2023), + [anon_sym_u32] = ACTIONS(2023), + [anon_sym_i32] = ACTIONS(2023), + [anon_sym_u64] = ACTIONS(2023), + [anon_sym_i64] = ACTIONS(2023), + [anon_sym_u128] = ACTIONS(2023), + [anon_sym_i128] = ACTIONS(2023), + [anon_sym_isize] = ACTIONS(2023), + [anon_sym_usize] = ACTIONS(2023), + [anon_sym_f32] = ACTIONS(2023), + [anon_sym_f64] = ACTIONS(2023), + [anon_sym_bool] = ACTIONS(2023), + [anon_sym_str] = ACTIONS(2023), + [anon_sym_char] = ACTIONS(2023), + [anon_sym_SQUOTE] = ACTIONS(2023), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_default] = ACTIONS(2023), + [anon_sym_enum] = ACTIONS(2023), + [anon_sym_fn] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_impl] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_mod] = ACTIONS(2023), + [anon_sym_pub] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_static] = ACTIONS(2023), + [anon_sym_struct] = ACTIONS(2023), + [anon_sym_trait] = ACTIONS(2023), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_union] = ACTIONS(2023), + [anon_sym_unsafe] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_yield] = ACTIONS(2023), + [anon_sym_move] = ACTIONS(2023), + [sym_integer_literal] = ACTIONS(2021), + [aux_sym_string_literal_token1] = ACTIONS(2021), + [sym_char_literal] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2023), + [sym_super] = ACTIONS(2023), + [sym_crate] = ACTIONS(2023), + [sym_metavariable] = ACTIONS(2021), + [sym_raw_string_literal] = ACTIONS(2021), + [sym_float_literal] = ACTIONS(2021), + [sym_block_comment] = ACTIONS(3), + }, + [521] = { + [ts_builtin_sym_end] = ACTIONS(2025), + [sym_identifier] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_macro_rules_BANG] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2025), + [anon_sym_RBRACE] = ACTIONS(2025), [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_COLON_COLON] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(2025), + [anon_sym_u8] = ACTIONS(2027), + [anon_sym_i8] = ACTIONS(2027), + [anon_sym_u16] = ACTIONS(2027), + [anon_sym_i16] = ACTIONS(2027), + [anon_sym_u32] = ACTIONS(2027), + [anon_sym_i32] = ACTIONS(2027), + [anon_sym_u64] = ACTIONS(2027), + [anon_sym_i64] = ACTIONS(2027), + [anon_sym_u128] = ACTIONS(2027), + [anon_sym_i128] = ACTIONS(2027), + [anon_sym_isize] = ACTIONS(2027), + [anon_sym_usize] = ACTIONS(2027), + [anon_sym_f32] = ACTIONS(2027), + [anon_sym_f64] = ACTIONS(2027), + [anon_sym_bool] = ACTIONS(2027), + [anon_sym_str] = ACTIONS(2027), + [anon_sym_char] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(2027), + [anon_sym_async] = ACTIONS(2027), + [anon_sym_break] = ACTIONS(2027), + [anon_sym_const] = ACTIONS(2027), + [anon_sym_continue] = ACTIONS(2027), + [anon_sym_default] = ACTIONS(2027), + [anon_sym_enum] = ACTIONS(2027), + [anon_sym_fn] = ACTIONS(2027), + [anon_sym_for] = ACTIONS(2027), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_impl] = ACTIONS(2027), + [anon_sym_let] = ACTIONS(2027), + [anon_sym_loop] = ACTIONS(2027), + [anon_sym_match] = ACTIONS(2027), + [anon_sym_mod] = ACTIONS(2027), + [anon_sym_pub] = ACTIONS(2027), + [anon_sym_return] = ACTIONS(2027), + [anon_sym_static] = ACTIONS(2027), + [anon_sym_struct] = ACTIONS(2027), + [anon_sym_trait] = ACTIONS(2027), + [anon_sym_type] = ACTIONS(2027), + [anon_sym_union] = ACTIONS(2027), + [anon_sym_unsafe] = ACTIONS(2027), + [anon_sym_use] = ACTIONS(2027), + [anon_sym_while] = ACTIONS(2027), + [anon_sym_extern] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(2027), + [anon_sym_move] = ACTIONS(2027), + [sym_integer_literal] = ACTIONS(2025), + [aux_sym_string_literal_token1] = ACTIONS(2025), + [sym_char_literal] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(2027), + [anon_sym_false] = ACTIONS(2027), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2027), + [sym_super] = ACTIONS(2027), + [sym_crate] = ACTIONS(2027), + [sym_metavariable] = ACTIONS(2025), + [sym_raw_string_literal] = ACTIONS(2025), + [sym_float_literal] = ACTIONS(2025), [sym_block_comment] = ACTIONS(3), }, - [469] = { - [sym_token_tree] = STATE(494), - [sym_token_repetition] = STATE(494), - [sym__literal] = STATE(494), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(494), + [522] = { + [ts_builtin_sym_end] = ACTIONS(2029), + [sym_identifier] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_macro_rules_BANG] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_DOT_DOT] = ACTIONS(2029), + [anon_sym_COLON_COLON] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(2029), + [anon_sym_u8] = ACTIONS(2031), + [anon_sym_i8] = ACTIONS(2031), + [anon_sym_u16] = ACTIONS(2031), + [anon_sym_i16] = ACTIONS(2031), + [anon_sym_u32] = ACTIONS(2031), + [anon_sym_i32] = ACTIONS(2031), + [anon_sym_u64] = ACTIONS(2031), + [anon_sym_i64] = ACTIONS(2031), + [anon_sym_u128] = ACTIONS(2031), + [anon_sym_i128] = ACTIONS(2031), + [anon_sym_isize] = ACTIONS(2031), + [anon_sym_usize] = ACTIONS(2031), + [anon_sym_f32] = ACTIONS(2031), + [anon_sym_f64] = ACTIONS(2031), + [anon_sym_bool] = ACTIONS(2031), + [anon_sym_str] = ACTIONS(2031), + [anon_sym_char] = ACTIONS(2031), + [anon_sym_SQUOTE] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_break] = ACTIONS(2031), + [anon_sym_const] = ACTIONS(2031), + [anon_sym_continue] = ACTIONS(2031), + [anon_sym_default] = ACTIONS(2031), + [anon_sym_enum] = ACTIONS(2031), + [anon_sym_fn] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2031), + [anon_sym_impl] = ACTIONS(2031), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_loop] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_mod] = ACTIONS(2031), + [anon_sym_pub] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2031), + [anon_sym_static] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2031), + [anon_sym_trait] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2031), + [anon_sym_union] = ACTIONS(2031), + [anon_sym_unsafe] = ACTIONS(2031), + [anon_sym_use] = ACTIONS(2031), + [anon_sym_while] = ACTIONS(2031), + [anon_sym_extern] = ACTIONS(2031), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_move] = ACTIONS(2031), + [sym_integer_literal] = ACTIONS(2029), + [aux_sym_string_literal_token1] = ACTIONS(2029), + [sym_char_literal] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2031), + [sym_super] = ACTIONS(2031), + [sym_crate] = ACTIONS(2031), + [sym_metavariable] = ACTIONS(2029), + [sym_raw_string_literal] = ACTIONS(2029), + [sym_float_literal] = ACTIONS(2029), + [sym_block_comment] = ACTIONS(3), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(2033), [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2037), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_macro_rules_BANG] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_PIPE] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2033), + [anon_sym_COLON_COLON] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2033), [anon_sym_u8] = ACTIONS(2035), [anon_sym_i8] = ACTIONS(2035), [anon_sym_u16] = ACTIONS(2035), @@ -56511,9 +68591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2035), [anon_sym_char] = ACTIONS(2035), [anon_sym_SQUOTE] = ACTIONS(2035), - [anon_sym_as] = ACTIONS(2035), [anon_sym_async] = ACTIONS(2035), - [anon_sym_await] = ACTIONS(2035), [anon_sym_break] = ACTIONS(2035), [anon_sym_const] = ACTIONS(2035), [anon_sym_continue] = ACTIONS(2035), @@ -56536,481 +68614,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2035), [anon_sym_unsafe] = ACTIONS(2035), [anon_sym_use] = ACTIONS(2035), - [anon_sym_where] = ACTIONS(2035), [anon_sym_while] = ACTIONS(2035), - [sym_mutable_specifier] = ACTIONS(2035), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_move] = ACTIONS(2035), + [sym_integer_literal] = ACTIONS(2033), + [aux_sym_string_literal_token1] = ACTIONS(2033), + [sym_char_literal] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2035), [sym_super] = ACTIONS(2035), [sym_crate] = ACTIONS(2035), - [sym_metavariable] = ACTIONS(2039), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2033), + [sym_raw_string_literal] = ACTIONS(2033), + [sym_float_literal] = ACTIONS(2033), [sym_block_comment] = ACTIONS(3), }, - [470] = { - [sym_token_tree] = STATE(475), - [sym_token_repetition] = STATE(475), - [sym__literal] = STATE(475), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(475), - [sym_identifier] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2041), - [anon_sym_u8] = ACTIONS(2041), - [anon_sym_i8] = ACTIONS(2041), - [anon_sym_u16] = ACTIONS(2041), - [anon_sym_i16] = ACTIONS(2041), - [anon_sym_u32] = ACTIONS(2041), - [anon_sym_i32] = ACTIONS(2041), - [anon_sym_u64] = ACTIONS(2041), - [anon_sym_i64] = ACTIONS(2041), - [anon_sym_u128] = ACTIONS(2041), - [anon_sym_i128] = ACTIONS(2041), - [anon_sym_isize] = ACTIONS(2041), - [anon_sym_usize] = ACTIONS(2041), - [anon_sym_f32] = ACTIONS(2041), - [anon_sym_f64] = ACTIONS(2041), - [anon_sym_bool] = ACTIONS(2041), - [anon_sym_str] = ACTIONS(2041), - [anon_sym_char] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_impl] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_mod] = ACTIONS(2041), - [anon_sym_pub] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_where] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [sym_mutable_specifier] = ACTIONS(2041), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2041), - [sym_super] = ACTIONS(2041), - [sym_crate] = ACTIONS(2041), - [sym_metavariable] = ACTIONS(2045), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [524] = { + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_macro_rules_BANG] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2037), + [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_COLON_COLON] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_u8] = ACTIONS(2039), + [anon_sym_i8] = ACTIONS(2039), + [anon_sym_u16] = ACTIONS(2039), + [anon_sym_i16] = ACTIONS(2039), + [anon_sym_u32] = ACTIONS(2039), + [anon_sym_i32] = ACTIONS(2039), + [anon_sym_u64] = ACTIONS(2039), + [anon_sym_i64] = ACTIONS(2039), + [anon_sym_u128] = ACTIONS(2039), + [anon_sym_i128] = ACTIONS(2039), + [anon_sym_isize] = ACTIONS(2039), + [anon_sym_usize] = ACTIONS(2039), + [anon_sym_f32] = ACTIONS(2039), + [anon_sym_f64] = ACTIONS(2039), + [anon_sym_bool] = ACTIONS(2039), + [anon_sym_str] = ACTIONS(2039), + [anon_sym_char] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_fn] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_impl] = ACTIONS(2039), + [anon_sym_let] = ACTIONS(2039), + [anon_sym_loop] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2039), + [anon_sym_mod] = ACTIONS(2039), + [anon_sym_pub] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_union] = ACTIONS(2039), + [anon_sym_unsafe] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_move] = ACTIONS(2039), + [sym_integer_literal] = ACTIONS(2037), + [aux_sym_string_literal_token1] = ACTIONS(2037), + [sym_char_literal] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2039), + [sym_super] = ACTIONS(2039), + [sym_crate] = ACTIONS(2039), + [sym_metavariable] = ACTIONS(2037), + [sym_raw_string_literal] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), [sym_block_comment] = ACTIONS(3), }, - [471] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [525] = { + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_macro_rules_BANG] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_u8] = ACTIONS(2043), + [anon_sym_i8] = ACTIONS(2043), + [anon_sym_u16] = ACTIONS(2043), + [anon_sym_i16] = ACTIONS(2043), + [anon_sym_u32] = ACTIONS(2043), + [anon_sym_i32] = ACTIONS(2043), + [anon_sym_u64] = ACTIONS(2043), + [anon_sym_i64] = ACTIONS(2043), + [anon_sym_u128] = ACTIONS(2043), + [anon_sym_i128] = ACTIONS(2043), + [anon_sym_isize] = ACTIONS(2043), + [anon_sym_usize] = ACTIONS(2043), + [anon_sym_f32] = ACTIONS(2043), + [anon_sym_f64] = ACTIONS(2043), + [anon_sym_bool] = ACTIONS(2043), + [anon_sym_str] = ACTIONS(2043), + [anon_sym_char] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_default] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_fn] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_impl] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_mod] = ACTIONS(2043), + [anon_sym_pub] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_struct] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_union] = ACTIONS(2043), + [anon_sym_unsafe] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [sym_integer_literal] = ACTIONS(2041), + [aux_sym_string_literal_token1] = ACTIONS(2041), + [sym_char_literal] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2043), + [sym_super] = ACTIONS(2043), + [sym_crate] = ACTIONS(2043), + [sym_metavariable] = ACTIONS(2041), + [sym_raw_string_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), [sym_block_comment] = ACTIONS(3), }, - [472] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2049), - [anon_sym_u8] = ACTIONS(2049), - [anon_sym_i8] = ACTIONS(2049), - [anon_sym_u16] = ACTIONS(2049), - [anon_sym_i16] = ACTIONS(2049), - [anon_sym_u32] = ACTIONS(2049), - [anon_sym_i32] = ACTIONS(2049), - [anon_sym_u64] = ACTIONS(2049), - [anon_sym_i64] = ACTIONS(2049), - [anon_sym_u128] = ACTIONS(2049), - [anon_sym_i128] = ACTIONS(2049), - [anon_sym_isize] = ACTIONS(2049), - [anon_sym_usize] = ACTIONS(2049), - [anon_sym_f32] = ACTIONS(2049), - [anon_sym_f64] = ACTIONS(2049), - [anon_sym_bool] = ACTIONS(2049), - [anon_sym_str] = ACTIONS(2049), - [anon_sym_char] = ACTIONS(2049), - [anon_sym_SQUOTE] = ACTIONS(2049), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_fn] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_impl] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_loop] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_mod] = ACTIONS(2049), - [anon_sym_pub] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_struct] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_union] = ACTIONS(2049), - [anon_sym_unsafe] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_where] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [sym_mutable_specifier] = ACTIONS(2049), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2049), - [sym_super] = ACTIONS(2049), - [sym_crate] = ACTIONS(2049), - [sym_metavariable] = ACTIONS(2051), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [526] = { + [ts_builtin_sym_end] = ACTIONS(2045), + [sym_identifier] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_macro_rules_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(2045), + [anon_sym_u8] = ACTIONS(2047), + [anon_sym_i8] = ACTIONS(2047), + [anon_sym_u16] = ACTIONS(2047), + [anon_sym_i16] = ACTIONS(2047), + [anon_sym_u32] = ACTIONS(2047), + [anon_sym_i32] = ACTIONS(2047), + [anon_sym_u64] = ACTIONS(2047), + [anon_sym_i64] = ACTIONS(2047), + [anon_sym_u128] = ACTIONS(2047), + [anon_sym_i128] = ACTIONS(2047), + [anon_sym_isize] = ACTIONS(2047), + [anon_sym_usize] = ACTIONS(2047), + [anon_sym_f32] = ACTIONS(2047), + [anon_sym_f64] = ACTIONS(2047), + [anon_sym_bool] = ACTIONS(2047), + [anon_sym_str] = ACTIONS(2047), + [anon_sym_char] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_fn] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_impl] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_mod] = ACTIONS(2047), + [anon_sym_pub] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_struct] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_union] = ACTIONS(2047), + [anon_sym_unsafe] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_move] = ACTIONS(2047), + [sym_integer_literal] = ACTIONS(2045), + [aux_sym_string_literal_token1] = ACTIONS(2045), + [sym_char_literal] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2047), + [sym_super] = ACTIONS(2047), + [sym_crate] = ACTIONS(2047), + [sym_metavariable] = ACTIONS(2045), + [sym_raw_string_literal] = ACTIONS(2045), + [sym_float_literal] = ACTIONS(2045), [sym_block_comment] = ACTIONS(3), }, - [473] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2053), - [anon_sym_u8] = ACTIONS(2053), - [anon_sym_i8] = ACTIONS(2053), - [anon_sym_u16] = ACTIONS(2053), - [anon_sym_i16] = ACTIONS(2053), - [anon_sym_u32] = ACTIONS(2053), - [anon_sym_i32] = ACTIONS(2053), - [anon_sym_u64] = ACTIONS(2053), - [anon_sym_i64] = ACTIONS(2053), - [anon_sym_u128] = ACTIONS(2053), - [anon_sym_i128] = ACTIONS(2053), - [anon_sym_isize] = ACTIONS(2053), - [anon_sym_usize] = ACTIONS(2053), - [anon_sym_f32] = ACTIONS(2053), - [anon_sym_f64] = ACTIONS(2053), - [anon_sym_bool] = ACTIONS(2053), - [anon_sym_str] = ACTIONS(2053), - [anon_sym_char] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_default] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_fn] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_impl] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2053), - [anon_sym_loop] = ACTIONS(2053), - [anon_sym_match] = ACTIONS(2053), - [anon_sym_mod] = ACTIONS(2053), - [anon_sym_pub] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2053), - [anon_sym_trait] = ACTIONS(2053), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_union] = ACTIONS(2053), - [anon_sym_unsafe] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_where] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [sym_mutable_specifier] = ACTIONS(2053), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2053), - [sym_super] = ACTIONS(2053), - [sym_crate] = ACTIONS(2053), - [sym_metavariable] = ACTIONS(2055), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [527] = { + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_macro_rules_BANG] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_DOT_DOT] = ACTIONS(2049), + [anon_sym_COLON_COLON] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(2049), + [anon_sym_u8] = ACTIONS(2051), + [anon_sym_i8] = ACTIONS(2051), + [anon_sym_u16] = ACTIONS(2051), + [anon_sym_i16] = ACTIONS(2051), + [anon_sym_u32] = ACTIONS(2051), + [anon_sym_i32] = ACTIONS(2051), + [anon_sym_u64] = ACTIONS(2051), + [anon_sym_i64] = ACTIONS(2051), + [anon_sym_u128] = ACTIONS(2051), + [anon_sym_i128] = ACTIONS(2051), + [anon_sym_isize] = ACTIONS(2051), + [anon_sym_usize] = ACTIONS(2051), + [anon_sym_f32] = ACTIONS(2051), + [anon_sym_f64] = ACTIONS(2051), + [anon_sym_bool] = ACTIONS(2051), + [anon_sym_str] = ACTIONS(2051), + [anon_sym_char] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(2051), + [anon_sym_enum] = ACTIONS(2051), + [anon_sym_fn] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_impl] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_mod] = ACTIONS(2051), + [anon_sym_pub] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2051), + [anon_sym_trait] = ACTIONS(2051), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_union] = ACTIONS(2051), + [anon_sym_unsafe] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_yield] = ACTIONS(2051), + [anon_sym_move] = ACTIONS(2051), + [sym_integer_literal] = ACTIONS(2049), + [aux_sym_string_literal_token1] = ACTIONS(2049), + [sym_char_literal] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2051), + [sym_super] = ACTIONS(2051), + [sym_crate] = ACTIONS(2051), + [sym_metavariable] = ACTIONS(2049), + [sym_raw_string_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), [sym_block_comment] = ACTIONS(3), }, - [474] = { - [sym_token_tree] = STATE(480), - [sym_token_repetition] = STATE(480), - [sym__literal] = STATE(480), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2057), - [anon_sym_u8] = ACTIONS(2057), - [anon_sym_i8] = ACTIONS(2057), - [anon_sym_u16] = ACTIONS(2057), - [anon_sym_i16] = ACTIONS(2057), - [anon_sym_u32] = ACTIONS(2057), - [anon_sym_i32] = ACTIONS(2057), - [anon_sym_u64] = ACTIONS(2057), - [anon_sym_i64] = ACTIONS(2057), - [anon_sym_u128] = ACTIONS(2057), - [anon_sym_i128] = ACTIONS(2057), - [anon_sym_isize] = ACTIONS(2057), - [anon_sym_usize] = ACTIONS(2057), - [anon_sym_f32] = ACTIONS(2057), - [anon_sym_f64] = ACTIONS(2057), - [anon_sym_bool] = ACTIONS(2057), - [anon_sym_str] = ACTIONS(2057), - [anon_sym_char] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_fn] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_impl] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_mod] = ACTIONS(2057), - [anon_sym_pub] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_union] = ACTIONS(2057), - [anon_sym_unsafe] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_where] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [sym_mutable_specifier] = ACTIONS(2057), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_crate] = ACTIONS(2057), - [sym_metavariable] = ACTIONS(2061), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [528] = { + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_macro_rules_BANG] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [anon_sym_COLON_COLON] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_u8] = ACTIONS(2055), + [anon_sym_i8] = ACTIONS(2055), + [anon_sym_u16] = ACTIONS(2055), + [anon_sym_i16] = ACTIONS(2055), + [anon_sym_u32] = ACTIONS(2055), + [anon_sym_i32] = ACTIONS(2055), + [anon_sym_u64] = ACTIONS(2055), + [anon_sym_i64] = ACTIONS(2055), + [anon_sym_u128] = ACTIONS(2055), + [anon_sym_i128] = ACTIONS(2055), + [anon_sym_isize] = ACTIONS(2055), + [anon_sym_usize] = ACTIONS(2055), + [anon_sym_f32] = ACTIONS(2055), + [anon_sym_f64] = ACTIONS(2055), + [anon_sym_bool] = ACTIONS(2055), + [anon_sym_str] = ACTIONS(2055), + [anon_sym_char] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_async] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_default] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_impl] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_mod] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_static] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_trait] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_yield] = ACTIONS(2055), + [anon_sym_move] = ACTIONS(2055), + [sym_integer_literal] = ACTIONS(2053), + [aux_sym_string_literal_token1] = ACTIONS(2053), + [sym_char_literal] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2055), + [sym_super] = ACTIONS(2055), + [sym_crate] = ACTIONS(2055), + [sym_metavariable] = ACTIONS(2053), + [sym_raw_string_literal] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), [sym_block_comment] = ACTIONS(3), }, - [475] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [529] = { + [ts_builtin_sym_end] = ACTIONS(2057), + [sym_identifier] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_macro_rules_BANG] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2057), + [anon_sym_COLON_COLON] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2057), + [anon_sym_u8] = ACTIONS(2059), + [anon_sym_i8] = ACTIONS(2059), + [anon_sym_u16] = ACTIONS(2059), + [anon_sym_i16] = ACTIONS(2059), + [anon_sym_u32] = ACTIONS(2059), + [anon_sym_i32] = ACTIONS(2059), + [anon_sym_u64] = ACTIONS(2059), + [anon_sym_i64] = ACTIONS(2059), + [anon_sym_u128] = ACTIONS(2059), + [anon_sym_i128] = ACTIONS(2059), + [anon_sym_isize] = ACTIONS(2059), + [anon_sym_usize] = ACTIONS(2059), + [anon_sym_f32] = ACTIONS(2059), + [anon_sym_f64] = ACTIONS(2059), + [anon_sym_bool] = ACTIONS(2059), + [anon_sym_str] = ACTIONS(2059), + [anon_sym_char] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_async] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_default] = ACTIONS(2059), + [anon_sym_enum] = ACTIONS(2059), + [anon_sym_fn] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_impl] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_mod] = ACTIONS(2059), + [anon_sym_pub] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_static] = ACTIONS(2059), + [anon_sym_struct] = ACTIONS(2059), + [anon_sym_trait] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2059), + [anon_sym_union] = ACTIONS(2059), + [anon_sym_unsafe] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2059), + [anon_sym_move] = ACTIONS(2059), + [sym_integer_literal] = ACTIONS(2057), + [aux_sym_string_literal_token1] = ACTIONS(2057), + [sym_char_literal] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2059), + [anon_sym_false] = ACTIONS(2059), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2059), + [sym_super] = ACTIONS(2059), + [sym_crate] = ACTIONS(2059), + [sym_metavariable] = ACTIONS(2057), + [sym_raw_string_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), [sym_block_comment] = ACTIONS(3), }, - [476] = { - [sym_token_tree] = STATE(482), - [sym_token_repetition] = STATE(482), - [sym__literal] = STATE(482), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(482), + [530] = { + [ts_builtin_sym_end] = ACTIONS(2061), [sym_identifier] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_macro_rules_BANG] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_COLON_COLON] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2061), [anon_sym_u8] = ACTIONS(2063), [anon_sym_i8] = ACTIONS(2063), [anon_sym_u16] = ACTIONS(2063), @@ -57029,9 +69130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2063), [anon_sym_char] = ACTIONS(2063), [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), [anon_sym_async] = ACTIONS(2063), - [anon_sym_await] = ACTIONS(2063), [anon_sym_break] = ACTIONS(2063), [anon_sym_const] = ACTIONS(2063), [anon_sym_continue] = ACTIONS(2063), @@ -57054,111 +69153,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2063), [anon_sym_unsafe] = ACTIONS(2063), [anon_sym_use] = ACTIONS(2063), - [anon_sym_where] = ACTIONS(2063), [anon_sym_while] = ACTIONS(2063), - [sym_mutable_specifier] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2063), + [anon_sym_yield] = ACTIONS(2063), + [anon_sym_move] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2061), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2065), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [477] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2061), + [sym_raw_string_literal] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), [sym_block_comment] = ACTIONS(3), }, - [478] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(495), + [531] = { + [ts_builtin_sym_end] = ACTIONS(2065), [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_macro_rules_BANG] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_COLON_COLON] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(2065), [anon_sym_u8] = ACTIONS(2067), [anon_sym_i8] = ACTIONS(2067), [anon_sym_u16] = ACTIONS(2067), @@ -57177,9 +69207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2067), [anon_sym_char] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), [anon_sym_break] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_continue] = ACTIONS(2067), @@ -57202,185 +69230,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2067), [anon_sym_unsafe] = ACTIONS(2067), [anon_sym_use] = ACTIONS(2067), - [anon_sym_where] = ACTIONS(2067), [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_move] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2065), + [aux_sym_string_literal_token1] = ACTIONS(2065), + [sym_char_literal] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2067), [sym_super] = ACTIONS(2067), [sym_crate] = ACTIONS(2067), - [sym_metavariable] = ACTIONS(2071), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2065), + [sym_raw_string_literal] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2065), [sym_block_comment] = ACTIONS(3), }, - [480] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [532] = { + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_macro_rules_BANG] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_COLON_COLON] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2069), + [anon_sym_u8] = ACTIONS(2071), + [anon_sym_i8] = ACTIONS(2071), + [anon_sym_u16] = ACTIONS(2071), + [anon_sym_i16] = ACTIONS(2071), + [anon_sym_u32] = ACTIONS(2071), + [anon_sym_i32] = ACTIONS(2071), + [anon_sym_u64] = ACTIONS(2071), + [anon_sym_i64] = ACTIONS(2071), + [anon_sym_u128] = ACTIONS(2071), + [anon_sym_i128] = ACTIONS(2071), + [anon_sym_isize] = ACTIONS(2071), + [anon_sym_usize] = ACTIONS(2071), + [anon_sym_f32] = ACTIONS(2071), + [anon_sym_f64] = ACTIONS(2071), + [anon_sym_bool] = ACTIONS(2071), + [anon_sym_str] = ACTIONS(2071), + [anon_sym_char] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_default] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_impl] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_mod] = ACTIONS(2071), + [anon_sym_pub] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_static] = ACTIONS(2071), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_trait] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_union] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_yield] = ACTIONS(2071), + [anon_sym_move] = ACTIONS(2071), + [sym_integer_literal] = ACTIONS(2069), + [aux_sym_string_literal_token1] = ACTIONS(2069), + [sym_char_literal] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2071), + [sym_super] = ACTIONS(2071), + [sym_crate] = ACTIONS(2071), + [sym_metavariable] = ACTIONS(2069), + [sym_raw_string_literal] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), [sym_block_comment] = ACTIONS(3), }, - [481] = { - [sym_token_tree] = STATE(477), - [sym_token_repetition] = STATE(477), - [sym__literal] = STATE(477), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(477), + [533] = { + [ts_builtin_sym_end] = ACTIONS(2073), [sym_identifier] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_macro_rules_BANG] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_COLON_COLON] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(2073), [anon_sym_u8] = ACTIONS(2075), [anon_sym_i8] = ACTIONS(2075), [anon_sym_u16] = ACTIONS(2075), @@ -57399,9 +69361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2075), [anon_sym_char] = ACTIONS(2075), [anon_sym_SQUOTE] = ACTIONS(2075), - [anon_sym_as] = ACTIONS(2075), [anon_sym_async] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(2075), [anon_sym_break] = ACTIONS(2075), [anon_sym_const] = ACTIONS(2075), [anon_sym_continue] = ACTIONS(2075), @@ -57424,111 +69384,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2075), [anon_sym_unsafe] = ACTIONS(2075), [anon_sym_use] = ACTIONS(2075), - [anon_sym_where] = ACTIONS(2075), [anon_sym_while] = ACTIONS(2075), - [sym_mutable_specifier] = ACTIONS(2075), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_yield] = ACTIONS(2075), + [anon_sym_move] = ACTIONS(2075), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2073), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2075), [sym_super] = ACTIONS(2075), [sym_crate] = ACTIONS(2075), - [sym_metavariable] = ACTIONS(2079), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2073), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, - [482] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [534] = { + [ts_builtin_sym_end] = ACTIONS(2077), + [sym_identifier] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_macro_rules_BANG] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_COLON_COLON] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(2077), + [anon_sym_u8] = ACTIONS(2079), + [anon_sym_i8] = ACTIONS(2079), + [anon_sym_u16] = ACTIONS(2079), + [anon_sym_i16] = ACTIONS(2079), + [anon_sym_u32] = ACTIONS(2079), + [anon_sym_i32] = ACTIONS(2079), + [anon_sym_u64] = ACTIONS(2079), + [anon_sym_i64] = ACTIONS(2079), + [anon_sym_u128] = ACTIONS(2079), + [anon_sym_i128] = ACTIONS(2079), + [anon_sym_isize] = ACTIONS(2079), + [anon_sym_usize] = ACTIONS(2079), + [anon_sym_f32] = ACTIONS(2079), + [anon_sym_f64] = ACTIONS(2079), + [anon_sym_bool] = ACTIONS(2079), + [anon_sym_str] = ACTIONS(2079), + [anon_sym_char] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_default] = ACTIONS(2079), + [anon_sym_enum] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_impl] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_mod] = ACTIONS(2079), + [anon_sym_pub] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_static] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_trait] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_union] = ACTIONS(2079), + [anon_sym_unsafe] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(2079), + [anon_sym_move] = ACTIONS(2079), + [sym_integer_literal] = ACTIONS(2077), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2079), + [sym_super] = ACTIONS(2079), + [sym_crate] = ACTIONS(2079), + [sym_metavariable] = ACTIONS(2077), + [sym_raw_string_literal] = ACTIONS(2077), + [sym_float_literal] = ACTIONS(2077), [sym_block_comment] = ACTIONS(3), }, - [483] = { - [sym_token_tree] = STATE(488), - [sym_token_repetition] = STATE(488), - [sym__literal] = STATE(488), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(488), + [535] = { + [ts_builtin_sym_end] = ACTIONS(2081), [sym_identifier] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_macro_rules_BANG] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_COLON_COLON] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(2081), [anon_sym_u8] = ACTIONS(2083), [anon_sym_i8] = ACTIONS(2083), [anon_sym_u16] = ACTIONS(2083), @@ -57547,9 +69515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2083), [anon_sym_char] = ACTIONS(2083), [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2083), [anon_sym_async] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), [anon_sym_break] = ACTIONS(2083), [anon_sym_const] = ACTIONS(2083), [anon_sym_continue] = ACTIONS(2083), @@ -57572,481 +69538,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2083), [anon_sym_unsafe] = ACTIONS(2083), [anon_sym_use] = ACTIONS(2083), - [anon_sym_where] = ACTIONS(2083), [anon_sym_while] = ACTIONS(2083), - [sym_mutable_specifier] = ACTIONS(2083), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_move] = ACTIONS(2083), + [sym_integer_literal] = ACTIONS(2081), + [aux_sym_string_literal_token1] = ACTIONS(2081), + [sym_char_literal] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2083), + [anon_sym_false] = ACTIONS(2083), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2083), [sym_super] = ACTIONS(2083), [sym_crate] = ACTIONS(2083), - [sym_metavariable] = ACTIONS(2087), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2081), + [sym_float_literal] = ACTIONS(2081), [sym_block_comment] = ACTIONS(3), }, - [484] = { - [sym_token_tree] = STATE(468), - [sym_token_repetition] = STATE(468), - [sym__literal] = STATE(468), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(468), - [sym_identifier] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2089), - [anon_sym_u8] = ACTIONS(2089), - [anon_sym_i8] = ACTIONS(2089), - [anon_sym_u16] = ACTIONS(2089), - [anon_sym_i16] = ACTIONS(2089), - [anon_sym_u32] = ACTIONS(2089), - [anon_sym_i32] = ACTIONS(2089), - [anon_sym_u64] = ACTIONS(2089), - [anon_sym_i64] = ACTIONS(2089), - [anon_sym_u128] = ACTIONS(2089), - [anon_sym_i128] = ACTIONS(2089), - [anon_sym_isize] = ACTIONS(2089), - [anon_sym_usize] = ACTIONS(2089), - [anon_sym_f32] = ACTIONS(2089), - [anon_sym_f64] = ACTIONS(2089), - [anon_sym_bool] = ACTIONS(2089), - [anon_sym_str] = ACTIONS(2089), - [anon_sym_char] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_impl] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_mod] = ACTIONS(2089), - [anon_sym_pub] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_union] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_where] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [sym_mutable_specifier] = ACTIONS(2089), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_crate] = ACTIONS(2089), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [536] = { + [ts_builtin_sym_end] = ACTIONS(2085), + [sym_identifier] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_macro_rules_BANG] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(2085), + [anon_sym_u8] = ACTIONS(2087), + [anon_sym_i8] = ACTIONS(2087), + [anon_sym_u16] = ACTIONS(2087), + [anon_sym_i16] = ACTIONS(2087), + [anon_sym_u32] = ACTIONS(2087), + [anon_sym_i32] = ACTIONS(2087), + [anon_sym_u64] = ACTIONS(2087), + [anon_sym_i64] = ACTIONS(2087), + [anon_sym_u128] = ACTIONS(2087), + [anon_sym_i128] = ACTIONS(2087), + [anon_sym_isize] = ACTIONS(2087), + [anon_sym_usize] = ACTIONS(2087), + [anon_sym_f32] = ACTIONS(2087), + [anon_sym_f64] = ACTIONS(2087), + [anon_sym_bool] = ACTIONS(2087), + [anon_sym_str] = ACTIONS(2087), + [anon_sym_char] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_fn] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_impl] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_mod] = ACTIONS(2087), + [anon_sym_pub] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_trait] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [anon_sym_unsafe] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_yield] = ACTIONS(2087), + [anon_sym_move] = ACTIONS(2087), + [sym_integer_literal] = ACTIONS(2085), + [aux_sym_string_literal_token1] = ACTIONS(2085), + [sym_char_literal] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2087), + [sym_super] = ACTIONS(2087), + [sym_crate] = ACTIONS(2087), + [sym_metavariable] = ACTIONS(2085), + [sym_raw_string_literal] = ACTIONS(2085), + [sym_float_literal] = ACTIONS(2085), [sym_block_comment] = ACTIONS(3), }, - [485] = { - [sym_token_tree] = STATE(491), - [sym_token_repetition] = STATE(491), - [sym__literal] = STATE(491), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2093), - [anon_sym_u8] = ACTIONS(2093), - [anon_sym_i8] = ACTIONS(2093), - [anon_sym_u16] = ACTIONS(2093), - [anon_sym_i16] = ACTIONS(2093), - [anon_sym_u32] = ACTIONS(2093), - [anon_sym_i32] = ACTIONS(2093), - [anon_sym_u64] = ACTIONS(2093), - [anon_sym_i64] = ACTIONS(2093), - [anon_sym_u128] = ACTIONS(2093), - [anon_sym_i128] = ACTIONS(2093), - [anon_sym_isize] = ACTIONS(2093), - [anon_sym_usize] = ACTIONS(2093), - [anon_sym_f32] = ACTIONS(2093), - [anon_sym_f64] = ACTIONS(2093), - [anon_sym_bool] = ACTIONS(2093), - [anon_sym_str] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_impl] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_mod] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_where] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [sym_mutable_specifier] = ACTIONS(2093), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_crate] = ACTIONS(2093), - [sym_metavariable] = ACTIONS(2095), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [537] = { + [ts_builtin_sym_end] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_macro_rules_BANG] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_COLON_COLON] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2089), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_extern] = ACTIONS(2091), + [anon_sym_yield] = ACTIONS(2091), + [anon_sym_move] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2089), + [aux_sym_string_literal_token1] = ACTIONS(2089), + [sym_char_literal] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2091), + [anon_sym_false] = ACTIONS(2091), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2089), + [sym_raw_string_literal] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2089), [sym_block_comment] = ACTIONS(3), }, - [486] = { - [sym_token_tree] = STATE(479), - [sym_token_repetition] = STATE(479), - [sym__literal] = STATE(479), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2097), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2099), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [538] = { + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_macro_rules_BANG] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_DOT_DOT] = ACTIONS(2093), + [anon_sym_COLON_COLON] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2093), + [anon_sym_u8] = ACTIONS(2095), + [anon_sym_i8] = ACTIONS(2095), + [anon_sym_u16] = ACTIONS(2095), + [anon_sym_i16] = ACTIONS(2095), + [anon_sym_u32] = ACTIONS(2095), + [anon_sym_i32] = ACTIONS(2095), + [anon_sym_u64] = ACTIONS(2095), + [anon_sym_i64] = ACTIONS(2095), + [anon_sym_u128] = ACTIONS(2095), + [anon_sym_i128] = ACTIONS(2095), + [anon_sym_isize] = ACTIONS(2095), + [anon_sym_usize] = ACTIONS(2095), + [anon_sym_f32] = ACTIONS(2095), + [anon_sym_f64] = ACTIONS(2095), + [anon_sym_bool] = ACTIONS(2095), + [anon_sym_str] = ACTIONS(2095), + [anon_sym_char] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_async] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_impl] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(2095), + [anon_sym_loop] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_mod] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_static] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_trait] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_use] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_yield] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [sym_integer_literal] = ACTIONS(2093), + [aux_sym_string_literal_token1] = ACTIONS(2093), + [sym_char_literal] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2095), + [anon_sym_false] = ACTIONS(2095), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2095), + [sym_super] = ACTIONS(2095), + [sym_crate] = ACTIONS(2095), + [sym_metavariable] = ACTIONS(2093), + [sym_raw_string_literal] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2093), [sym_block_comment] = ACTIONS(3), }, - [487] = { - [sym_token_tree] = STATE(467), - [sym_token_repetition] = STATE(467), - [sym__literal] = STATE(467), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2101), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_impl] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_mod] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [sym_mutable_specifier] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2103), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [539] = { + [ts_builtin_sym_end] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_macro_rules_BANG] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_COLON_COLON] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_u8] = ACTIONS(2099), + [anon_sym_i8] = ACTIONS(2099), + [anon_sym_u16] = ACTIONS(2099), + [anon_sym_i16] = ACTIONS(2099), + [anon_sym_u32] = ACTIONS(2099), + [anon_sym_i32] = ACTIONS(2099), + [anon_sym_u64] = ACTIONS(2099), + [anon_sym_i64] = ACTIONS(2099), + [anon_sym_u128] = ACTIONS(2099), + [anon_sym_i128] = ACTIONS(2099), + [anon_sym_isize] = ACTIONS(2099), + [anon_sym_usize] = ACTIONS(2099), + [anon_sym_f32] = ACTIONS(2099), + [anon_sym_f64] = ACTIONS(2099), + [anon_sym_bool] = ACTIONS(2099), + [anon_sym_str] = ACTIONS(2099), + [anon_sym_char] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_impl] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2099), + [anon_sym_loop] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_mod] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_static] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_trait] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_use] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_extern] = ACTIONS(2099), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_move] = ACTIONS(2099), + [sym_integer_literal] = ACTIONS(2097), + [aux_sym_string_literal_token1] = ACTIONS(2097), + [sym_char_literal] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2099), + [anon_sym_false] = ACTIONS(2099), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2099), + [sym_super] = ACTIONS(2099), + [sym_crate] = ACTIONS(2099), + [sym_metavariable] = ACTIONS(2097), + [sym_raw_string_literal] = ACTIONS(2097), + [sym_float_literal] = ACTIONS(2097), [sym_block_comment] = ACTIONS(3), }, - [488] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [540] = { + [ts_builtin_sym_end] = ACTIONS(2101), + [sym_identifier] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_macro_rules_BANG] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_COLON_COLON] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2101), + [anon_sym_u8] = ACTIONS(2103), + [anon_sym_i8] = ACTIONS(2103), + [anon_sym_u16] = ACTIONS(2103), + [anon_sym_i16] = ACTIONS(2103), + [anon_sym_u32] = ACTIONS(2103), + [anon_sym_i32] = ACTIONS(2103), + [anon_sym_u64] = ACTIONS(2103), + [anon_sym_i64] = ACTIONS(2103), + [anon_sym_u128] = ACTIONS(2103), + [anon_sym_i128] = ACTIONS(2103), + [anon_sym_isize] = ACTIONS(2103), + [anon_sym_usize] = ACTIONS(2103), + [anon_sym_f32] = ACTIONS(2103), + [anon_sym_f64] = ACTIONS(2103), + [anon_sym_bool] = ACTIONS(2103), + [anon_sym_str] = ACTIONS(2103), + [anon_sym_char] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_impl] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_loop] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2103), + [anon_sym_mod] = ACTIONS(2103), + [anon_sym_pub] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_trait] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_unsafe] = ACTIONS(2103), + [anon_sym_use] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_extern] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_move] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2101), + [aux_sym_string_literal_token1] = ACTIONS(2101), + [sym_char_literal] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2103), + [anon_sym_false] = ACTIONS(2103), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_crate] = ACTIONS(2103), + [sym_metavariable] = ACTIONS(2101), + [sym_raw_string_literal] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2101), [sym_block_comment] = ACTIONS(3), }, - [489] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [490] = { - [sym_token_tree] = STATE(471), - [sym_token_repetition] = STATE(471), - [sym__literal] = STATE(471), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(471), + [541] = { + [ts_builtin_sym_end] = ACTIONS(2105), [sym_identifier] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_macro_rules_BANG] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_COLON_COLON] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), [anon_sym_u8] = ACTIONS(2107), [anon_sym_i8] = ACTIONS(2107), [anon_sym_u16] = ACTIONS(2107), @@ -58065,9 +69977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2107), [anon_sym_char] = ACTIONS(2107), [anon_sym_SQUOTE] = ACTIONS(2107), - [anon_sym_as] = ACTIONS(2107), [anon_sym_async] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2107), [anon_sym_break] = ACTIONS(2107), [anon_sym_const] = ACTIONS(2107), [anon_sym_continue] = ACTIONS(2107), @@ -58090,407 +70000,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2107), [anon_sym_unsafe] = ACTIONS(2107), [anon_sym_use] = ACTIONS(2107), - [anon_sym_where] = ACTIONS(2107), [anon_sym_while] = ACTIONS(2107), - [sym_mutable_specifier] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym_yield] = ACTIONS(2107), + [anon_sym_move] = ACTIONS(2107), + [sym_integer_literal] = ACTIONS(2105), + [aux_sym_string_literal_token1] = ACTIONS(2105), + [sym_char_literal] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2107), [sym_super] = ACTIONS(2107), [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2109), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [491] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [492] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [493] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [494] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [495] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2105), + [sym_raw_string_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), [sym_block_comment] = ACTIONS(3), }, - [496] = { - [sym_token_tree] = STATE(492), - [sym_token_repetition] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(492), + [542] = { + [ts_builtin_sym_end] = ACTIONS(2109), [sym_identifier] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_macro_rules_BANG] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2109), [anon_sym_u8] = ACTIONS(2111), [anon_sym_i8] = ACTIONS(2111), [anon_sym_u16] = ACTIONS(2111), @@ -58509,9 +70054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2111), [anon_sym_char] = ACTIONS(2111), [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), [anon_sym_async] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2111), [anon_sym_break] = ACTIONS(2111), [anon_sym_const] = ACTIONS(2111), [anon_sym_continue] = ACTIONS(2111), @@ -58534,111 +70077,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2111), [anon_sym_unsafe] = ACTIONS(2111), [anon_sym_use] = ACTIONS(2111), - [anon_sym_where] = ACTIONS(2111), [anon_sym_while] = ACTIONS(2111), - [sym_mutable_specifier] = ACTIONS(2111), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_move] = ACTIONS(2111), + [sym_integer_literal] = ACTIONS(2109), + [aux_sym_string_literal_token1] = ACTIONS(2109), + [sym_char_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2111), [sym_super] = ACTIONS(2111), [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(2113), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym_token_tree] = STATE(287), - [sym_token_repetition] = STATE(287), - [sym__literal] = STATE(287), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_where] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [sym_mutable_specifier] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(2109), + [sym_raw_string_literal] = ACTIONS(2109), + [sym_float_literal] = ACTIONS(2109), [sym_block_comment] = ACTIONS(3), }, - [498] = { - [sym_token_tree] = STATE(489), - [sym_token_repetition] = STATE(489), - [sym__literal] = STATE(489), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(489), + [543] = { + [ts_builtin_sym_end] = ACTIONS(2113), [sym_identifier] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2029), - [sym_non_special_punctuation] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_macro_rules_BANG] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_STAR] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_COLON_COLON] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2113), [anon_sym_u8] = ACTIONS(2115), [anon_sym_i8] = ACTIONS(2115), [anon_sym_u16] = ACTIONS(2115), @@ -58657,9 +70131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2115), [anon_sym_char] = ACTIONS(2115), [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), [anon_sym_async] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2115), [anon_sym_break] = ACTIONS(2115), [anon_sym_const] = ACTIONS(2115), [anon_sym_continue] = ACTIONS(2115), @@ -58682,968 +70154,658 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2115), [anon_sym_unsafe] = ACTIONS(2115), [anon_sym_use] = ACTIONS(2115), - [anon_sym_where] = ACTIONS(2115), [anon_sym_while] = ACTIONS(2115), - [sym_mutable_specifier] = ACTIONS(2115), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(2115), + [anon_sym_yield] = ACTIONS(2115), + [anon_sym_move] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2113), + [aux_sym_string_literal_token1] = ACTIONS(2113), + [sym_char_literal] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2115), [sym_super] = ACTIONS(2115), [sym_crate] = ACTIONS(2115), - [sym_metavariable] = ACTIONS(2117), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), - [sym_block_comment] = ACTIONS(3), - }, - [499] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2261), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_pattern] = STATE(2261), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [500] = { - [sym_attribute_item] = STATE(592), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_macro_invocation] = STATE(2261), - [sym_scoped_identifier] = STATE(1472), - [sym_scoped_type_identifier] = STATE(1899), - [sym_match_pattern] = STATE(2260), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [501] = { - [sym_attribute_item] = STATE(510), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(683), - [sym__type] = STATE(1720), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(510), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [502] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [503] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(2113), + [sym_raw_string_literal] = ACTIONS(2113), + [sym_float_literal] = ACTIONS(2113), [sym_block_comment] = ACTIONS(3), }, - [504] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [544] = { + [ts_builtin_sym_end] = ACTIONS(2117), [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(2117), + [anon_sym_macro_rules_BANG] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2117), + [anon_sym_PIPE] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2117), + [anon_sym_COLON_COLON] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(2117), + [anon_sym_u8] = ACTIONS(2119), + [anon_sym_i8] = ACTIONS(2119), + [anon_sym_u16] = ACTIONS(2119), + [anon_sym_i16] = ACTIONS(2119), + [anon_sym_u32] = ACTIONS(2119), + [anon_sym_i32] = ACTIONS(2119), + [anon_sym_u64] = ACTIONS(2119), + [anon_sym_i64] = ACTIONS(2119), + [anon_sym_u128] = ACTIONS(2119), + [anon_sym_i128] = ACTIONS(2119), + [anon_sym_isize] = ACTIONS(2119), + [anon_sym_usize] = ACTIONS(2119), + [anon_sym_f32] = ACTIONS(2119), + [anon_sym_f64] = ACTIONS(2119), + [anon_sym_bool] = ACTIONS(2119), + [anon_sym_str] = ACTIONS(2119), + [anon_sym_char] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_impl] = ACTIONS(2119), + [anon_sym_let] = ACTIONS(2119), + [anon_sym_loop] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_mod] = ACTIONS(2119), + [anon_sym_pub] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_trait] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_use] = ACTIONS(2119), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2119), + [anon_sym_move] = ACTIONS(2119), + [sym_integer_literal] = ACTIONS(2117), + [aux_sym_string_literal_token1] = ACTIONS(2117), + [sym_char_literal] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2119), + [sym_super] = ACTIONS(2119), + [sym_crate] = ACTIONS(2119), + [sym_metavariable] = ACTIONS(2117), + [sym_raw_string_literal] = ACTIONS(2117), + [sym_float_literal] = ACTIONS(2117), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [545] = { + [ts_builtin_sym_end] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_macro_rules_BANG] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_PIPE] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_COLON_COLON] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2121), + [anon_sym_u8] = ACTIONS(2123), + [anon_sym_i8] = ACTIONS(2123), + [anon_sym_u16] = ACTIONS(2123), + [anon_sym_i16] = ACTIONS(2123), + [anon_sym_u32] = ACTIONS(2123), + [anon_sym_i32] = ACTIONS(2123), + [anon_sym_u64] = ACTIONS(2123), + [anon_sym_i64] = ACTIONS(2123), + [anon_sym_u128] = ACTIONS(2123), + [anon_sym_i128] = ACTIONS(2123), + [anon_sym_isize] = ACTIONS(2123), + [anon_sym_usize] = ACTIONS(2123), + [anon_sym_f32] = ACTIONS(2123), + [anon_sym_f64] = ACTIONS(2123), + [anon_sym_bool] = ACTIONS(2123), + [anon_sym_str] = ACTIONS(2123), + [anon_sym_char] = ACTIONS(2123), [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [anon_sym_async] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_impl] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(2123), + [anon_sym_loop] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_mod] = ACTIONS(2123), + [anon_sym_pub] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_static] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_trait] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [anon_sym_unsafe] = ACTIONS(2123), + [anon_sym_use] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_yield] = ACTIONS(2123), + [anon_sym_move] = ACTIONS(2123), + [sym_integer_literal] = ACTIONS(2121), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2123), + [sym_super] = ACTIONS(2123), + [sym_crate] = ACTIONS(2123), + [sym_metavariable] = ACTIONS(2121), + [sym_raw_string_literal] = ACTIONS(2121), + [sym_float_literal] = ACTIONS(2121), [sym_block_comment] = ACTIONS(3), }, - [506] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [546] = { + [ts_builtin_sym_end] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_macro_rules_BANG] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_COLON_COLON] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2127), + [anon_sym_i8] = ACTIONS(2127), + [anon_sym_u16] = ACTIONS(2127), + [anon_sym_i16] = ACTIONS(2127), + [anon_sym_u32] = ACTIONS(2127), + [anon_sym_i32] = ACTIONS(2127), + [anon_sym_u64] = ACTIONS(2127), + [anon_sym_i64] = ACTIONS(2127), + [anon_sym_u128] = ACTIONS(2127), + [anon_sym_i128] = ACTIONS(2127), + [anon_sym_isize] = ACTIONS(2127), + [anon_sym_usize] = ACTIONS(2127), + [anon_sym_f32] = ACTIONS(2127), + [anon_sym_f64] = ACTIONS(2127), + [anon_sym_bool] = ACTIONS(2127), + [anon_sym_str] = ACTIONS(2127), + [anon_sym_char] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_async] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_fn] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_impl] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_loop] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_mod] = ACTIONS(2127), + [anon_sym_pub] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_static] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_trait] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [anon_sym_unsafe] = ACTIONS(2127), + [anon_sym_use] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2127), + [anon_sym_yield] = ACTIONS(2127), + [anon_sym_move] = ACTIONS(2127), + [sym_integer_literal] = ACTIONS(2125), + [aux_sym_string_literal_token1] = ACTIONS(2125), + [sym_char_literal] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2127), + [sym_super] = ACTIONS(2127), + [sym_crate] = ACTIONS(2127), + [sym_metavariable] = ACTIONS(2125), + [sym_raw_string_literal] = ACTIONS(2125), + [sym_float_literal] = ACTIONS(2125), [sym_block_comment] = ACTIONS(3), }, - [507] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [547] = { + [ts_builtin_sym_end] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_macro_rules_BANG] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_DOT_DOT] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2129), + [anon_sym_u8] = ACTIONS(2131), + [anon_sym_i8] = ACTIONS(2131), + [anon_sym_u16] = ACTIONS(2131), + [anon_sym_i16] = ACTIONS(2131), + [anon_sym_u32] = ACTIONS(2131), + [anon_sym_i32] = ACTIONS(2131), + [anon_sym_u64] = ACTIONS(2131), + [anon_sym_i64] = ACTIONS(2131), + [anon_sym_u128] = ACTIONS(2131), + [anon_sym_i128] = ACTIONS(2131), + [anon_sym_isize] = ACTIONS(2131), + [anon_sym_usize] = ACTIONS(2131), + [anon_sym_f32] = ACTIONS(2131), + [anon_sym_f64] = ACTIONS(2131), + [anon_sym_bool] = ACTIONS(2131), + [anon_sym_str] = ACTIONS(2131), + [anon_sym_char] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_fn] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_impl] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_mod] = ACTIONS(2131), + [anon_sym_pub] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_static] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_trait] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2131), + [anon_sym_unsafe] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_yield] = ACTIONS(2131), + [anon_sym_move] = ACTIONS(2131), + [sym_integer_literal] = ACTIONS(2129), + [aux_sym_string_literal_token1] = ACTIONS(2129), + [sym_char_literal] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2131), + [sym_super] = ACTIONS(2131), [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2129), + [sym_float_literal] = ACTIONS(2129), [sym_block_comment] = ACTIONS(3), }, - [508] = { - [sym_attribute_item] = STATE(511), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(511), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [548] = { + [ts_builtin_sym_end] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_macro_rules_BANG] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_u8] = ACTIONS(2135), + [anon_sym_i8] = ACTIONS(2135), + [anon_sym_u16] = ACTIONS(2135), + [anon_sym_i16] = ACTIONS(2135), + [anon_sym_u32] = ACTIONS(2135), + [anon_sym_i32] = ACTIONS(2135), + [anon_sym_u64] = ACTIONS(2135), + [anon_sym_i64] = ACTIONS(2135), + [anon_sym_u128] = ACTIONS(2135), + [anon_sym_i128] = ACTIONS(2135), + [anon_sym_isize] = ACTIONS(2135), + [anon_sym_usize] = ACTIONS(2135), + [anon_sym_f32] = ACTIONS(2135), + [anon_sym_f64] = ACTIONS(2135), + [anon_sym_bool] = ACTIONS(2135), + [anon_sym_str] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_fn] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_impl] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_mod] = ACTIONS(2135), + [anon_sym_pub] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_trait] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_yield] = ACTIONS(2135), + [anon_sym_move] = ACTIONS(2135), + [sym_integer_literal] = ACTIONS(2133), + [aux_sym_string_literal_token1] = ACTIONS(2133), + [sym_char_literal] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2135), + [sym_super] = ACTIONS(2135), + [sym_crate] = ACTIONS(2135), + [sym_metavariable] = ACTIONS(2133), + [sym_raw_string_literal] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), [sym_block_comment] = ACTIONS(3), }, - [509] = { - [sym_identifier] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_RBRACK] = ACTIONS(2147), - [anon_sym_COLON] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2145), - [sym_non_special_punctuation] = ACTIONS(2145), - [anon_sym_u8] = ACTIONS(2145), - [anon_sym_i8] = ACTIONS(2145), - [anon_sym_u16] = ACTIONS(2145), - [anon_sym_i16] = ACTIONS(2145), - [anon_sym_u32] = ACTIONS(2145), - [anon_sym_i32] = ACTIONS(2145), - [anon_sym_u64] = ACTIONS(2145), - [anon_sym_i64] = ACTIONS(2145), - [anon_sym_u128] = ACTIONS(2145), - [anon_sym_i128] = ACTIONS(2145), - [anon_sym_isize] = ACTIONS(2145), - [anon_sym_usize] = ACTIONS(2145), - [anon_sym_f32] = ACTIONS(2145), - [anon_sym_f64] = ACTIONS(2145), - [anon_sym_bool] = ACTIONS(2145), - [anon_sym_str] = ACTIONS(2145), - [anon_sym_char] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_fn] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_impl] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_loop] = ACTIONS(2145), - [anon_sym_match] = ACTIONS(2145), - [anon_sym_mod] = ACTIONS(2145), - [anon_sym_pub] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_unsafe] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_where] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [sym_mutable_specifier] = ACTIONS(2145), - [sym_integer_literal] = ACTIONS(2147), - [aux_sym_string_literal_token1] = ACTIONS(2147), - [sym_char_literal] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_crate] = ACTIONS(2145), - [sym_metavariable] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2147), - [sym_float_literal] = ACTIONS(2147), + [549] = { + [ts_builtin_sym_end] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_macro_rules_BANG] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2137), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_extern] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_move] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2137), + [aux_sym_string_literal_token1] = ACTIONS(2137), + [sym_char_literal] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2137), + [sym_raw_string_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), [sym_block_comment] = ACTIONS(3), }, - [510] = { - [sym_attribute_item] = STATE(1077), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(614), - [sym__type] = STATE(1748), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(1077), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [550] = { + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2141), + [anon_sym_macro_rules_BANG] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_DOT_DOT] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2141), + [anon_sym_u8] = ACTIONS(2143), + [anon_sym_i8] = ACTIONS(2143), + [anon_sym_u16] = ACTIONS(2143), + [anon_sym_i16] = ACTIONS(2143), + [anon_sym_u32] = ACTIONS(2143), + [anon_sym_i32] = ACTIONS(2143), + [anon_sym_u64] = ACTIONS(2143), + [anon_sym_i64] = ACTIONS(2143), + [anon_sym_u128] = ACTIONS(2143), + [anon_sym_i128] = ACTIONS(2143), + [anon_sym_isize] = ACTIONS(2143), + [anon_sym_usize] = ACTIONS(2143), + [anon_sym_f32] = ACTIONS(2143), + [anon_sym_f64] = ACTIONS(2143), + [anon_sym_bool] = ACTIONS(2143), + [anon_sym_str] = ACTIONS(2143), + [anon_sym_char] = ACTIONS(2143), + [anon_sym_SQUOTE] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_impl] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2143), + [anon_sym_loop] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_mod] = ACTIONS(2143), + [anon_sym_pub] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_static] = ACTIONS(2143), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_trait] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_use] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_extern] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_move] = ACTIONS(2143), + [sym_integer_literal] = ACTIONS(2141), + [aux_sym_string_literal_token1] = ACTIONS(2141), + [sym_char_literal] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2143), + [sym_super] = ACTIONS(2143), + [sym_crate] = ACTIONS(2143), + [sym_metavariable] = ACTIONS(2141), + [sym_raw_string_literal] = ACTIONS(2141), + [sym_float_literal] = ACTIONS(2141), [sym_block_comment] = ACTIONS(3), }, - [511] = { - [sym_attribute_item] = STATE(1077), - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym_visibility_modifier] = STATE(689), - [sym__type] = STATE(1902), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_enum_variant_list_repeat1] = STATE(1077), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(894), + [551] = { + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_macro_rules_BANG] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_COLON_COLON] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2145), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_move] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2145), + [aux_sym_string_literal_token1] = ACTIONS(2145), + [sym_char_literal] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2147), + [anon_sym_false] = ACTIONS(2147), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_metavariable] = ACTIONS(2145), + [sym_raw_string_literal] = ACTIONS(2145), + [sym_float_literal] = ACTIONS(2145), [sym_block_comment] = ACTIONS(3), }, - [512] = { + [552] = { + [ts_builtin_sym_end] = ACTIONS(2149), [sym_identifier] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_RBRACK] = ACTIONS(2153), - [anon_sym_DOLLAR] = ACTIONS(2151), - [sym_non_special_punctuation] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_macro_rules_BANG] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2149), + [anon_sym_COLON_COLON] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2149), [anon_sym_u8] = ACTIONS(2151), [anon_sym_i8] = ACTIONS(2151), [anon_sym_u16] = ACTIONS(2151), @@ -59662,9 +70824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2151), [anon_sym_char] = ACTIONS(2151), [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), [anon_sym_async] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), [anon_sym_break] = ACTIONS(2151), [anon_sym_const] = ACTIONS(2151), [anon_sym_continue] = ACTIONS(2151), @@ -59687,33 +70847,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2151), [anon_sym_unsafe] = ACTIONS(2151), [anon_sym_use] = ACTIONS(2151), - [anon_sym_where] = ACTIONS(2151), [anon_sym_while] = ACTIONS(2151), - [sym_mutable_specifier] = ACTIONS(2151), - [sym_integer_literal] = ACTIONS(2153), - [aux_sym_string_literal_token1] = ACTIONS(2153), - [sym_char_literal] = ACTIONS(2153), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_move] = ACTIONS(2151), + [sym_integer_literal] = ACTIONS(2149), + [aux_sym_string_literal_token1] = ACTIONS(2149), + [sym_char_literal] = ACTIONS(2149), [anon_sym_true] = ACTIONS(2151), [anon_sym_false] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2151), [sym_super] = ACTIONS(2151), [sym_crate] = ACTIONS(2151), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), + [sym_metavariable] = ACTIONS(2149), + [sym_raw_string_literal] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2149), [sym_block_comment] = ACTIONS(3), }, - [513] = { + [553] = { + [ts_builtin_sym_end] = ACTIONS(2153), [sym_identifier] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_RBRACK] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2155), - [sym_non_special_punctuation] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2153), + [anon_sym_macro_rules_BANG] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_DOT_DOT] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2153), [anon_sym_u8] = ACTIONS(2155), [anon_sym_i8] = ACTIONS(2155), [anon_sym_u16] = ACTIONS(2155), @@ -59732,9 +70901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2155), [anon_sym_char] = ACTIONS(2155), [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), [anon_sym_async] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2155), [anon_sym_break] = ACTIONS(2155), [anon_sym_const] = ACTIONS(2155), [anon_sym_continue] = ACTIONS(2155), @@ -59757,33 +70924,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2155), [anon_sym_unsafe] = ACTIONS(2155), [anon_sym_use] = ACTIONS(2155), - [anon_sym_where] = ACTIONS(2155), [anon_sym_while] = ACTIONS(2155), - [sym_mutable_specifier] = ACTIONS(2155), - [sym_integer_literal] = ACTIONS(2157), - [aux_sym_string_literal_token1] = ACTIONS(2157), - [sym_char_literal] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_move] = ACTIONS(2155), + [sym_integer_literal] = ACTIONS(2153), + [aux_sym_string_literal_token1] = ACTIONS(2153), + [sym_char_literal] = ACTIONS(2153), [anon_sym_true] = ACTIONS(2155), [anon_sym_false] = ACTIONS(2155), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2155), [sym_super] = ACTIONS(2155), [sym_crate] = ACTIONS(2155), - [sym_metavariable] = ACTIONS(2157), - [sym_raw_string_literal] = ACTIONS(2157), - [sym_float_literal] = ACTIONS(2157), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2153), + [sym_float_literal] = ACTIONS(2153), [sym_block_comment] = ACTIONS(3), }, - [514] = { + [554] = { + [ts_builtin_sym_end] = ACTIONS(2157), [sym_identifier] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_RPAREN] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2159), - [sym_non_special_punctuation] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_macro_rules_BANG] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_COLON_COLON] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2157), [anon_sym_u8] = ACTIONS(2159), [anon_sym_i8] = ACTIONS(2159), [anon_sym_u16] = ACTIONS(2159), @@ -59802,9 +70978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2159), [anon_sym_char] = ACTIONS(2159), [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), [anon_sym_async] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), [anon_sym_break] = ACTIONS(2159), [anon_sym_const] = ACTIONS(2159), [anon_sym_continue] = ACTIONS(2159), @@ -59827,663 +71001,658 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2159), [anon_sym_unsafe] = ACTIONS(2159), [anon_sym_use] = ACTIONS(2159), - [anon_sym_where] = ACTIONS(2159), [anon_sym_while] = ACTIONS(2159), - [sym_mutable_specifier] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(2161), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_move] = ACTIONS(2159), + [sym_integer_literal] = ACTIONS(2157), + [aux_sym_string_literal_token1] = ACTIONS(2157), + [sym_char_literal] = ACTIONS(2157), [anon_sym_true] = ACTIONS(2159), [anon_sym_false] = ACTIONS(2159), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2159), [sym_super] = ACTIONS(2159), [sym_crate] = ACTIONS(2159), - [sym_metavariable] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2161), - [sym_float_literal] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2157), + [sym_raw_string_literal] = ACTIONS(2157), + [sym_float_literal] = ACTIONS(2157), [sym_block_comment] = ACTIONS(3), }, - [515] = { - [sym_function_modifiers] = STATE(2308), - [sym_const_parameter] = STATE(1830), - [sym_constrained_type_parameter] = STATE(1728), - [sym_optional_type_parameter] = STATE(1830), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1943), - [sym_bracketed_type] = STATE(2289), - [sym_qualified_type] = STATE(2357), - [sym_lifetime] = STATE(1596), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), + [555] = { + [ts_builtin_sym_end] = ACTIONS(2161), [sym_identifier] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_macro_rules_BANG] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2161), + [anon_sym_COLON_COLON] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2161), + [anon_sym_u8] = ACTIONS(2163), + [anon_sym_i8] = ACTIONS(2163), + [anon_sym_u16] = ACTIONS(2163), + [anon_sym_i16] = ACTIONS(2163), + [anon_sym_u32] = ACTIONS(2163), + [anon_sym_i32] = ACTIONS(2163), + [anon_sym_u64] = ACTIONS(2163), + [anon_sym_i64] = ACTIONS(2163), + [anon_sym_u128] = ACTIONS(2163), + [anon_sym_i128] = ACTIONS(2163), + [anon_sym_isize] = ACTIONS(2163), + [anon_sym_usize] = ACTIONS(2163), + [anon_sym_f32] = ACTIONS(2163), + [anon_sym_f64] = ACTIONS(2163), + [anon_sym_bool] = ACTIONS(2163), + [anon_sym_str] = ACTIONS(2163), + [anon_sym_char] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_impl] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_loop] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_mod] = ACTIONS(2163), + [anon_sym_pub] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_trait] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_use] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_move] = ACTIONS(2163), + [sym_integer_literal] = ACTIONS(2161), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(2167), - [sym_block_comment] = ACTIONS(3), - }, - [516] = { - [sym_identifier] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_RBRACK] = ACTIONS(2171), - [anon_sym_DOLLAR] = ACTIONS(2169), - [sym_non_special_punctuation] = ACTIONS(2169), - [anon_sym_u8] = ACTIONS(2169), - [anon_sym_i8] = ACTIONS(2169), - [anon_sym_u16] = ACTIONS(2169), - [anon_sym_i16] = ACTIONS(2169), - [anon_sym_u32] = ACTIONS(2169), - [anon_sym_i32] = ACTIONS(2169), - [anon_sym_u64] = ACTIONS(2169), - [anon_sym_i64] = ACTIONS(2169), - [anon_sym_u128] = ACTIONS(2169), - [anon_sym_i128] = ACTIONS(2169), - [anon_sym_isize] = ACTIONS(2169), - [anon_sym_usize] = ACTIONS(2169), - [anon_sym_f32] = ACTIONS(2169), - [anon_sym_f64] = ACTIONS(2169), - [anon_sym_bool] = ACTIONS(2169), - [anon_sym_str] = ACTIONS(2169), - [anon_sym_char] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2169), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_async] = ACTIONS(2169), - [anon_sym_await] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_fn] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_impl] = ACTIONS(2169), - [anon_sym_let] = ACTIONS(2169), - [anon_sym_loop] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_mod] = ACTIONS(2169), - [anon_sym_pub] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_trait] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_unsafe] = ACTIONS(2169), - [anon_sym_use] = ACTIONS(2169), - [anon_sym_where] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [sym_mutable_specifier] = ACTIONS(2169), - [sym_integer_literal] = ACTIONS(2171), - [aux_sym_string_literal_token1] = ACTIONS(2171), - [sym_char_literal] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2169), - [sym_super] = ACTIONS(2169), - [sym_crate] = ACTIONS(2169), - [sym_metavariable] = ACTIONS(2171), - [sym_raw_string_literal] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2171), + [sym_self] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_crate] = ACTIONS(2163), + [sym_metavariable] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2161), + [sym_float_literal] = ACTIONS(2161), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_identifier] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(427), - [anon_sym_RBRACK] = ACTIONS(427), - [anon_sym_DOLLAR] = ACTIONS(429), - [sym_non_special_punctuation] = ACTIONS(429), - [anon_sym_u8] = ACTIONS(429), - [anon_sym_i8] = ACTIONS(429), - [anon_sym_u16] = ACTIONS(429), - [anon_sym_i16] = ACTIONS(429), - [anon_sym_u32] = ACTIONS(429), - [anon_sym_i32] = ACTIONS(429), - [anon_sym_u64] = ACTIONS(429), - [anon_sym_i64] = ACTIONS(429), - [anon_sym_u128] = ACTIONS(429), - [anon_sym_i128] = ACTIONS(429), - [anon_sym_isize] = ACTIONS(429), - [anon_sym_usize] = ACTIONS(429), - [anon_sym_f32] = ACTIONS(429), - [anon_sym_f64] = ACTIONS(429), - [anon_sym_bool] = ACTIONS(429), - [anon_sym_str] = ACTIONS(429), - [anon_sym_char] = ACTIONS(429), - [anon_sym_SQUOTE] = ACTIONS(429), - [anon_sym_as] = ACTIONS(429), - [anon_sym_async] = ACTIONS(429), - [anon_sym_await] = ACTIONS(429), - [anon_sym_break] = ACTIONS(429), - [anon_sym_const] = ACTIONS(429), - [anon_sym_continue] = ACTIONS(429), - [anon_sym_default] = ACTIONS(429), - [anon_sym_enum] = ACTIONS(429), - [anon_sym_fn] = ACTIONS(429), - [anon_sym_for] = ACTIONS(429), - [anon_sym_if] = ACTIONS(429), - [anon_sym_impl] = ACTIONS(429), - [anon_sym_let] = ACTIONS(429), - [anon_sym_loop] = ACTIONS(429), - [anon_sym_match] = ACTIONS(429), - [anon_sym_mod] = ACTIONS(429), - [anon_sym_pub] = ACTIONS(429), - [anon_sym_return] = ACTIONS(429), - [anon_sym_static] = ACTIONS(429), - [anon_sym_struct] = ACTIONS(429), - [anon_sym_trait] = ACTIONS(429), - [anon_sym_type] = ACTIONS(429), - [anon_sym_union] = ACTIONS(429), - [anon_sym_unsafe] = ACTIONS(429), - [anon_sym_use] = ACTIONS(429), - [anon_sym_where] = ACTIONS(429), - [anon_sym_while] = ACTIONS(429), - [sym_mutable_specifier] = ACTIONS(429), - [sym_integer_literal] = ACTIONS(427), - [aux_sym_string_literal_token1] = ACTIONS(427), - [sym_char_literal] = ACTIONS(427), - [anon_sym_true] = ACTIONS(429), - [anon_sym_false] = ACTIONS(429), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_crate] = ACTIONS(429), - [sym_metavariable] = ACTIONS(427), - [sym_raw_string_literal] = ACTIONS(427), - [sym_float_literal] = ACTIONS(427), + [556] = { + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_macro_rules_BANG] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_PIPE] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_COLON_COLON] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2165), + [anon_sym_u8] = ACTIONS(2167), + [anon_sym_i8] = ACTIONS(2167), + [anon_sym_u16] = ACTIONS(2167), + [anon_sym_i16] = ACTIONS(2167), + [anon_sym_u32] = ACTIONS(2167), + [anon_sym_i32] = ACTIONS(2167), + [anon_sym_u64] = ACTIONS(2167), + [anon_sym_i64] = ACTIONS(2167), + [anon_sym_u128] = ACTIONS(2167), + [anon_sym_i128] = ACTIONS(2167), + [anon_sym_isize] = ACTIONS(2167), + [anon_sym_usize] = ACTIONS(2167), + [anon_sym_f32] = ACTIONS(2167), + [anon_sym_f64] = ACTIONS(2167), + [anon_sym_bool] = ACTIONS(2167), + [anon_sym_str] = ACTIONS(2167), + [anon_sym_char] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_impl] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_mod] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_trait] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_move] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2165), + [aux_sym_string_literal_token1] = ACTIONS(2165), + [sym_char_literal] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2165), + [sym_float_literal] = ACTIONS(2165), [sym_block_comment] = ACTIONS(3), }, - [518] = { - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2173), - [sym_non_special_punctuation] = ACTIONS(2173), - [anon_sym_u8] = ACTIONS(2173), - [anon_sym_i8] = ACTIONS(2173), - [anon_sym_u16] = ACTIONS(2173), - [anon_sym_i16] = ACTIONS(2173), - [anon_sym_u32] = ACTIONS(2173), - [anon_sym_i32] = ACTIONS(2173), - [anon_sym_u64] = ACTIONS(2173), - [anon_sym_i64] = ACTIONS(2173), - [anon_sym_u128] = ACTIONS(2173), - [anon_sym_i128] = ACTIONS(2173), - [anon_sym_isize] = ACTIONS(2173), - [anon_sym_usize] = ACTIONS(2173), - [anon_sym_f32] = ACTIONS(2173), - [anon_sym_f64] = ACTIONS(2173), - [anon_sym_bool] = ACTIONS(2173), - [anon_sym_str] = ACTIONS(2173), - [anon_sym_char] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_impl] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_mod] = ACTIONS(2173), - [anon_sym_pub] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_where] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [sym_mutable_specifier] = ACTIONS(2173), - [sym_integer_literal] = ACTIONS(2175), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_crate] = ACTIONS(2173), - [sym_metavariable] = ACTIONS(2175), - [sym_raw_string_literal] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2175), + [557] = { + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_macro_rules_BANG] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_COLON_COLON] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2169), + [anon_sym_u8] = ACTIONS(2171), + [anon_sym_i8] = ACTIONS(2171), + [anon_sym_u16] = ACTIONS(2171), + [anon_sym_i16] = ACTIONS(2171), + [anon_sym_u32] = ACTIONS(2171), + [anon_sym_i32] = ACTIONS(2171), + [anon_sym_u64] = ACTIONS(2171), + [anon_sym_i64] = ACTIONS(2171), + [anon_sym_u128] = ACTIONS(2171), + [anon_sym_i128] = ACTIONS(2171), + [anon_sym_isize] = ACTIONS(2171), + [anon_sym_usize] = ACTIONS(2171), + [anon_sym_f32] = ACTIONS(2171), + [anon_sym_f64] = ACTIONS(2171), + [anon_sym_bool] = ACTIONS(2171), + [anon_sym_str] = ACTIONS(2171), + [anon_sym_char] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_async] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(2171), + [anon_sym_let] = ACTIONS(2171), + [anon_sym_loop] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_mod] = ACTIONS(2171), + [anon_sym_pub] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_trait] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_use] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_extern] = ACTIONS(2171), + [anon_sym_yield] = ACTIONS(2171), + [anon_sym_move] = ACTIONS(2171), + [sym_integer_literal] = ACTIONS(2169), + [aux_sym_string_literal_token1] = ACTIONS(2169), + [sym_char_literal] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2171), + [anon_sym_false] = ACTIONS(2171), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2171), + [sym_super] = ACTIONS(2171), + [sym_crate] = ACTIONS(2171), + [sym_metavariable] = ACTIONS(2169), + [sym_raw_string_literal] = ACTIONS(2169), + [sym_float_literal] = ACTIONS(2169), [sym_block_comment] = ACTIONS(3), }, - [519] = { - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_RBRACK] = ACTIONS(2179), - [anon_sym_DOLLAR] = ACTIONS(2177), - [sym_non_special_punctuation] = ACTIONS(2177), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2179), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_metavariable] = ACTIONS(2179), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [558] = { + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_macro_rules_BANG] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_COLON_COLON] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2173), + [anon_sym_u8] = ACTIONS(2175), + [anon_sym_i8] = ACTIONS(2175), + [anon_sym_u16] = ACTIONS(2175), + [anon_sym_i16] = ACTIONS(2175), + [anon_sym_u32] = ACTIONS(2175), + [anon_sym_i32] = ACTIONS(2175), + [anon_sym_u64] = ACTIONS(2175), + [anon_sym_i64] = ACTIONS(2175), + [anon_sym_u128] = ACTIONS(2175), + [anon_sym_i128] = ACTIONS(2175), + [anon_sym_isize] = ACTIONS(2175), + [anon_sym_usize] = ACTIONS(2175), + [anon_sym_f32] = ACTIONS(2175), + [anon_sym_f64] = ACTIONS(2175), + [anon_sym_bool] = ACTIONS(2175), + [anon_sym_str] = ACTIONS(2175), + [anon_sym_char] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_impl] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_mod] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_move] = ACTIONS(2175), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2173), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2175), + [anon_sym_false] = ACTIONS(2175), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_crate] = ACTIONS(2175), + [sym_metavariable] = ACTIONS(2173), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [520] = { - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2181), - [sym_non_special_punctuation] = ACTIONS(2181), - [anon_sym_u8] = ACTIONS(2181), - [anon_sym_i8] = ACTIONS(2181), - [anon_sym_u16] = ACTIONS(2181), - [anon_sym_i16] = ACTIONS(2181), - [anon_sym_u32] = ACTIONS(2181), - [anon_sym_i32] = ACTIONS(2181), - [anon_sym_u64] = ACTIONS(2181), - [anon_sym_i64] = ACTIONS(2181), - [anon_sym_u128] = ACTIONS(2181), - [anon_sym_i128] = ACTIONS(2181), - [anon_sym_isize] = ACTIONS(2181), - [anon_sym_usize] = ACTIONS(2181), - [anon_sym_f32] = ACTIONS(2181), - [anon_sym_f64] = ACTIONS(2181), - [anon_sym_bool] = ACTIONS(2181), - [anon_sym_str] = ACTIONS(2181), - [anon_sym_char] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2183), - [aux_sym_string_literal_token1] = ACTIONS(2183), - [sym_char_literal] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2183), - [sym_raw_string_literal] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2183), + [559] = { + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_macro_rules_BANG] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_COLON_COLON] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2177), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_extern] = ACTIONS(2179), + [anon_sym_yield] = ACTIONS(2179), + [anon_sym_move] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2177), + [aux_sym_string_literal_token1] = ACTIONS(2177), + [sym_char_literal] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2179), + [anon_sym_false] = ACTIONS(2179), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_metavariable] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2177), + [sym_float_literal] = ACTIONS(2177), [sym_block_comment] = ACTIONS(3), }, - [521] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1750), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2187), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [560] = { + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_macro_rules_BANG] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_u8] = ACTIONS(2183), + [anon_sym_i8] = ACTIONS(2183), + [anon_sym_u16] = ACTIONS(2183), + [anon_sym_i16] = ACTIONS(2183), + [anon_sym_u32] = ACTIONS(2183), + [anon_sym_i32] = ACTIONS(2183), + [anon_sym_u64] = ACTIONS(2183), + [anon_sym_i64] = ACTIONS(2183), + [anon_sym_u128] = ACTIONS(2183), + [anon_sym_i128] = ACTIONS(2183), + [anon_sym_isize] = ACTIONS(2183), + [anon_sym_usize] = ACTIONS(2183), + [anon_sym_f32] = ACTIONS(2183), + [anon_sym_f64] = ACTIONS(2183), + [anon_sym_bool] = ACTIONS(2183), + [anon_sym_str] = ACTIONS(2183), + [anon_sym_char] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [anon_sym_fn] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_impl] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_mod] = ACTIONS(2183), + [anon_sym_pub] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2183), + [anon_sym_trait] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_union] = ACTIONS(2183), + [anon_sym_unsafe] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_move] = ACTIONS(2183), + [sym_integer_literal] = ACTIONS(2181), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_crate] = ACTIONS(2183), + [sym_metavariable] = ACTIONS(2181), + [sym_raw_string_literal] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), [sym_block_comment] = ACTIONS(3), }, - [522] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_RBRACK] = ACTIONS(810), - [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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [561] = { + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_macro_rules_BANG] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_COLON_COLON] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_u8] = ACTIONS(2187), + [anon_sym_i8] = ACTIONS(2187), + [anon_sym_u16] = ACTIONS(2187), + [anon_sym_i16] = ACTIONS(2187), + [anon_sym_u32] = ACTIONS(2187), + [anon_sym_i32] = ACTIONS(2187), + [anon_sym_u64] = ACTIONS(2187), + [anon_sym_i64] = ACTIONS(2187), + [anon_sym_u128] = ACTIONS(2187), + [anon_sym_i128] = ACTIONS(2187), + [anon_sym_isize] = ACTIONS(2187), + [anon_sym_usize] = ACTIONS(2187), + [anon_sym_f32] = ACTIONS(2187), + [anon_sym_f64] = ACTIONS(2187), + [anon_sym_bool] = ACTIONS(2187), + [anon_sym_str] = ACTIONS(2187), + [anon_sym_char] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_impl] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_mod] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_trait] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_move] = ACTIONS(2187), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2185), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2187), + [anon_sym_false] = ACTIONS(2187), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_crate] = ACTIONS(2187), + [sym_metavariable] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, - [523] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1786), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [562] = { + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_macro_rules_BANG] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2189), + [anon_sym_COLON_COLON] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u128] = ACTIONS(2191), + [anon_sym_i128] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_str] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_impl] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_loop] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_mod] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_trait] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_use] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_move] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2189), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_metavariable] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [524] = { + [563] = { + [ts_builtin_sym_end] = ACTIONS(2193), [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_RBRACK] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2195), - [sym_non_special_punctuation] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_macro_rules_BANG] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), [anon_sym_u8] = ACTIONS(2195), [anon_sym_i8] = ACTIONS(2195), [anon_sym_u16] = ACTIONS(2195), @@ -60502,9 +71671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2195), [anon_sym_char] = ACTIONS(2195), [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), [anon_sym_break] = ACTIONS(2195), [anon_sym_const] = ACTIONS(2195), [anon_sym_continue] = ACTIONS(2195), @@ -60527,33 +71694,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2195), [anon_sym_unsafe] = ACTIONS(2195), [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2197), - [aux_sym_string_literal_token1] = ACTIONS(2197), - [sym_char_literal] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2195), + [anon_sym_yield] = ACTIONS(2195), + [anon_sym_move] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2193), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2193), [anon_sym_true] = ACTIONS(2195), [anon_sym_false] = ACTIONS(2195), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2195), [sym_super] = ACTIONS(2195), [sym_crate] = ACTIONS(2195), - [sym_metavariable] = ACTIONS(2197), - [sym_raw_string_literal] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2193), + [sym_raw_string_literal] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), [sym_block_comment] = ACTIONS(3), }, - [525] = { + [564] = { + [ts_builtin_sym_end] = ACTIONS(2197), [sym_identifier] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2199), - [sym_non_special_punctuation] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_macro_rules_BANG] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_COLON_COLON] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2197), [anon_sym_u8] = ACTIONS(2199), [anon_sym_i8] = ACTIONS(2199), [anon_sym_u16] = ACTIONS(2199), @@ -60572,9 +71748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(2199), [anon_sym_char] = ACTIONS(2199), [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), [anon_sym_async] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), [anon_sym_break] = ACTIONS(2199), [anon_sym_const] = ACTIONS(2199), [anon_sym_continue] = ACTIONS(2199), @@ -60597,2116 +71771,1274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2199), [anon_sym_unsafe] = ACTIONS(2199), [anon_sym_use] = ACTIONS(2199), - [anon_sym_where] = ACTIONS(2199), [anon_sym_while] = ACTIONS(2199), - [sym_mutable_specifier] = ACTIONS(2199), - [sym_integer_literal] = ACTIONS(2201), - [aux_sym_string_literal_token1] = ACTIONS(2201), - [sym_char_literal] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2199), + [anon_sym_yield] = ACTIONS(2199), + [anon_sym_move] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2197), + [aux_sym_string_literal_token1] = ACTIONS(2197), + [sym_char_literal] = ACTIONS(2197), [anon_sym_true] = ACTIONS(2199), [anon_sym_false] = ACTIONS(2199), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2199), [sym_super] = ACTIONS(2199), [sym_crate] = ACTIONS(2199), - [sym_metavariable] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2201), - [sym_float_literal] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2197), + [sym_raw_string_literal] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), [sym_block_comment] = ACTIONS(3), }, - [526] = { - [sym_parameter] = STATE(1914), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1768), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_PIPE] = ACTIONS(2207), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [565] = { + [sym_attribute_item] = STATE(659), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(654), + [sym_last_match_arm] = STATE(2902), + [sym_match_pattern] = STATE(3048), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(659), + [aux_sym_match_block_repeat1] = STATE(654), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2209), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [sym_identifier] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_RBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2211), - [sym_non_special_punctuation] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2211), - [anon_sym_i8] = ACTIONS(2211), - [anon_sym_u16] = ACTIONS(2211), - [anon_sym_i16] = ACTIONS(2211), - [anon_sym_u32] = ACTIONS(2211), - [anon_sym_i32] = ACTIONS(2211), - [anon_sym_u64] = ACTIONS(2211), - [anon_sym_i64] = ACTIONS(2211), - [anon_sym_u128] = ACTIONS(2211), - [anon_sym_i128] = ACTIONS(2211), - [anon_sym_isize] = ACTIONS(2211), - [anon_sym_usize] = ACTIONS(2211), - [anon_sym_f32] = ACTIONS(2211), - [anon_sym_f64] = ACTIONS(2211), - [anon_sym_bool] = ACTIONS(2211), - [anon_sym_str] = ACTIONS(2211), - [anon_sym_char] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_impl] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_mod] = ACTIONS(2211), - [anon_sym_pub] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_trait] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_where] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [sym_mutable_specifier] = ACTIONS(2211), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2213), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2211), - [anon_sym_false] = ACTIONS(2211), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_crate] = ACTIONS(2211), - [sym_metavariable] = ACTIONS(2213), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [528] = { - [sym_identifier] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2217), - [anon_sym_RBRACK] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2215), - [sym_non_special_punctuation] = ACTIONS(2215), - [anon_sym_u8] = ACTIONS(2215), - [anon_sym_i8] = ACTIONS(2215), - [anon_sym_u16] = ACTIONS(2215), - [anon_sym_i16] = ACTIONS(2215), - [anon_sym_u32] = ACTIONS(2215), - [anon_sym_i32] = ACTIONS(2215), - [anon_sym_u64] = ACTIONS(2215), - [anon_sym_i64] = ACTIONS(2215), - [anon_sym_u128] = ACTIONS(2215), - [anon_sym_i128] = ACTIONS(2215), - [anon_sym_isize] = ACTIONS(2215), - [anon_sym_usize] = ACTIONS(2215), - [anon_sym_f32] = ACTIONS(2215), - [anon_sym_f64] = ACTIONS(2215), - [anon_sym_bool] = ACTIONS(2215), - [anon_sym_str] = ACTIONS(2215), - [anon_sym_char] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [anon_sym_fn] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_impl] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_mod] = ACTIONS(2215), - [anon_sym_pub] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_static] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2215), - [anon_sym_trait] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_union] = ACTIONS(2215), - [anon_sym_unsafe] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_where] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [sym_mutable_specifier] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2217), - [aux_sym_string_literal_token1] = ACTIONS(2217), - [sym_char_literal] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2215), - [anon_sym_false] = ACTIONS(2215), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_metavariable] = ACTIONS(2217), - [sym_raw_string_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_block_comment] = ACTIONS(3), - }, - [529] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_RBRACK] = ACTIONS(2221), - [anon_sym_DOLLAR] = ACTIONS(2219), - [sym_non_special_punctuation] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(2219), - [anon_sym_i8] = ACTIONS(2219), - [anon_sym_u16] = ACTIONS(2219), - [anon_sym_i16] = ACTIONS(2219), - [anon_sym_u32] = ACTIONS(2219), - [anon_sym_i32] = ACTIONS(2219), - [anon_sym_u64] = ACTIONS(2219), - [anon_sym_i64] = ACTIONS(2219), - [anon_sym_u128] = ACTIONS(2219), - [anon_sym_i128] = ACTIONS(2219), - [anon_sym_isize] = ACTIONS(2219), - [anon_sym_usize] = ACTIONS(2219), - [anon_sym_f32] = ACTIONS(2219), - [anon_sym_f64] = ACTIONS(2219), - [anon_sym_bool] = ACTIONS(2219), - [anon_sym_str] = ACTIONS(2219), - [anon_sym_char] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_async] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_default] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_impl] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_loop] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_mod] = ACTIONS(2219), - [anon_sym_pub] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_trait] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_union] = ACTIONS(2219), - [anon_sym_unsafe] = ACTIONS(2219), - [anon_sym_use] = ACTIONS(2219), - [anon_sym_where] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [sym_mutable_specifier] = ACTIONS(2219), - [sym_integer_literal] = ACTIONS(2221), - [aux_sym_string_literal_token1] = ACTIONS(2221), - [sym_char_literal] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2219), - [sym_super] = ACTIONS(2219), - [sym_crate] = ACTIONS(2219), - [sym_metavariable] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(2221), - [sym_float_literal] = ACTIONS(2221), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [sym_non_special_punctuation] = ACTIONS(2223), - [anon_sym_u8] = ACTIONS(2223), - [anon_sym_i8] = ACTIONS(2223), - [anon_sym_u16] = ACTIONS(2223), - [anon_sym_i16] = ACTIONS(2223), - [anon_sym_u32] = ACTIONS(2223), - [anon_sym_i32] = ACTIONS(2223), - [anon_sym_u64] = ACTIONS(2223), - [anon_sym_i64] = ACTIONS(2223), - [anon_sym_u128] = ACTIONS(2223), - [anon_sym_i128] = ACTIONS(2223), - [anon_sym_isize] = ACTIONS(2223), - [anon_sym_usize] = ACTIONS(2223), - [anon_sym_f32] = ACTIONS(2223), - [anon_sym_f64] = ACTIONS(2223), - [anon_sym_bool] = ACTIONS(2223), - [anon_sym_str] = ACTIONS(2223), - [anon_sym_char] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_fn] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_impl] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_loop] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_mod] = ACTIONS(2223), - [anon_sym_pub] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_trait] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_union] = ACTIONS(2223), - [anon_sym_unsafe] = ACTIONS(2223), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2225), - [aux_sym_string_literal_token1] = ACTIONS(2225), - [sym_char_literal] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(2223), - [anon_sym_false] = ACTIONS(2223), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_metavariable] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [sym_identifier] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(598), - [sym_non_special_punctuation] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_async] = ACTIONS(598), - [anon_sym_await] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_default] = ACTIONS(598), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_impl] = ACTIONS(598), - [anon_sym_let] = ACTIONS(598), - [anon_sym_loop] = ACTIONS(598), - [anon_sym_match] = ACTIONS(598), - [anon_sym_mod] = ACTIONS(598), - [anon_sym_pub] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_static] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(598), - [anon_sym_trait] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_union] = ACTIONS(598), - [anon_sym_unsafe] = ACTIONS(598), - [anon_sym_use] = ACTIONS(598), - [anon_sym_where] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [sym_mutable_specifier] = ACTIONS(598), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [532] = { - [sym_identifier] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_RBRACK] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2227), - [sym_non_special_punctuation] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u128] = ACTIONS(2227), - [anon_sym_i128] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_str] = ACTIONS(2227), - [anon_sym_char] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_fn] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_impl] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_loop] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2227), - [anon_sym_mod] = ACTIONS(2227), - [anon_sym_pub] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_trait] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_unsafe] = ACTIONS(2227), - [anon_sym_use] = ACTIONS(2227), - [anon_sym_where] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [sym_mutable_specifier] = ACTIONS(2227), - [sym_integer_literal] = ACTIONS(2229), - [aux_sym_string_literal_token1] = ACTIONS(2229), - [sym_char_literal] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2227), - [anon_sym_false] = ACTIONS(2227), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_crate] = ACTIONS(2227), - [sym_metavariable] = ACTIONS(2229), - [sym_raw_string_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2231), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [566] = { + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_macro_rules_BANG] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_COLON_COLON] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(2203), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_move] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2203), + [aux_sym_string_literal_token1] = ACTIONS(2203), + [sym_char_literal] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2203), + [sym_raw_string_literal] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2203), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [567] = { + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_macro_rules_BANG] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_COLON_COLON] = ACTIONS(2207), + [anon_sym_POUND] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2209), + [anon_sym_i8] = ACTIONS(2209), + [anon_sym_u16] = ACTIONS(2209), + [anon_sym_i16] = ACTIONS(2209), + [anon_sym_u32] = ACTIONS(2209), + [anon_sym_i32] = ACTIONS(2209), + [anon_sym_u64] = ACTIONS(2209), + [anon_sym_i64] = ACTIONS(2209), + [anon_sym_u128] = ACTIONS(2209), + [anon_sym_i128] = ACTIONS(2209), + [anon_sym_isize] = ACTIONS(2209), + [anon_sym_usize] = ACTIONS(2209), + [anon_sym_f32] = ACTIONS(2209), + [anon_sym_f64] = ACTIONS(2209), + [anon_sym_bool] = ACTIONS(2209), + [anon_sym_str] = ACTIONS(2209), + [anon_sym_char] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_impl] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_loop] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_mod] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_extern] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_move] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2207), + [aux_sym_string_literal_token1] = ACTIONS(2207), + [sym_char_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_metavariable] = ACTIONS(2207), + [sym_raw_string_literal] = ACTIONS(2207), + [sym_float_literal] = ACTIONS(2207), [sym_block_comment] = ACTIONS(3), }, - [535] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2235), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [568] = { + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_macro_rules_BANG] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_COLON_COLON] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2213), + [anon_sym_i8] = ACTIONS(2213), + [anon_sym_u16] = ACTIONS(2213), + [anon_sym_i16] = ACTIONS(2213), + [anon_sym_u32] = ACTIONS(2213), + [anon_sym_i32] = ACTIONS(2213), + [anon_sym_u64] = ACTIONS(2213), + [anon_sym_i64] = ACTIONS(2213), + [anon_sym_u128] = ACTIONS(2213), + [anon_sym_i128] = ACTIONS(2213), + [anon_sym_isize] = ACTIONS(2213), + [anon_sym_usize] = ACTIONS(2213), + [anon_sym_f32] = ACTIONS(2213), + [anon_sym_f64] = ACTIONS(2213), + [anon_sym_bool] = ACTIONS(2213), + [anon_sym_str] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_move] = ACTIONS(2213), + [sym_integer_literal] = ACTIONS(2211), + [aux_sym_string_literal_token1] = ACTIONS(2211), + [sym_char_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_metavariable] = ACTIONS(2211), + [sym_raw_string_literal] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2211), [sym_block_comment] = ACTIONS(3), }, - [536] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_RBRACK] = ACTIONS(2237), - [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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [569] = { + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_macro_rules_BANG] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_COLON_COLON] = ACTIONS(2215), + [anon_sym_POUND] = ACTIONS(2215), + [anon_sym_u8] = ACTIONS(2217), + [anon_sym_i8] = ACTIONS(2217), + [anon_sym_u16] = ACTIONS(2217), + [anon_sym_i16] = ACTIONS(2217), + [anon_sym_u32] = ACTIONS(2217), + [anon_sym_i32] = ACTIONS(2217), + [anon_sym_u64] = ACTIONS(2217), + [anon_sym_i64] = ACTIONS(2217), + [anon_sym_u128] = ACTIONS(2217), + [anon_sym_i128] = ACTIONS(2217), + [anon_sym_isize] = ACTIONS(2217), + [anon_sym_usize] = ACTIONS(2217), + [anon_sym_f32] = ACTIONS(2217), + [anon_sym_f64] = ACTIONS(2217), + [anon_sym_bool] = ACTIONS(2217), + [anon_sym_str] = ACTIONS(2217), + [anon_sym_char] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_impl] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_mod] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_extern] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_move] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2215), + [aux_sym_string_literal_token1] = ACTIONS(2215), + [sym_char_literal] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2215), + [sym_float_literal] = ACTIONS(2215), [sym_block_comment] = ACTIONS(3), }, - [537] = { - [sym_function_modifiers] = STATE(2308), - [sym_higher_ranked_trait_bound] = STATE(1487), - [sym_removed_trait_bound] = STATE(1487), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1485), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1483), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [570] = { + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_macro_rules_BANG] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_COLON_COLON] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(2221), + [anon_sym_i8] = ACTIONS(2221), + [anon_sym_u16] = ACTIONS(2221), + [anon_sym_i16] = ACTIONS(2221), + [anon_sym_u32] = ACTIONS(2221), + [anon_sym_i32] = ACTIONS(2221), + [anon_sym_u64] = ACTIONS(2221), + [anon_sym_i64] = ACTIONS(2221), + [anon_sym_u128] = ACTIONS(2221), + [anon_sym_i128] = ACTIONS(2221), + [anon_sym_isize] = ACTIONS(2221), + [anon_sym_usize] = ACTIONS(2221), + [anon_sym_f32] = ACTIONS(2221), + [anon_sym_f64] = ACTIONS(2221), + [anon_sym_bool] = ACTIONS(2221), + [anon_sym_str] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_mod] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_extern] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_move] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2219), + [aux_sym_string_literal_token1] = ACTIONS(2219), + [sym_char_literal] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2219), + [sym_raw_string_literal] = ACTIONS(2219), + [sym_float_literal] = ACTIONS(2219), [sym_block_comment] = ACTIONS(3), }, - [538] = { - [sym_function_modifiers] = STATE(2308), - [sym_higher_ranked_trait_bound] = STATE(1539), - [sym_removed_trait_bound] = STATE(1539), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1538), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1537), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [571] = { + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_macro_rules_BANG] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_DOT_DOT] = ACTIONS(2223), + [anon_sym_COLON_COLON] = ACTIONS(2223), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_u8] = ACTIONS(2225), + [anon_sym_i8] = ACTIONS(2225), + [anon_sym_u16] = ACTIONS(2225), + [anon_sym_i16] = ACTIONS(2225), + [anon_sym_u32] = ACTIONS(2225), + [anon_sym_i32] = ACTIONS(2225), + [anon_sym_u64] = ACTIONS(2225), + [anon_sym_i64] = ACTIONS(2225), + [anon_sym_u128] = ACTIONS(2225), + [anon_sym_i128] = ACTIONS(2225), + [anon_sym_isize] = ACTIONS(2225), + [anon_sym_usize] = ACTIONS(2225), + [anon_sym_f32] = ACTIONS(2225), + [anon_sym_f64] = ACTIONS(2225), + [anon_sym_bool] = ACTIONS(2225), + [anon_sym_str] = ACTIONS(2225), + [anon_sym_char] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_impl] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_loop] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_mod] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_extern] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_move] = ACTIONS(2225), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2225), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [539] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [572] = { + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_macro_rules_BANG] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_COLON_COLON] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(2227), + [anon_sym_u8] = ACTIONS(2229), + [anon_sym_i8] = ACTIONS(2229), + [anon_sym_u16] = ACTIONS(2229), + [anon_sym_i16] = ACTIONS(2229), + [anon_sym_u32] = ACTIONS(2229), + [anon_sym_i32] = ACTIONS(2229), + [anon_sym_u64] = ACTIONS(2229), + [anon_sym_i64] = ACTIONS(2229), + [anon_sym_u128] = ACTIONS(2229), + [anon_sym_i128] = ACTIONS(2229), + [anon_sym_isize] = ACTIONS(2229), + [anon_sym_usize] = ACTIONS(2229), + [anon_sym_f32] = ACTIONS(2229), + [anon_sym_f64] = ACTIONS(2229), + [anon_sym_bool] = ACTIONS(2229), + [anon_sym_str] = ACTIONS(2229), + [anon_sym_char] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_impl] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_mod] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_move] = ACTIONS(2229), + [sym_integer_literal] = ACTIONS(2227), + [aux_sym_string_literal_token1] = ACTIONS(2227), + [sym_char_literal] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_crate] = ACTIONS(2229), + [sym_metavariable] = ACTIONS(2227), + [sym_raw_string_literal] = ACTIONS(2227), + [sym_float_literal] = ACTIONS(2227), [sym_block_comment] = ACTIONS(3), }, - [540] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_RBRACK] = ACTIONS(2245), - [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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [573] = { + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_macro_rules_BANG] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_COLON_COLON] = ACTIONS(2231), + [anon_sym_POUND] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2233), + [anon_sym_i8] = ACTIONS(2233), + [anon_sym_u16] = ACTIONS(2233), + [anon_sym_i16] = ACTIONS(2233), + [anon_sym_u32] = ACTIONS(2233), + [anon_sym_i32] = ACTIONS(2233), + [anon_sym_u64] = ACTIONS(2233), + [anon_sym_i64] = ACTIONS(2233), + [anon_sym_u128] = ACTIONS(2233), + [anon_sym_i128] = ACTIONS(2233), + [anon_sym_isize] = ACTIONS(2233), + [anon_sym_usize] = ACTIONS(2233), + [anon_sym_f32] = ACTIONS(2233), + [anon_sym_f64] = ACTIONS(2233), + [anon_sym_bool] = ACTIONS(2233), + [anon_sym_str] = ACTIONS(2233), + [anon_sym_char] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_impl] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_mod] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_extern] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_move] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(2231), + [aux_sym_string_literal_token1] = ACTIONS(2231), + [sym_char_literal] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_metavariable] = ACTIONS(2231), + [sym_raw_string_literal] = ACTIONS(2231), + [sym_float_literal] = ACTIONS(2231), [sym_block_comment] = ACTIONS(3), }, - [541] = { - [sym_function_modifiers] = STATE(2308), - [sym_higher_ranked_trait_bound] = STATE(1539), - [sym_removed_trait_bound] = STATE(1539), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1535), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1534), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [574] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [anon_sym_COLON_COLON] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(2235), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_extern] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_move] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2235), + [aux_sym_string_literal_token1] = ACTIONS(2235), + [sym_char_literal] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(2235), + [sym_float_literal] = ACTIONS(2235), [sym_block_comment] = ACTIONS(3), }, - [542] = { - [sym_function_modifiers] = STATE(2308), - [sym_higher_ranked_trait_bound] = STATE(1539), - [sym_removed_trait_bound] = STATE(1539), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1535), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(1537), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), + [575] = { + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_macro_rules_BANG] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_COLON_COLON] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), [anon_sym_for] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [543] = { - [sym_parameter] = STATE(2102), - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1824), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2209), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [544] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1383), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [545] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1858), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [546] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1698), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [547] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2099), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [548] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2249), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2251), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [549] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1708), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [550] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2114), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_move] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(2239), + [aux_sym_string_literal_token1] = ACTIONS(2239), + [sym_char_literal] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2239), + [sym_float_literal] = ACTIONS(2239), [sym_block_comment] = ACTIONS(3), }, - [551] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2133), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [576] = { + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_macro_rules_BANG] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_DOT_DOT] = ACTIONS(2243), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2245), + [anon_sym_i8] = ACTIONS(2245), + [anon_sym_u16] = ACTIONS(2245), + [anon_sym_i16] = ACTIONS(2245), + [anon_sym_u32] = ACTIONS(2245), + [anon_sym_i32] = ACTIONS(2245), + [anon_sym_u64] = ACTIONS(2245), + [anon_sym_i64] = ACTIONS(2245), + [anon_sym_u128] = ACTIONS(2245), + [anon_sym_i128] = ACTIONS(2245), + [anon_sym_isize] = ACTIONS(2245), + [anon_sym_usize] = ACTIONS(2245), + [anon_sym_f32] = ACTIONS(2245), + [anon_sym_f64] = ACTIONS(2245), + [anon_sym_bool] = ACTIONS(2245), + [anon_sym_str] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_extern] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_move] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2243), + [aux_sym_string_literal_token1] = ACTIONS(2243), + [sym_char_literal] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(2243), + [sym_float_literal] = ACTIONS(2243), [sym_block_comment] = ACTIONS(3), }, - [552] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2079), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [577] = { + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_macro_rules_BANG] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_COLON_COLON] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(2247), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_move] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2247), + [aux_sym_string_literal_token1] = ACTIONS(2247), + [sym_char_literal] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_metavariable] = ACTIONS(2247), + [sym_raw_string_literal] = ACTIONS(2247), + [sym_float_literal] = ACTIONS(2247), [sym_block_comment] = ACTIONS(3), }, - [553] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2217), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [578] = { + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_macro_rules_BANG] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2251), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(2251), + [anon_sym_u8] = ACTIONS(2253), + [anon_sym_i8] = ACTIONS(2253), + [anon_sym_u16] = ACTIONS(2253), + [anon_sym_i16] = ACTIONS(2253), + [anon_sym_u32] = ACTIONS(2253), + [anon_sym_i32] = ACTIONS(2253), + [anon_sym_u64] = ACTIONS(2253), + [anon_sym_i64] = ACTIONS(2253), + [anon_sym_u128] = ACTIONS(2253), + [anon_sym_i128] = ACTIONS(2253), + [anon_sym_isize] = ACTIONS(2253), + [anon_sym_usize] = ACTIONS(2253), + [anon_sym_f32] = ACTIONS(2253), + [anon_sym_f64] = ACTIONS(2253), + [anon_sym_bool] = ACTIONS(2253), + [anon_sym_str] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_move] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2251), + [aux_sym_string_literal_token1] = ACTIONS(2251), + [sym_char_literal] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(2251), + [sym_raw_string_literal] = ACTIONS(2251), + [sym_float_literal] = ACTIONS(2251), [sym_block_comment] = ACTIONS(3), }, - [554] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2080), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [579] = { + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_macro_rules_BANG] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(2255), + [anon_sym_u8] = ACTIONS(2257), + [anon_sym_i8] = ACTIONS(2257), + [anon_sym_u16] = ACTIONS(2257), + [anon_sym_i16] = ACTIONS(2257), + [anon_sym_u32] = ACTIONS(2257), + [anon_sym_i32] = ACTIONS(2257), + [anon_sym_u64] = ACTIONS(2257), + [anon_sym_i64] = ACTIONS(2257), + [anon_sym_u128] = ACTIONS(2257), + [anon_sym_i128] = ACTIONS(2257), + [anon_sym_isize] = ACTIONS(2257), + [anon_sym_usize] = ACTIONS(2257), + [anon_sym_f32] = ACTIONS(2257), + [anon_sym_f64] = ACTIONS(2257), + [anon_sym_bool] = ACTIONS(2257), + [anon_sym_str] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_mod] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_move] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2255), + [aux_sym_string_literal_token1] = ACTIONS(2255), + [sym_char_literal] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2255), + [sym_float_literal] = ACTIONS(2255), [sym_block_comment] = ACTIONS(3), }, - [555] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2253), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [580] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_macro_rules_BANG] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_COLON_COLON] = ACTIONS(2259), + [anon_sym_POUND] = ACTIONS(2259), + [anon_sym_u8] = ACTIONS(2261), + [anon_sym_i8] = ACTIONS(2261), + [anon_sym_u16] = ACTIONS(2261), + [anon_sym_i16] = ACTIONS(2261), + [anon_sym_u32] = ACTIONS(2261), + [anon_sym_i32] = ACTIONS(2261), + [anon_sym_u64] = ACTIONS(2261), + [anon_sym_i64] = ACTIONS(2261), + [anon_sym_u128] = ACTIONS(2261), + [anon_sym_i128] = ACTIONS(2261), + [anon_sym_isize] = ACTIONS(2261), + [anon_sym_usize] = ACTIONS(2261), + [anon_sym_f32] = ACTIONS(2261), + [anon_sym_f64] = ACTIONS(2261), + [anon_sym_bool] = ACTIONS(2261), + [anon_sym_str] = ACTIONS(2261), + [anon_sym_char] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_impl] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_move] = ACTIONS(2261), + [sym_integer_literal] = ACTIONS(2259), + [aux_sym_string_literal_token1] = ACTIONS(2259), + [sym_char_literal] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_crate] = ACTIONS(2261), + [sym_metavariable] = ACTIONS(2259), + [sym_raw_string_literal] = ACTIONS(2259), + [sym_float_literal] = ACTIONS(2259), [sym_block_comment] = ACTIONS(3), }, - [556] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1015), - [sym_bracketed_type] = STATE(2391), - [sym_lifetime] = STATE(2247), - [sym_array_type] = STATE(1060), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1060), - [sym_tuple_type] = STATE(1060), - [sym_unit_type] = STATE(1060), - [sym_generic_type] = STATE(799), - [sym_generic_type_with_turbofish] = STATE(2392), - [sym_bounded_type] = STATE(1060), - [sym_reference_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_empty_type] = STATE(1060), - [sym_abstract_type] = STATE(1060), - [sym_dynamic_type] = STATE(1060), - [sym_macro_invocation] = STATE(1060), - [sym_scoped_identifier] = STATE(2222), - [sym_scoped_type_identifier] = STATE(715), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2261), + [581] = { + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_macro_rules_BANG] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_COLON_COLON] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(2263), [anon_sym_u8] = ACTIONS(2265), [anon_sym_i8] = ACTIONS(2265), [anon_sym_u16] = ACTIONS(2265), @@ -62724,2613 +73056,34276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2265), [anon_sym_str] = ACTIONS(2265), [anon_sym_char] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_dyn] = ACTIONS(2281), - [sym_mutable_specifier] = ACTIONS(2283), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_crate] = ACTIONS(2285), - [sym_metavariable] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_impl] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_mod] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_extern] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_move] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2263), + [aux_sym_string_literal_token1] = ACTIONS(2263), + [sym_char_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_metavariable] = ACTIONS(2263), + [sym_raw_string_literal] = ACTIONS(2263), + [sym_float_literal] = ACTIONS(2263), [sym_block_comment] = ACTIONS(3), }, - [557] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1775), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2289), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [582] = { + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_macro_rules_BANG] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_COLON_COLON] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_move] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2267), + [aux_sym_string_literal_token1] = ACTIONS(2267), + [sym_char_literal] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_metavariable] = ACTIONS(2267), + [sym_raw_string_literal] = ACTIONS(2267), + [sym_float_literal] = ACTIONS(2267), [sym_block_comment] = ACTIONS(3), }, - [558] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2077), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [583] = { + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_macro_rules_BANG] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2271), + [anon_sym_LT] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_COLON_COLON] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(2271), + [anon_sym_u8] = ACTIONS(2273), + [anon_sym_i8] = ACTIONS(2273), + [anon_sym_u16] = ACTIONS(2273), + [anon_sym_i16] = ACTIONS(2273), + [anon_sym_u32] = ACTIONS(2273), + [anon_sym_i32] = ACTIONS(2273), + [anon_sym_u64] = ACTIONS(2273), + [anon_sym_i64] = ACTIONS(2273), + [anon_sym_u128] = ACTIONS(2273), + [anon_sym_i128] = ACTIONS(2273), + [anon_sym_isize] = ACTIONS(2273), + [anon_sym_usize] = ACTIONS(2273), + [anon_sym_f32] = ACTIONS(2273), + [anon_sym_f64] = ACTIONS(2273), + [anon_sym_bool] = ACTIONS(2273), + [anon_sym_str] = ACTIONS(2273), + [anon_sym_char] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_impl] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_loop] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_mod] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_extern] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_move] = ACTIONS(2273), + [sym_integer_literal] = ACTIONS(2271), + [aux_sym_string_literal_token1] = ACTIONS(2271), + [sym_char_literal] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_crate] = ACTIONS(2273), + [sym_metavariable] = ACTIONS(2271), + [sym_raw_string_literal] = ACTIONS(2271), + [sym_float_literal] = ACTIONS(2271), [sym_block_comment] = ACTIONS(3), }, - [559] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2148), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [584] = { + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_macro_rules_BANG] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_DOT_DOT] = ACTIONS(2275), + [anon_sym_COLON_COLON] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(2275), + [anon_sym_u8] = ACTIONS(2277), + [anon_sym_i8] = ACTIONS(2277), + [anon_sym_u16] = ACTIONS(2277), + [anon_sym_i16] = ACTIONS(2277), + [anon_sym_u32] = ACTIONS(2277), + [anon_sym_i32] = ACTIONS(2277), + [anon_sym_u64] = ACTIONS(2277), + [anon_sym_i64] = ACTIONS(2277), + [anon_sym_u128] = ACTIONS(2277), + [anon_sym_i128] = ACTIONS(2277), + [anon_sym_isize] = ACTIONS(2277), + [anon_sym_usize] = ACTIONS(2277), + [anon_sym_f32] = ACTIONS(2277), + [anon_sym_f64] = ACTIONS(2277), + [anon_sym_bool] = ACTIONS(2277), + [anon_sym_str] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_fn] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_impl] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_mod] = ACTIONS(2277), + [anon_sym_pub] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_unsafe] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_move] = ACTIONS(2277), + [sym_integer_literal] = ACTIONS(2275), + [aux_sym_string_literal_token1] = ACTIONS(2275), + [sym_char_literal] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2275), + [sym_float_literal] = ACTIONS(2275), [sym_block_comment] = ACTIONS(3), }, - [560] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2019), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [585] = { + [ts_builtin_sym_end] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_macro_rules_BANG] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_STAR] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_LT] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(2279), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_move] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2279), + [aux_sym_string_literal_token1] = ACTIONS(2279), + [sym_char_literal] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2279), + [sym_raw_string_literal] = ACTIONS(2279), + [sym_float_literal] = ACTIONS(2279), [sym_block_comment] = ACTIONS(3), }, - [561] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1763), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [586] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_macro_rules_BANG] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2283), + [anon_sym_POUND] = ACTIONS(2283), + [anon_sym_u8] = ACTIONS(2285), + [anon_sym_i8] = ACTIONS(2285), + [anon_sym_u16] = ACTIONS(2285), + [anon_sym_i16] = ACTIONS(2285), + [anon_sym_u32] = ACTIONS(2285), + [anon_sym_i32] = ACTIONS(2285), + [anon_sym_u64] = ACTIONS(2285), + [anon_sym_i64] = ACTIONS(2285), + [anon_sym_u128] = ACTIONS(2285), + [anon_sym_i128] = ACTIONS(2285), + [anon_sym_isize] = ACTIONS(2285), + [anon_sym_usize] = ACTIONS(2285), + [anon_sym_f32] = ACTIONS(2285), + [anon_sym_f64] = ACTIONS(2285), + [anon_sym_bool] = ACTIONS(2285), + [anon_sym_str] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_fn] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_impl] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_loop] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_mod] = ACTIONS(2285), + [anon_sym_pub] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_extern] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_move] = ACTIONS(2285), + [sym_integer_literal] = ACTIONS(2283), + [aux_sym_string_literal_token1] = ACTIONS(2283), + [sym_char_literal] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2283), + [sym_raw_string_literal] = ACTIONS(2283), + [sym_float_literal] = ACTIONS(2283), [sym_block_comment] = ACTIONS(3), }, - [562] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2082), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [587] = { + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_macro_rules_BANG] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_DOT_DOT] = ACTIONS(2287), + [anon_sym_COLON_COLON] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(2287), + [anon_sym_u8] = ACTIONS(2289), + [anon_sym_i8] = ACTIONS(2289), + [anon_sym_u16] = ACTIONS(2289), + [anon_sym_i16] = ACTIONS(2289), + [anon_sym_u32] = ACTIONS(2289), + [anon_sym_i32] = ACTIONS(2289), + [anon_sym_u64] = ACTIONS(2289), + [anon_sym_i64] = ACTIONS(2289), + [anon_sym_u128] = ACTIONS(2289), + [anon_sym_i128] = ACTIONS(2289), + [anon_sym_isize] = ACTIONS(2289), + [anon_sym_usize] = ACTIONS(2289), + [anon_sym_f32] = ACTIONS(2289), + [anon_sym_f64] = ACTIONS(2289), + [anon_sym_bool] = ACTIONS(2289), + [anon_sym_str] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_impl] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_mod] = ACTIONS(2289), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_unsafe] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_extern] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_move] = ACTIONS(2289), + [sym_integer_literal] = ACTIONS(2287), + [aux_sym_string_literal_token1] = ACTIONS(2287), + [sym_char_literal] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_metavariable] = ACTIONS(2287), + [sym_raw_string_literal] = ACTIONS(2287), + [sym_float_literal] = ACTIONS(2287), [sym_block_comment] = ACTIONS(3), }, - [563] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2219), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [588] = { + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_macro_rules_BANG] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2291), + [anon_sym_POUND] = ACTIONS(2291), + [anon_sym_u8] = ACTIONS(2293), + [anon_sym_i8] = ACTIONS(2293), + [anon_sym_u16] = ACTIONS(2293), + [anon_sym_i16] = ACTIONS(2293), + [anon_sym_u32] = ACTIONS(2293), + [anon_sym_i32] = ACTIONS(2293), + [anon_sym_u64] = ACTIONS(2293), + [anon_sym_i64] = ACTIONS(2293), + [anon_sym_u128] = ACTIONS(2293), + [anon_sym_i128] = ACTIONS(2293), + [anon_sym_isize] = ACTIONS(2293), + [anon_sym_usize] = ACTIONS(2293), + [anon_sym_f32] = ACTIONS(2293), + [anon_sym_f64] = ACTIONS(2293), + [anon_sym_bool] = ACTIONS(2293), + [anon_sym_str] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_impl] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_mod] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_move] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2291), + [aux_sym_string_literal_token1] = ACTIONS(2291), + [sym_char_literal] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_metavariable] = ACTIONS(2291), + [sym_raw_string_literal] = ACTIONS(2291), + [sym_float_literal] = ACTIONS(2291), [sym_block_comment] = ACTIONS(3), }, - [564] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [589] = { + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_macro_rules_BANG] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(2295), + [anon_sym_LT] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2295), + [anon_sym_POUND] = ACTIONS(2295), + [anon_sym_u8] = ACTIONS(2297), + [anon_sym_i8] = ACTIONS(2297), + [anon_sym_u16] = ACTIONS(2297), + [anon_sym_i16] = ACTIONS(2297), + [anon_sym_u32] = ACTIONS(2297), + [anon_sym_i32] = ACTIONS(2297), + [anon_sym_u64] = ACTIONS(2297), + [anon_sym_i64] = ACTIONS(2297), + [anon_sym_u128] = ACTIONS(2297), + [anon_sym_i128] = ACTIONS(2297), + [anon_sym_isize] = ACTIONS(2297), + [anon_sym_usize] = ACTIONS(2297), + [anon_sym_f32] = ACTIONS(2297), + [anon_sym_f64] = ACTIONS(2297), + [anon_sym_bool] = ACTIONS(2297), + [anon_sym_str] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_impl] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_mod] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_move] = ACTIONS(2297), + [sym_integer_literal] = ACTIONS(2295), + [aux_sym_string_literal_token1] = ACTIONS(2295), + [sym_char_literal] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_metavariable] = ACTIONS(2295), + [sym_raw_string_literal] = ACTIONS(2295), + [sym_float_literal] = ACTIONS(2295), [sym_block_comment] = ACTIONS(3), }, - [565] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1753), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [590] = { + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_macro_rules_BANG] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(2299), + [anon_sym_u8] = ACTIONS(2301), + [anon_sym_i8] = ACTIONS(2301), + [anon_sym_u16] = ACTIONS(2301), + [anon_sym_i16] = ACTIONS(2301), + [anon_sym_u32] = ACTIONS(2301), + [anon_sym_i32] = ACTIONS(2301), + [anon_sym_u64] = ACTIONS(2301), + [anon_sym_i64] = ACTIONS(2301), + [anon_sym_u128] = ACTIONS(2301), + [anon_sym_i128] = ACTIONS(2301), + [anon_sym_isize] = ACTIONS(2301), + [anon_sym_usize] = ACTIONS(2301), + [anon_sym_f32] = ACTIONS(2301), + [anon_sym_f64] = ACTIONS(2301), + [anon_sym_bool] = ACTIONS(2301), + [anon_sym_str] = ACTIONS(2301), + [anon_sym_char] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_fn] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_impl] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_mod] = ACTIONS(2301), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_unsafe] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_move] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(2299), + [aux_sym_string_literal_token1] = ACTIONS(2299), + [sym_char_literal] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_metavariable] = ACTIONS(2299), + [sym_raw_string_literal] = ACTIONS(2299), + [sym_float_literal] = ACTIONS(2299), [sym_block_comment] = ACTIONS(3), }, - [566] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2097), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [591] = { + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_macro_rules_BANG] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_u8] = ACTIONS(2305), + [anon_sym_i8] = ACTIONS(2305), + [anon_sym_u16] = ACTIONS(2305), + [anon_sym_i16] = ACTIONS(2305), + [anon_sym_u32] = ACTIONS(2305), + [anon_sym_i32] = ACTIONS(2305), + [anon_sym_u64] = ACTIONS(2305), + [anon_sym_i64] = ACTIONS(2305), + [anon_sym_u128] = ACTIONS(2305), + [anon_sym_i128] = ACTIONS(2305), + [anon_sym_isize] = ACTIONS(2305), + [anon_sym_usize] = ACTIONS(2305), + [anon_sym_f32] = ACTIONS(2305), + [anon_sym_f64] = ACTIONS(2305), + [anon_sym_bool] = ACTIONS(2305), + [anon_sym_str] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_fn] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_impl] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_mod] = ACTIONS(2305), + [anon_sym_pub] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_unsafe] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_move] = ACTIONS(2305), + [sym_integer_literal] = ACTIONS(2303), + [aux_sym_string_literal_token1] = ACTIONS(2303), + [sym_char_literal] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_crate] = ACTIONS(2305), + [sym_metavariable] = ACTIONS(2303), + [sym_raw_string_literal] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), [sym_block_comment] = ACTIONS(3), }, - [567] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1404), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), + [592] = { + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_macro_rules_BANG] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(2307), + [anon_sym_u8] = ACTIONS(2309), + [anon_sym_i8] = ACTIONS(2309), + [anon_sym_u16] = ACTIONS(2309), + [anon_sym_i16] = ACTIONS(2309), + [anon_sym_u32] = ACTIONS(2309), + [anon_sym_i32] = ACTIONS(2309), + [anon_sym_u64] = ACTIONS(2309), + [anon_sym_i64] = ACTIONS(2309), + [anon_sym_u128] = ACTIONS(2309), + [anon_sym_i128] = ACTIONS(2309), + [anon_sym_isize] = ACTIONS(2309), + [anon_sym_usize] = ACTIONS(2309), + [anon_sym_f32] = ACTIONS(2309), + [anon_sym_f64] = ACTIONS(2309), + [anon_sym_bool] = ACTIONS(2309), + [anon_sym_str] = ACTIONS(2309), + [anon_sym_char] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_fn] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_impl] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_mod] = ACTIONS(2309), + [anon_sym_pub] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_union] = ACTIONS(2309), + [anon_sym_unsafe] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_move] = ACTIONS(2309), + [sym_integer_literal] = ACTIONS(2307), + [aux_sym_string_literal_token1] = ACTIONS(2307), + [sym_char_literal] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_crate] = ACTIONS(2309), + [sym_metavariable] = ACTIONS(2307), + [sym_raw_string_literal] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), [sym_block_comment] = ACTIONS(3), }, - [568] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1325), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2297), + [593] = { + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_macro_rules_BANG] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_DOT_DOT] = ACTIONS(2311), + [anon_sym_COLON_COLON] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(2311), + [anon_sym_u8] = ACTIONS(2313), + [anon_sym_i8] = ACTIONS(2313), + [anon_sym_u16] = ACTIONS(2313), + [anon_sym_i16] = ACTIONS(2313), + [anon_sym_u32] = ACTIONS(2313), + [anon_sym_i32] = ACTIONS(2313), + [anon_sym_u64] = ACTIONS(2313), + [anon_sym_i64] = ACTIONS(2313), + [anon_sym_u128] = ACTIONS(2313), + [anon_sym_i128] = ACTIONS(2313), + [anon_sym_isize] = ACTIONS(2313), + [anon_sym_usize] = ACTIONS(2313), + [anon_sym_f32] = ACTIONS(2313), + [anon_sym_f64] = ACTIONS(2313), + [anon_sym_bool] = ACTIONS(2313), + [anon_sym_str] = ACTIONS(2313), + [anon_sym_char] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_fn] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_impl] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_mod] = ACTIONS(2313), + [anon_sym_pub] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_unsafe] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_move] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2311), + [aux_sym_string_literal_token1] = ACTIONS(2311), + [sym_char_literal] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2313), + [sym_super] = ACTIONS(2313), + [sym_crate] = ACTIONS(2313), + [sym_metavariable] = ACTIONS(2311), + [sym_raw_string_literal] = ACTIONS(2311), + [sym_float_literal] = ACTIONS(2311), + [sym_block_comment] = ACTIONS(3), + }, + [594] = { + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2317), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_macro_rules_BANG] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(2315), + [anon_sym_u8] = ACTIONS(2317), + [anon_sym_i8] = ACTIONS(2317), + [anon_sym_u16] = ACTIONS(2317), + [anon_sym_i16] = ACTIONS(2317), + [anon_sym_u32] = ACTIONS(2317), + [anon_sym_i32] = ACTIONS(2317), + [anon_sym_u64] = ACTIONS(2317), + [anon_sym_i64] = ACTIONS(2317), + [anon_sym_u128] = ACTIONS(2317), + [anon_sym_i128] = ACTIONS(2317), + [anon_sym_isize] = ACTIONS(2317), + [anon_sym_usize] = ACTIONS(2317), + [anon_sym_f32] = ACTIONS(2317), + [anon_sym_f64] = ACTIONS(2317), + [anon_sym_bool] = ACTIONS(2317), + [anon_sym_str] = ACTIONS(2317), + [anon_sym_char] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_fn] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_impl] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_loop] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_mod] = ACTIONS(2317), + [anon_sym_pub] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_move] = ACTIONS(2317), + [sym_integer_literal] = ACTIONS(2315), + [aux_sym_string_literal_token1] = ACTIONS(2315), + [sym_char_literal] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_crate] = ACTIONS(2317), + [sym_metavariable] = ACTIONS(2315), + [sym_raw_string_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), + [sym_block_comment] = ACTIONS(3), + }, + [595] = { + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_macro_rules_BANG] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2319), + [anon_sym_DOT_DOT] = ACTIONS(2319), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_POUND] = ACTIONS(2319), + [anon_sym_u8] = ACTIONS(2321), + [anon_sym_i8] = ACTIONS(2321), + [anon_sym_u16] = ACTIONS(2321), + [anon_sym_i16] = ACTIONS(2321), + [anon_sym_u32] = ACTIONS(2321), + [anon_sym_i32] = ACTIONS(2321), + [anon_sym_u64] = ACTIONS(2321), + [anon_sym_i64] = ACTIONS(2321), + [anon_sym_u128] = ACTIONS(2321), + [anon_sym_i128] = ACTIONS(2321), + [anon_sym_isize] = ACTIONS(2321), + [anon_sym_usize] = ACTIONS(2321), + [anon_sym_f32] = ACTIONS(2321), + [anon_sym_f64] = ACTIONS(2321), + [anon_sym_bool] = ACTIONS(2321), + [anon_sym_str] = ACTIONS(2321), + [anon_sym_char] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_impl] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_mod] = ACTIONS(2321), + [anon_sym_pub] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_move] = ACTIONS(2321), + [sym_integer_literal] = ACTIONS(2319), + [aux_sym_string_literal_token1] = ACTIONS(2319), + [sym_char_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2321), + [sym_super] = ACTIONS(2321), + [sym_crate] = ACTIONS(2321), + [sym_metavariable] = ACTIONS(2319), + [sym_raw_string_literal] = ACTIONS(2319), + [sym_float_literal] = ACTIONS(2319), + [sym_block_comment] = ACTIONS(3), + }, + [596] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_macro_rules_BANG] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2323), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2323), + [anon_sym_LT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_COLON_COLON] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_u8] = ACTIONS(2325), + [anon_sym_i8] = ACTIONS(2325), + [anon_sym_u16] = ACTIONS(2325), + [anon_sym_i16] = ACTIONS(2325), + [anon_sym_u32] = ACTIONS(2325), + [anon_sym_i32] = ACTIONS(2325), + [anon_sym_u64] = ACTIONS(2325), + [anon_sym_i64] = ACTIONS(2325), + [anon_sym_u128] = ACTIONS(2325), + [anon_sym_i128] = ACTIONS(2325), + [anon_sym_isize] = ACTIONS(2325), + [anon_sym_usize] = ACTIONS(2325), + [anon_sym_f32] = ACTIONS(2325), + [anon_sym_f64] = ACTIONS(2325), + [anon_sym_bool] = ACTIONS(2325), + [anon_sym_str] = ACTIONS(2325), + [anon_sym_char] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_fn] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_impl] = ACTIONS(2325), + [anon_sym_let] = ACTIONS(2325), + [anon_sym_loop] = ACTIONS(2325), + [anon_sym_match] = ACTIONS(2325), + [anon_sym_mod] = ACTIONS(2325), + [anon_sym_pub] = ACTIONS(2325), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_union] = ACTIONS(2325), + [anon_sym_unsafe] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_extern] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_move] = ACTIONS(2325), + [sym_integer_literal] = ACTIONS(2323), + [aux_sym_string_literal_token1] = ACTIONS(2323), + [sym_char_literal] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2325), + [sym_super] = ACTIONS(2325), + [sym_crate] = ACTIONS(2325), + [sym_metavariable] = ACTIONS(2323), + [sym_raw_string_literal] = ACTIONS(2323), + [sym_float_literal] = ACTIONS(2323), + [sym_block_comment] = ACTIONS(3), + }, + [597] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_macro_rules_BANG] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_DOT_DOT] = ACTIONS(2327), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(2327), + [anon_sym_u8] = ACTIONS(2329), + [anon_sym_i8] = ACTIONS(2329), + [anon_sym_u16] = ACTIONS(2329), + [anon_sym_i16] = ACTIONS(2329), + [anon_sym_u32] = ACTIONS(2329), + [anon_sym_i32] = ACTIONS(2329), + [anon_sym_u64] = ACTIONS(2329), + [anon_sym_i64] = ACTIONS(2329), + [anon_sym_u128] = ACTIONS(2329), + [anon_sym_i128] = ACTIONS(2329), + [anon_sym_isize] = ACTIONS(2329), + [anon_sym_usize] = ACTIONS(2329), + [anon_sym_f32] = ACTIONS(2329), + [anon_sym_f64] = ACTIONS(2329), + [anon_sym_bool] = ACTIONS(2329), + [anon_sym_str] = ACTIONS(2329), + [anon_sym_char] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_impl] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_loop] = ACTIONS(2329), + [anon_sym_match] = ACTIONS(2329), + [anon_sym_mod] = ACTIONS(2329), + [anon_sym_pub] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_unsafe] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_move] = ACTIONS(2329), + [sym_integer_literal] = ACTIONS(2327), + [aux_sym_string_literal_token1] = ACTIONS(2327), + [sym_char_literal] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2329), + [sym_super] = ACTIONS(2329), + [sym_crate] = ACTIONS(2329), + [sym_metavariable] = ACTIONS(2327), + [sym_raw_string_literal] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2327), + [sym_block_comment] = ACTIONS(3), + }, + [598] = { + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_macro_rules_BANG] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_DOT_DOT] = ACTIONS(2331), + [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(2331), + [anon_sym_u8] = ACTIONS(2333), + [anon_sym_i8] = ACTIONS(2333), + [anon_sym_u16] = ACTIONS(2333), + [anon_sym_i16] = ACTIONS(2333), + [anon_sym_u32] = ACTIONS(2333), + [anon_sym_i32] = ACTIONS(2333), + [anon_sym_u64] = ACTIONS(2333), + [anon_sym_i64] = ACTIONS(2333), + [anon_sym_u128] = ACTIONS(2333), + [anon_sym_i128] = ACTIONS(2333), + [anon_sym_isize] = ACTIONS(2333), + [anon_sym_usize] = ACTIONS(2333), + [anon_sym_f32] = ACTIONS(2333), + [anon_sym_f64] = ACTIONS(2333), + [anon_sym_bool] = ACTIONS(2333), + [anon_sym_str] = ACTIONS(2333), + [anon_sym_char] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_fn] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_impl] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_loop] = ACTIONS(2333), + [anon_sym_match] = ACTIONS(2333), + [anon_sym_mod] = ACTIONS(2333), + [anon_sym_pub] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_struct] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_union] = ACTIONS(2333), + [anon_sym_unsafe] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_move] = ACTIONS(2333), + [sym_integer_literal] = ACTIONS(2331), + [aux_sym_string_literal_token1] = ACTIONS(2331), + [sym_char_literal] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(2333), + [sym_crate] = ACTIONS(2333), + [sym_metavariable] = ACTIONS(2331), + [sym_raw_string_literal] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2331), + [sym_block_comment] = ACTIONS(3), + }, + [599] = { + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_macro_rules_BANG] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_u8] = ACTIONS(2337), + [anon_sym_i8] = ACTIONS(2337), + [anon_sym_u16] = ACTIONS(2337), + [anon_sym_i16] = ACTIONS(2337), + [anon_sym_u32] = ACTIONS(2337), + [anon_sym_i32] = ACTIONS(2337), + [anon_sym_u64] = ACTIONS(2337), + [anon_sym_i64] = ACTIONS(2337), + [anon_sym_u128] = ACTIONS(2337), + [anon_sym_i128] = ACTIONS(2337), + [anon_sym_isize] = ACTIONS(2337), + [anon_sym_usize] = ACTIONS(2337), + [anon_sym_f32] = ACTIONS(2337), + [anon_sym_f64] = ACTIONS(2337), + [anon_sym_bool] = ACTIONS(2337), + [anon_sym_str] = ACTIONS(2337), + [anon_sym_char] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_fn] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_impl] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_loop] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_mod] = ACTIONS(2337), + [anon_sym_pub] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_unsafe] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_move] = ACTIONS(2337), + [sym_integer_literal] = ACTIONS(2335), + [aux_sym_string_literal_token1] = ACTIONS(2335), + [sym_char_literal] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2337), + [sym_super] = ACTIONS(2337), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(2335), + [sym_raw_string_literal] = ACTIONS(2335), + [sym_float_literal] = ACTIONS(2335), + [sym_block_comment] = ACTIONS(3), + }, + [600] = { + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_macro_rules_BANG] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2339), + [anon_sym_LT] = ACTIONS(2339), + [anon_sym_DOT_DOT] = ACTIONS(2339), + [anon_sym_COLON_COLON] = ACTIONS(2339), + [anon_sym_POUND] = ACTIONS(2339), + [anon_sym_u8] = ACTIONS(2341), + [anon_sym_i8] = ACTIONS(2341), + [anon_sym_u16] = ACTIONS(2341), + [anon_sym_i16] = ACTIONS(2341), + [anon_sym_u32] = ACTIONS(2341), + [anon_sym_i32] = ACTIONS(2341), + [anon_sym_u64] = ACTIONS(2341), + [anon_sym_i64] = ACTIONS(2341), + [anon_sym_u128] = ACTIONS(2341), + [anon_sym_i128] = ACTIONS(2341), + [anon_sym_isize] = ACTIONS(2341), + [anon_sym_usize] = ACTIONS(2341), + [anon_sym_f32] = ACTIONS(2341), + [anon_sym_f64] = ACTIONS(2341), + [anon_sym_bool] = ACTIONS(2341), + [anon_sym_str] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_impl] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_mod] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_move] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2339), + [aux_sym_string_literal_token1] = ACTIONS(2339), + [sym_char_literal] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_metavariable] = ACTIONS(2339), + [sym_raw_string_literal] = ACTIONS(2339), + [sym_float_literal] = ACTIONS(2339), + [sym_block_comment] = ACTIONS(3), + }, + [601] = { + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_macro_rules_BANG] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2343), + [anon_sym_PIPE] = ACTIONS(2343), + [anon_sym_LT] = ACTIONS(2343), + [anon_sym_DOT_DOT] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2343), + [anon_sym_POUND] = ACTIONS(2343), + [anon_sym_u8] = ACTIONS(2345), + [anon_sym_i8] = ACTIONS(2345), + [anon_sym_u16] = ACTIONS(2345), + [anon_sym_i16] = ACTIONS(2345), + [anon_sym_u32] = ACTIONS(2345), + [anon_sym_i32] = ACTIONS(2345), + [anon_sym_u64] = ACTIONS(2345), + [anon_sym_i64] = ACTIONS(2345), + [anon_sym_u128] = ACTIONS(2345), + [anon_sym_i128] = ACTIONS(2345), + [anon_sym_isize] = ACTIONS(2345), + [anon_sym_usize] = ACTIONS(2345), + [anon_sym_f32] = ACTIONS(2345), + [anon_sym_f64] = ACTIONS(2345), + [anon_sym_bool] = ACTIONS(2345), + [anon_sym_str] = ACTIONS(2345), + [anon_sym_char] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_impl] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_mod] = ACTIONS(2345), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_move] = ACTIONS(2345), + [sym_integer_literal] = ACTIONS(2343), + [aux_sym_string_literal_token1] = ACTIONS(2343), + [sym_char_literal] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_crate] = ACTIONS(2345), + [sym_metavariable] = ACTIONS(2343), + [sym_raw_string_literal] = ACTIONS(2343), + [sym_float_literal] = ACTIONS(2343), + [sym_block_comment] = ACTIONS(3), + }, + [602] = { + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_macro_rules_BANG] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2347), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2347), + [anon_sym_PIPE] = ACTIONS(2347), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_COLON_COLON] = ACTIONS(2347), + [anon_sym_POUND] = ACTIONS(2347), + [anon_sym_u8] = ACTIONS(2349), + [anon_sym_i8] = ACTIONS(2349), + [anon_sym_u16] = ACTIONS(2349), + [anon_sym_i16] = ACTIONS(2349), + [anon_sym_u32] = ACTIONS(2349), + [anon_sym_i32] = ACTIONS(2349), + [anon_sym_u64] = ACTIONS(2349), + [anon_sym_i64] = ACTIONS(2349), + [anon_sym_u128] = ACTIONS(2349), + [anon_sym_i128] = ACTIONS(2349), + [anon_sym_isize] = ACTIONS(2349), + [anon_sym_usize] = ACTIONS(2349), + [anon_sym_f32] = ACTIONS(2349), + [anon_sym_f64] = ACTIONS(2349), + [anon_sym_bool] = ACTIONS(2349), + [anon_sym_str] = ACTIONS(2349), + [anon_sym_char] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_fn] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_impl] = ACTIONS(2349), + [anon_sym_let] = ACTIONS(2349), + [anon_sym_loop] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2349), + [anon_sym_mod] = ACTIONS(2349), + [anon_sym_pub] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_unsafe] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_move] = ACTIONS(2349), + [sym_integer_literal] = ACTIONS(2347), + [aux_sym_string_literal_token1] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2349), + [sym_super] = ACTIONS(2349), + [sym_crate] = ACTIONS(2349), + [sym_metavariable] = ACTIONS(2347), + [sym_raw_string_literal] = ACTIONS(2347), + [sym_float_literal] = ACTIONS(2347), + [sym_block_comment] = ACTIONS(3), + }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_macro_rules_BANG] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_DOT_DOT] = ACTIONS(2351), + [anon_sym_COLON_COLON] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(2351), + [anon_sym_u8] = ACTIONS(2353), + [anon_sym_i8] = ACTIONS(2353), + [anon_sym_u16] = ACTIONS(2353), + [anon_sym_i16] = ACTIONS(2353), + [anon_sym_u32] = ACTIONS(2353), + [anon_sym_i32] = ACTIONS(2353), + [anon_sym_u64] = ACTIONS(2353), + [anon_sym_i64] = ACTIONS(2353), + [anon_sym_u128] = ACTIONS(2353), + [anon_sym_i128] = ACTIONS(2353), + [anon_sym_isize] = ACTIONS(2353), + [anon_sym_usize] = ACTIONS(2353), + [anon_sym_f32] = ACTIONS(2353), + [anon_sym_f64] = ACTIONS(2353), + [anon_sym_bool] = ACTIONS(2353), + [anon_sym_str] = ACTIONS(2353), + [anon_sym_char] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_fn] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_impl] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_loop] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_mod] = ACTIONS(2353), + [anon_sym_pub] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_unsafe] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_move] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2351), + [aux_sym_string_literal_token1] = ACTIONS(2351), + [sym_char_literal] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_crate] = ACTIONS(2353), + [sym_metavariable] = ACTIONS(2351), + [sym_raw_string_literal] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2351), + [sym_block_comment] = ACTIONS(3), + }, + [604] = { + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_macro_rules_BANG] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_LT] = ACTIONS(2355), + [anon_sym_DOT_DOT] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(2355), + [anon_sym_u8] = ACTIONS(2357), + [anon_sym_i8] = ACTIONS(2357), + [anon_sym_u16] = ACTIONS(2357), + [anon_sym_i16] = ACTIONS(2357), + [anon_sym_u32] = ACTIONS(2357), + [anon_sym_i32] = ACTIONS(2357), + [anon_sym_u64] = ACTIONS(2357), + [anon_sym_i64] = ACTIONS(2357), + [anon_sym_u128] = ACTIONS(2357), + [anon_sym_i128] = ACTIONS(2357), + [anon_sym_isize] = ACTIONS(2357), + [anon_sym_usize] = ACTIONS(2357), + [anon_sym_f32] = ACTIONS(2357), + [anon_sym_f64] = ACTIONS(2357), + [anon_sym_bool] = ACTIONS(2357), + [anon_sym_str] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_move] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2355), + [aux_sym_string_literal_token1] = ACTIONS(2355), + [sym_char_literal] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2355), + [sym_float_literal] = ACTIONS(2355), + [sym_block_comment] = ACTIONS(3), + }, + [605] = { + [ts_builtin_sym_end] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_macro_rules_BANG] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(2359), + [anon_sym_DOT_DOT] = ACTIONS(2359), + [anon_sym_COLON_COLON] = ACTIONS(2359), + [anon_sym_POUND] = ACTIONS(2359), + [anon_sym_u8] = ACTIONS(2361), + [anon_sym_i8] = ACTIONS(2361), + [anon_sym_u16] = ACTIONS(2361), + [anon_sym_i16] = ACTIONS(2361), + [anon_sym_u32] = ACTIONS(2361), + [anon_sym_i32] = ACTIONS(2361), + [anon_sym_u64] = ACTIONS(2361), + [anon_sym_i64] = ACTIONS(2361), + [anon_sym_u128] = ACTIONS(2361), + [anon_sym_i128] = ACTIONS(2361), + [anon_sym_isize] = ACTIONS(2361), + [anon_sym_usize] = ACTIONS(2361), + [anon_sym_f32] = ACTIONS(2361), + [anon_sym_f64] = ACTIONS(2361), + [anon_sym_bool] = ACTIONS(2361), + [anon_sym_str] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_impl] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_loop] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_mod] = ACTIONS(2361), + [anon_sym_pub] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_unsafe] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_move] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_crate] = ACTIONS(2361), + [sym_metavariable] = ACTIONS(2359), + [sym_raw_string_literal] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), + [sym_block_comment] = ACTIONS(3), + }, + [606] = { + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_macro_rules_BANG] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(2363), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(2363), + [anon_sym_u8] = ACTIONS(2365), + [anon_sym_i8] = ACTIONS(2365), + [anon_sym_u16] = ACTIONS(2365), + [anon_sym_i16] = ACTIONS(2365), + [anon_sym_u32] = ACTIONS(2365), + [anon_sym_i32] = ACTIONS(2365), + [anon_sym_u64] = ACTIONS(2365), + [anon_sym_i64] = ACTIONS(2365), + [anon_sym_u128] = ACTIONS(2365), + [anon_sym_i128] = ACTIONS(2365), + [anon_sym_isize] = ACTIONS(2365), + [anon_sym_usize] = ACTIONS(2365), + [anon_sym_f32] = ACTIONS(2365), + [anon_sym_f64] = ACTIONS(2365), + [anon_sym_bool] = ACTIONS(2365), + [anon_sym_str] = ACTIONS(2365), + [anon_sym_char] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_fn] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_impl] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_loop] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2365), + [anon_sym_mod] = ACTIONS(2365), + [anon_sym_pub] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_unsafe] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_extern] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_move] = ACTIONS(2365), + [sym_integer_literal] = ACTIONS(2363), + [aux_sym_string_literal_token1] = ACTIONS(2363), + [sym_char_literal] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_crate] = ACTIONS(2365), + [sym_metavariable] = ACTIONS(2363), + [sym_raw_string_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), + [sym_block_comment] = ACTIONS(3), + }, + [607] = { + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_macro_rules_BANG] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_DOT_DOT] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(2367), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_move] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2367), + [aux_sym_string_literal_token1] = ACTIONS(2367), + [sym_char_literal] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2367), + [sym_raw_string_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), + [sym_block_comment] = ACTIONS(3), + }, + [608] = { + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_macro_rules_BANG] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(2371), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(2371), + [anon_sym_u8] = ACTIONS(2373), + [anon_sym_i8] = ACTIONS(2373), + [anon_sym_u16] = ACTIONS(2373), + [anon_sym_i16] = ACTIONS(2373), + [anon_sym_u32] = ACTIONS(2373), + [anon_sym_i32] = ACTIONS(2373), + [anon_sym_u64] = ACTIONS(2373), + [anon_sym_i64] = ACTIONS(2373), + [anon_sym_u128] = ACTIONS(2373), + [anon_sym_i128] = ACTIONS(2373), + [anon_sym_isize] = ACTIONS(2373), + [anon_sym_usize] = ACTIONS(2373), + [anon_sym_f32] = ACTIONS(2373), + [anon_sym_f64] = ACTIONS(2373), + [anon_sym_bool] = ACTIONS(2373), + [anon_sym_str] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_impl] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_mod] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_move] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_metavariable] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_block_comment] = ACTIONS(3), + }, + [609] = { + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_macro_rules_BANG] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_DOT_DOT] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(2375), + [anon_sym_u8] = ACTIONS(2377), + [anon_sym_i8] = ACTIONS(2377), + [anon_sym_u16] = ACTIONS(2377), + [anon_sym_i16] = ACTIONS(2377), + [anon_sym_u32] = ACTIONS(2377), + [anon_sym_i32] = ACTIONS(2377), + [anon_sym_u64] = ACTIONS(2377), + [anon_sym_i64] = ACTIONS(2377), + [anon_sym_u128] = ACTIONS(2377), + [anon_sym_i128] = ACTIONS(2377), + [anon_sym_isize] = ACTIONS(2377), + [anon_sym_usize] = ACTIONS(2377), + [anon_sym_f32] = ACTIONS(2377), + [anon_sym_f64] = ACTIONS(2377), + [anon_sym_bool] = ACTIONS(2377), + [anon_sym_str] = ACTIONS(2377), + [anon_sym_char] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_mod] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_move] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2375), + [sym_raw_string_literal] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), + [sym_block_comment] = ACTIONS(3), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_macro_rules_BANG] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_DOT_DOT] = ACTIONS(2379), + [anon_sym_COLON_COLON] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_impl] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_mod] = ACTIONS(2381), + [anon_sym_pub] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_unsafe] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_move] = ACTIONS(2381), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_crate] = ACTIONS(2381), + [sym_metavariable] = ACTIONS(2379), + [sym_raw_string_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), + [sym_block_comment] = ACTIONS(3), + }, + [611] = { + [ts_builtin_sym_end] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_macro_rules_BANG] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_DOT_DOT] = ACTIONS(2383), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_u8] = ACTIONS(2385), + [anon_sym_i8] = ACTIONS(2385), + [anon_sym_u16] = ACTIONS(2385), + [anon_sym_i16] = ACTIONS(2385), + [anon_sym_u32] = ACTIONS(2385), + [anon_sym_i32] = ACTIONS(2385), + [anon_sym_u64] = ACTIONS(2385), + [anon_sym_i64] = ACTIONS(2385), + [anon_sym_u128] = ACTIONS(2385), + [anon_sym_i128] = ACTIONS(2385), + [anon_sym_isize] = ACTIONS(2385), + [anon_sym_usize] = ACTIONS(2385), + [anon_sym_f32] = ACTIONS(2385), + [anon_sym_f64] = ACTIONS(2385), + [anon_sym_bool] = ACTIONS(2385), + [anon_sym_str] = ACTIONS(2385), + [anon_sym_char] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_mod] = ACTIONS(2385), + [anon_sym_pub] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_unsafe] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_move] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2383), + [aux_sym_string_literal_token1] = ACTIONS(2383), + [sym_char_literal] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2385), + [sym_super] = ACTIONS(2385), + [sym_crate] = ACTIONS(2385), + [sym_metavariable] = ACTIONS(2383), + [sym_raw_string_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_block_comment] = ACTIONS(3), + }, + [612] = { + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_macro_rules_BANG] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_DOT_DOT] = ACTIONS(2387), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_POUND] = ACTIONS(2387), + [anon_sym_u8] = ACTIONS(2389), + [anon_sym_i8] = ACTIONS(2389), + [anon_sym_u16] = ACTIONS(2389), + [anon_sym_i16] = ACTIONS(2389), + [anon_sym_u32] = ACTIONS(2389), + [anon_sym_i32] = ACTIONS(2389), + [anon_sym_u64] = ACTIONS(2389), + [anon_sym_i64] = ACTIONS(2389), + [anon_sym_u128] = ACTIONS(2389), + [anon_sym_i128] = ACTIONS(2389), + [anon_sym_isize] = ACTIONS(2389), + [anon_sym_usize] = ACTIONS(2389), + [anon_sym_f32] = ACTIONS(2389), + [anon_sym_f64] = ACTIONS(2389), + [anon_sym_bool] = ACTIONS(2389), + [anon_sym_str] = ACTIONS(2389), + [anon_sym_char] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_fn] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_mod] = ACTIONS(2389), + [anon_sym_pub] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_move] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2387), + [aux_sym_string_literal_token1] = ACTIONS(2387), + [sym_char_literal] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2389), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2387), + [sym_raw_string_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), + [sym_block_comment] = ACTIONS(3), + }, + [613] = { + [ts_builtin_sym_end] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_macro_rules_BANG] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_STAR] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2391), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_DOT_DOT] = ACTIONS(2391), + [anon_sym_COLON_COLON] = ACTIONS(2391), + [anon_sym_POUND] = ACTIONS(2391), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_move] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), + [sym_char_literal] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_metavariable] = ACTIONS(2391), + [sym_raw_string_literal] = ACTIONS(2391), + [sym_float_literal] = ACTIONS(2391), + [sym_block_comment] = ACTIONS(3), + }, + [614] = { + [ts_builtin_sym_end] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_macro_rules_BANG] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_PIPE] = ACTIONS(2395), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_DOT_DOT] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_move] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_metavariable] = ACTIONS(2395), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_block_comment] = ACTIONS(3), + }, + [615] = { + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_macro_rules_BANG] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2399), + [anon_sym_POUND] = ACTIONS(2399), + [anon_sym_u8] = ACTIONS(2401), + [anon_sym_i8] = ACTIONS(2401), + [anon_sym_u16] = ACTIONS(2401), + [anon_sym_i16] = ACTIONS(2401), + [anon_sym_u32] = ACTIONS(2401), + [anon_sym_i32] = ACTIONS(2401), + [anon_sym_u64] = ACTIONS(2401), + [anon_sym_i64] = ACTIONS(2401), + [anon_sym_u128] = ACTIONS(2401), + [anon_sym_i128] = ACTIONS(2401), + [anon_sym_isize] = ACTIONS(2401), + [anon_sym_usize] = ACTIONS(2401), + [anon_sym_f32] = ACTIONS(2401), + [anon_sym_f64] = ACTIONS(2401), + [anon_sym_bool] = ACTIONS(2401), + [anon_sym_str] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_impl] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_mod] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_move] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2399), + [sym_raw_string_literal] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), + [sym_block_comment] = ACTIONS(3), + }, + [616] = { + [ts_builtin_sym_end] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_macro_rules_BANG] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2403), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_DOT_DOT] = ACTIONS(2403), + [anon_sym_COLON_COLON] = ACTIONS(2403), + [anon_sym_POUND] = ACTIONS(2403), + [anon_sym_u8] = ACTIONS(2405), + [anon_sym_i8] = ACTIONS(2405), + [anon_sym_u16] = ACTIONS(2405), + [anon_sym_i16] = ACTIONS(2405), + [anon_sym_u32] = ACTIONS(2405), + [anon_sym_i32] = ACTIONS(2405), + [anon_sym_u64] = ACTIONS(2405), + [anon_sym_i64] = ACTIONS(2405), + [anon_sym_u128] = ACTIONS(2405), + [anon_sym_i128] = ACTIONS(2405), + [anon_sym_isize] = ACTIONS(2405), + [anon_sym_usize] = ACTIONS(2405), + [anon_sym_f32] = ACTIONS(2405), + [anon_sym_f64] = ACTIONS(2405), + [anon_sym_bool] = ACTIONS(2405), + [anon_sym_str] = ACTIONS(2405), + [anon_sym_char] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_fn] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_impl] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_mod] = ACTIONS(2405), + [anon_sym_pub] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_unsafe] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_move] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), + [sym_block_comment] = ACTIONS(3), + }, + [617] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_macro_rules_BANG] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_PIPE] = ACTIONS(2407), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_impl] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_mod] = ACTIONS(2409), + [anon_sym_pub] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_unsafe] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_extern] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_move] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), + [sym_block_comment] = ACTIONS(3), + }, + [618] = { + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_macro_rules_BANG] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1056), + [anon_sym_DOT_DOT] = ACTIONS(1056), + [anon_sym_COLON_COLON] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(1056), + [anon_sym_u8] = ACTIONS(1058), + [anon_sym_i8] = ACTIONS(1058), + [anon_sym_u16] = ACTIONS(1058), + [anon_sym_i16] = ACTIONS(1058), + [anon_sym_u32] = ACTIONS(1058), + [anon_sym_i32] = ACTIONS(1058), + [anon_sym_u64] = ACTIONS(1058), + [anon_sym_i64] = ACTIONS(1058), + [anon_sym_u128] = ACTIONS(1058), + [anon_sym_i128] = ACTIONS(1058), + [anon_sym_isize] = ACTIONS(1058), + [anon_sym_usize] = ACTIONS(1058), + [anon_sym_f32] = ACTIONS(1058), + [anon_sym_f64] = ACTIONS(1058), + [anon_sym_bool] = ACTIONS(1058), + [anon_sym_str] = ACTIONS(1058), + [anon_sym_char] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_fn] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_impl] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_mod] = ACTIONS(1058), + [anon_sym_pub] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1058), + [anon_sym_trait] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1058), + [anon_sym_unsafe] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_yield] = ACTIONS(1058), + [anon_sym_move] = ACTIONS(1058), + [sym_integer_literal] = ACTIONS(1056), + [aux_sym_string_literal_token1] = ACTIONS(1056), + [sym_char_literal] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1058), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1056), + [sym_raw_string_literal] = ACTIONS(1056), + [sym_float_literal] = ACTIONS(1056), + [sym_block_comment] = ACTIONS(3), + }, + [619] = { + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_macro_rules_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(1066), + [anon_sym_POUND] = 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_str] = ACTIONS(1068), + [anon_sym_char] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_default] = 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_loop] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_mod] = ACTIONS(1068), + [anon_sym_pub] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_trait] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_unsafe] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1068), + [sym_super] = ACTIONS(1068), + [sym_crate] = ACTIONS(1068), + [sym_metavariable] = ACTIONS(1066), + [sym_raw_string_literal] = ACTIONS(1066), + [sym_float_literal] = ACTIONS(1066), + [sym_block_comment] = ACTIONS(3), + }, + [620] = { + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_macro_rules_BANG] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_DOT_DOT] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(2411), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_move] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), + [sym_block_comment] = ACTIONS(3), + }, + [621] = { + [ts_builtin_sym_end] = ACTIONS(2415), + [sym_identifier] = ACTIONS(2417), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_macro_rules_BANG] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_DOT_DOT] = ACTIONS(2415), + [anon_sym_COLON_COLON] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(2415), + [anon_sym_u8] = ACTIONS(2417), + [anon_sym_i8] = ACTIONS(2417), + [anon_sym_u16] = ACTIONS(2417), + [anon_sym_i16] = ACTIONS(2417), + [anon_sym_u32] = ACTIONS(2417), + [anon_sym_i32] = ACTIONS(2417), + [anon_sym_u64] = ACTIONS(2417), + [anon_sym_i64] = ACTIONS(2417), + [anon_sym_u128] = ACTIONS(2417), + [anon_sym_i128] = ACTIONS(2417), + [anon_sym_isize] = ACTIONS(2417), + [anon_sym_usize] = ACTIONS(2417), + [anon_sym_f32] = ACTIONS(2417), + [anon_sym_f64] = ACTIONS(2417), + [anon_sym_bool] = ACTIONS(2417), + [anon_sym_str] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_fn] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_impl] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_move] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), + [sym_block_comment] = ACTIONS(3), + }, + [622] = { + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_macro_rules_BANG] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(2419), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_move] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2419), + [sym_raw_string_literal] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), + [sym_block_comment] = ACTIONS(3), + }, + [623] = { + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_macro_rules_BANG] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_COLON_COLON] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_move] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2423), + [sym_raw_string_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + [sym_block_comment] = ACTIONS(3), + }, + [624] = { + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_macro_rules_BANG] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_move] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2427), + [sym_raw_string_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_block_comment] = ACTIONS(3), + }, + [625] = { + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_DOT_DOT] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(2431), + [anon_sym_u8] = ACTIONS(2433), + [anon_sym_i8] = ACTIONS(2433), + [anon_sym_u16] = ACTIONS(2433), + [anon_sym_i16] = ACTIONS(2433), + [anon_sym_u32] = ACTIONS(2433), + [anon_sym_i32] = ACTIONS(2433), + [anon_sym_u64] = ACTIONS(2433), + [anon_sym_i64] = ACTIONS(2433), + [anon_sym_u128] = ACTIONS(2433), + [anon_sym_i128] = ACTIONS(2433), + [anon_sym_isize] = ACTIONS(2433), + [anon_sym_usize] = ACTIONS(2433), + [anon_sym_f32] = ACTIONS(2433), + [anon_sym_f64] = ACTIONS(2433), + [anon_sym_bool] = ACTIONS(2433), + [anon_sym_str] = ACTIONS(2433), + [anon_sym_char] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_impl] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_mod] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_move] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(2433), + [sym_crate] = ACTIONS(2433), + [sym_metavariable] = ACTIONS(2431), + [sym_raw_string_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), + [sym_block_comment] = ACTIONS(3), + }, + [626] = { + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_macro_rules_BANG] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(2437), + [anon_sym_i8] = ACTIONS(2437), + [anon_sym_u16] = ACTIONS(2437), + [anon_sym_i16] = ACTIONS(2437), + [anon_sym_u32] = ACTIONS(2437), + [anon_sym_i32] = ACTIONS(2437), + [anon_sym_u64] = ACTIONS(2437), + [anon_sym_i64] = ACTIONS(2437), + [anon_sym_u128] = ACTIONS(2437), + [anon_sym_i128] = ACTIONS(2437), + [anon_sym_isize] = ACTIONS(2437), + [anon_sym_usize] = ACTIONS(2437), + [anon_sym_f32] = ACTIONS(2437), + [anon_sym_f64] = ACTIONS(2437), + [anon_sym_bool] = ACTIONS(2437), + [anon_sym_str] = ACTIONS(2437), + [anon_sym_char] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_fn] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_mod] = ACTIONS(2437), + [anon_sym_pub] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2435), + [aux_sym_string_literal_token1] = ACTIONS(2435), + [sym_char_literal] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_metavariable] = ACTIONS(2435), + [sym_raw_string_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + [sym_block_comment] = ACTIONS(3), + }, + [627] = { + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_macro_rules_BANG] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_DOT_DOT] = ACTIONS(2439), + [anon_sym_COLON_COLON] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_u8] = ACTIONS(2441), + [anon_sym_i8] = ACTIONS(2441), + [anon_sym_u16] = ACTIONS(2441), + [anon_sym_i16] = ACTIONS(2441), + [anon_sym_u32] = ACTIONS(2441), + [anon_sym_i32] = ACTIONS(2441), + [anon_sym_u64] = ACTIONS(2441), + [anon_sym_i64] = ACTIONS(2441), + [anon_sym_u128] = ACTIONS(2441), + [anon_sym_i128] = ACTIONS(2441), + [anon_sym_isize] = ACTIONS(2441), + [anon_sym_usize] = ACTIONS(2441), + [anon_sym_f32] = ACTIONS(2441), + [anon_sym_f64] = ACTIONS(2441), + [anon_sym_bool] = ACTIONS(2441), + [anon_sym_str] = ACTIONS(2441), + [anon_sym_char] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_impl] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_mod] = ACTIONS(2441), + [anon_sym_pub] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_move] = ACTIONS(2441), + [sym_integer_literal] = ACTIONS(2439), + [aux_sym_string_literal_token1] = ACTIONS(2439), + [sym_char_literal] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_metavariable] = ACTIONS(2439), + [sym_raw_string_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), + [sym_block_comment] = ACTIONS(3), + }, + [628] = { + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_macro_rules_BANG] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_COLON_COLON] = ACTIONS(2443), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_u8] = ACTIONS(2445), + [anon_sym_i8] = ACTIONS(2445), + [anon_sym_u16] = ACTIONS(2445), + [anon_sym_i16] = ACTIONS(2445), + [anon_sym_u32] = ACTIONS(2445), + [anon_sym_i32] = ACTIONS(2445), + [anon_sym_u64] = ACTIONS(2445), + [anon_sym_i64] = ACTIONS(2445), + [anon_sym_u128] = ACTIONS(2445), + [anon_sym_i128] = ACTIONS(2445), + [anon_sym_isize] = ACTIONS(2445), + [anon_sym_usize] = ACTIONS(2445), + [anon_sym_f32] = ACTIONS(2445), + [anon_sym_f64] = ACTIONS(2445), + [anon_sym_bool] = ACTIONS(2445), + [anon_sym_str] = ACTIONS(2445), + [anon_sym_char] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_impl] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_mod] = ACTIONS(2445), + [anon_sym_pub] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_move] = ACTIONS(2445), + [sym_integer_literal] = ACTIONS(2443), + [aux_sym_string_literal_token1] = ACTIONS(2443), + [sym_char_literal] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_crate] = ACTIONS(2445), + [sym_metavariable] = ACTIONS(2443), + [sym_raw_string_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), + [sym_block_comment] = ACTIONS(3), + }, + [629] = { + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_macro_rules_BANG] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1046), + [anon_sym_COLON_COLON] = ACTIONS(1046), + [anon_sym_POUND] = 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_str] = ACTIONS(1048), + [anon_sym_char] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1048), + [anon_sym_async] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_default] = 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_loop] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_mod] = ACTIONS(1048), + [anon_sym_pub] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_trait] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_unsafe] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1048), + [sym_super] = ACTIONS(1048), + [sym_crate] = ACTIONS(1048), + [sym_metavariable] = ACTIONS(1046), + [sym_raw_string_literal] = ACTIONS(1046), + [sym_float_literal] = ACTIONS(1046), + [sym_block_comment] = ACTIONS(3), + }, + [630] = { + [sym_attribute_item] = STATE(659), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(652), + [sym_last_match_arm] = STATE(3046), + [sym_match_pattern] = STATE(3048), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(659), + [aux_sym_match_block_repeat1] = STATE(652), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1909), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [631] = { + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_macro_rules_BANG] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_COLON_COLON] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_u8] = ACTIONS(2451), + [anon_sym_i8] = ACTIONS(2451), + [anon_sym_u16] = ACTIONS(2451), + [anon_sym_i16] = ACTIONS(2451), + [anon_sym_u32] = ACTIONS(2451), + [anon_sym_i32] = ACTIONS(2451), + [anon_sym_u64] = ACTIONS(2451), + [anon_sym_i64] = ACTIONS(2451), + [anon_sym_u128] = ACTIONS(2451), + [anon_sym_i128] = ACTIONS(2451), + [anon_sym_isize] = ACTIONS(2451), + [anon_sym_usize] = ACTIONS(2451), + [anon_sym_f32] = ACTIONS(2451), + [anon_sym_f64] = ACTIONS(2451), + [anon_sym_bool] = ACTIONS(2451), + [anon_sym_str] = ACTIONS(2451), + [anon_sym_char] = ACTIONS(2451), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_async] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(2451), + [anon_sym_const] = ACTIONS(2451), + [anon_sym_continue] = ACTIONS(2451), + [anon_sym_default] = ACTIONS(2451), + [anon_sym_enum] = ACTIONS(2451), + [anon_sym_fn] = ACTIONS(2451), + [anon_sym_for] = ACTIONS(2451), + [anon_sym_if] = ACTIONS(2451), + [anon_sym_impl] = ACTIONS(2451), + [anon_sym_let] = ACTIONS(2451), + [anon_sym_loop] = ACTIONS(2451), + [anon_sym_match] = ACTIONS(2451), + [anon_sym_mod] = ACTIONS(2451), + [anon_sym_pub] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2451), + [anon_sym_static] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2451), + [anon_sym_trait] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2451), + [anon_sym_union] = ACTIONS(2451), + [anon_sym_unsafe] = ACTIONS(2451), + [anon_sym_use] = ACTIONS(2451), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_extern] = ACTIONS(2451), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_move] = ACTIONS(2451), + [sym_integer_literal] = ACTIONS(2449), + [aux_sym_string_literal_token1] = ACTIONS(2449), + [sym_char_literal] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2451), + [anon_sym_false] = ACTIONS(2451), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2451), + [sym_super] = ACTIONS(2451), + [sym_crate] = ACTIONS(2451), + [sym_metavariable] = ACTIONS(2449), + [sym_raw_string_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), + [sym_block_comment] = ACTIONS(3), + }, + [632] = { + [ts_builtin_sym_end] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_macro_rules_BANG] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_DOT_DOT] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(2455), + [anon_sym_i8] = ACTIONS(2455), + [anon_sym_u16] = ACTIONS(2455), + [anon_sym_i16] = ACTIONS(2455), + [anon_sym_u32] = ACTIONS(2455), + [anon_sym_i32] = ACTIONS(2455), + [anon_sym_u64] = ACTIONS(2455), + [anon_sym_i64] = ACTIONS(2455), + [anon_sym_u128] = ACTIONS(2455), + [anon_sym_i128] = ACTIONS(2455), + [anon_sym_isize] = ACTIONS(2455), + [anon_sym_usize] = ACTIONS(2455), + [anon_sym_f32] = ACTIONS(2455), + [anon_sym_f64] = ACTIONS(2455), + [anon_sym_bool] = ACTIONS(2455), + [anon_sym_str] = ACTIONS(2455), + [anon_sym_char] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_fn] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_impl] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), + [anon_sym_loop] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_mod] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_trait] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_use] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym_yield] = ACTIONS(2455), + [anon_sym_move] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2453), + [aux_sym_string_literal_token1] = ACTIONS(2453), + [sym_char_literal] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2455), + [sym_super] = ACTIONS(2455), + [sym_crate] = ACTIONS(2455), + [sym_metavariable] = ACTIONS(2453), + [sym_raw_string_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_block_comment] = ACTIONS(3), + }, + [633] = { + [ts_builtin_sym_end] = ACTIONS(2457), + [sym_identifier] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_macro_rules_BANG] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_DOT_DOT] = ACTIONS(2457), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_u8] = ACTIONS(2459), + [anon_sym_i8] = ACTIONS(2459), + [anon_sym_u16] = ACTIONS(2459), + [anon_sym_i16] = ACTIONS(2459), + [anon_sym_u32] = ACTIONS(2459), + [anon_sym_i32] = ACTIONS(2459), + [anon_sym_u64] = ACTIONS(2459), + [anon_sym_i64] = ACTIONS(2459), + [anon_sym_u128] = ACTIONS(2459), + [anon_sym_i128] = ACTIONS(2459), + [anon_sym_isize] = ACTIONS(2459), + [anon_sym_usize] = ACTIONS(2459), + [anon_sym_f32] = ACTIONS(2459), + [anon_sym_f64] = ACTIONS(2459), + [anon_sym_bool] = ACTIONS(2459), + [anon_sym_str] = ACTIONS(2459), + [anon_sym_char] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2459), + [anon_sym_async] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_continue] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2459), + [anon_sym_enum] = ACTIONS(2459), + [anon_sym_fn] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_impl] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2459), + [anon_sym_loop] = ACTIONS(2459), + [anon_sym_match] = ACTIONS(2459), + [anon_sym_mod] = ACTIONS(2459), + [anon_sym_pub] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_trait] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2459), + [anon_sym_union] = ACTIONS(2459), + [anon_sym_unsafe] = ACTIONS(2459), + [anon_sym_use] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2459), + [anon_sym_yield] = ACTIONS(2459), + [anon_sym_move] = ACTIONS(2459), + [sym_integer_literal] = ACTIONS(2457), + [aux_sym_string_literal_token1] = ACTIONS(2457), + [sym_char_literal] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2459), + [anon_sym_false] = ACTIONS(2459), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2459), + [sym_super] = ACTIONS(2459), + [sym_crate] = ACTIONS(2459), + [sym_metavariable] = ACTIONS(2457), + [sym_raw_string_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_block_comment] = ACTIONS(3), + }, + [634] = { + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_macro_rules_BANG] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_DOT_DOT] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2461), + [anon_sym_u8] = ACTIONS(2463), + [anon_sym_i8] = ACTIONS(2463), + [anon_sym_u16] = ACTIONS(2463), + [anon_sym_i16] = ACTIONS(2463), + [anon_sym_u32] = ACTIONS(2463), + [anon_sym_i32] = ACTIONS(2463), + [anon_sym_u64] = ACTIONS(2463), + [anon_sym_i64] = ACTIONS(2463), + [anon_sym_u128] = ACTIONS(2463), + [anon_sym_i128] = ACTIONS(2463), + [anon_sym_isize] = ACTIONS(2463), + [anon_sym_usize] = ACTIONS(2463), + [anon_sym_f32] = ACTIONS(2463), + [anon_sym_f64] = ACTIONS(2463), + [anon_sym_bool] = ACTIONS(2463), + [anon_sym_str] = ACTIONS(2463), + [anon_sym_char] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_async] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_impl] = ACTIONS(2463), + [anon_sym_let] = ACTIONS(2463), + [anon_sym_loop] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_mod] = ACTIONS(2463), + [anon_sym_pub] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_trait] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_use] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym_yield] = ACTIONS(2463), + [anon_sym_move] = ACTIONS(2463), + [sym_integer_literal] = ACTIONS(2461), + [aux_sym_string_literal_token1] = ACTIONS(2461), + [sym_char_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2463), + [anon_sym_false] = ACTIONS(2463), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2463), + [sym_super] = ACTIONS(2463), + [sym_crate] = ACTIONS(2463), + [sym_metavariable] = ACTIONS(2461), + [sym_raw_string_literal] = ACTIONS(2461), + [sym_float_literal] = ACTIONS(2461), + [sym_block_comment] = ACTIONS(3), + }, + [635] = { + [ts_builtin_sym_end] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_macro_rules_BANG] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_u8] = ACTIONS(2467), + [anon_sym_i8] = ACTIONS(2467), + [anon_sym_u16] = ACTIONS(2467), + [anon_sym_i16] = ACTIONS(2467), + [anon_sym_u32] = ACTIONS(2467), + [anon_sym_i32] = ACTIONS(2467), + [anon_sym_u64] = ACTIONS(2467), + [anon_sym_i64] = ACTIONS(2467), + [anon_sym_u128] = ACTIONS(2467), + [anon_sym_i128] = ACTIONS(2467), + [anon_sym_isize] = ACTIONS(2467), + [anon_sym_usize] = ACTIONS(2467), + [anon_sym_f32] = ACTIONS(2467), + [anon_sym_f64] = ACTIONS(2467), + [anon_sym_bool] = ACTIONS(2467), + [anon_sym_str] = ACTIONS(2467), + [anon_sym_char] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_async] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_impl] = ACTIONS(2467), + [anon_sym_let] = ACTIONS(2467), + [anon_sym_loop] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_mod] = ACTIONS(2467), + [anon_sym_pub] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_trait] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_move] = ACTIONS(2467), + [sym_integer_literal] = ACTIONS(2465), + [aux_sym_string_literal_token1] = ACTIONS(2465), + [sym_char_literal] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2467), + [anon_sym_false] = ACTIONS(2467), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2467), + [sym_super] = ACTIONS(2467), + [sym_crate] = ACTIONS(2467), + [sym_metavariable] = ACTIONS(2465), + [sym_raw_string_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_block_comment] = ACTIONS(3), + }, + [636] = { + [ts_builtin_sym_end] = ACTIONS(2469), + [sym_identifier] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_macro_rules_BANG] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_DOT_DOT] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_async] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_impl] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), + [anon_sym_loop] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_mod] = ACTIONS(2471), + [anon_sym_pub] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_trait] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_use] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_yield] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [sym_integer_literal] = ACTIONS(2469), + [aux_sym_string_literal_token1] = ACTIONS(2469), + [sym_char_literal] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2471), + [anon_sym_false] = ACTIONS(2471), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2471), + [sym_super] = ACTIONS(2471), + [sym_crate] = ACTIONS(2471), + [sym_metavariable] = ACTIONS(2469), + [sym_raw_string_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + [sym_block_comment] = ACTIONS(3), + }, + [637] = { + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_macro_rules_BANG] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2473), + [anon_sym_u8] = ACTIONS(2475), + [anon_sym_i8] = ACTIONS(2475), + [anon_sym_u16] = ACTIONS(2475), + [anon_sym_i16] = ACTIONS(2475), + [anon_sym_u32] = ACTIONS(2475), + [anon_sym_i32] = ACTIONS(2475), + [anon_sym_u64] = ACTIONS(2475), + [anon_sym_i64] = ACTIONS(2475), + [anon_sym_u128] = ACTIONS(2475), + [anon_sym_i128] = ACTIONS(2475), + [anon_sym_isize] = ACTIONS(2475), + [anon_sym_usize] = ACTIONS(2475), + [anon_sym_f32] = ACTIONS(2475), + [anon_sym_f64] = ACTIONS(2475), + [anon_sym_bool] = ACTIONS(2475), + [anon_sym_str] = ACTIONS(2475), + [anon_sym_char] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_impl] = ACTIONS(2475), + [anon_sym_let] = ACTIONS(2475), + [anon_sym_loop] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_mod] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_trait] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_use] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym_yield] = ACTIONS(2475), + [anon_sym_move] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2473), + [aux_sym_string_literal_token1] = ACTIONS(2473), + [sym_char_literal] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2475), + [anon_sym_false] = ACTIONS(2475), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2475), + [sym_super] = ACTIONS(2475), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2473), + [sym_raw_string_literal] = ACTIONS(2473), + [sym_float_literal] = ACTIONS(2473), + [sym_block_comment] = ACTIONS(3), + }, + [638] = { + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_macro_rules_BANG] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_u8] = ACTIONS(2479), + [anon_sym_i8] = ACTIONS(2479), + [anon_sym_u16] = ACTIONS(2479), + [anon_sym_i16] = ACTIONS(2479), + [anon_sym_u32] = ACTIONS(2479), + [anon_sym_i32] = ACTIONS(2479), + [anon_sym_u64] = ACTIONS(2479), + [anon_sym_i64] = ACTIONS(2479), + [anon_sym_u128] = ACTIONS(2479), + [anon_sym_i128] = ACTIONS(2479), + [anon_sym_isize] = ACTIONS(2479), + [anon_sym_usize] = ACTIONS(2479), + [anon_sym_f32] = ACTIONS(2479), + [anon_sym_f64] = ACTIONS(2479), + [anon_sym_bool] = ACTIONS(2479), + [anon_sym_str] = ACTIONS(2479), + [anon_sym_char] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_impl] = ACTIONS(2479), + [anon_sym_let] = ACTIONS(2479), + [anon_sym_loop] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_mod] = ACTIONS(2479), + [anon_sym_pub] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_trait] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_use] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym_yield] = ACTIONS(2479), + [anon_sym_move] = ACTIONS(2479), + [sym_integer_literal] = ACTIONS(2477), + [aux_sym_string_literal_token1] = ACTIONS(2477), + [sym_char_literal] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2479), + [anon_sym_false] = ACTIONS(2479), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2479), + [sym_super] = ACTIONS(2479), + [sym_crate] = ACTIONS(2479), + [sym_metavariable] = ACTIONS(2477), + [sym_raw_string_literal] = ACTIONS(2477), + [sym_float_literal] = ACTIONS(2477), + [sym_block_comment] = ACTIONS(3), + }, + [639] = { + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_macro_rules_BANG] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2481), + [anon_sym_u8] = ACTIONS(2483), + [anon_sym_i8] = ACTIONS(2483), + [anon_sym_u16] = ACTIONS(2483), + [anon_sym_i16] = ACTIONS(2483), + [anon_sym_u32] = ACTIONS(2483), + [anon_sym_i32] = ACTIONS(2483), + [anon_sym_u64] = ACTIONS(2483), + [anon_sym_i64] = ACTIONS(2483), + [anon_sym_u128] = ACTIONS(2483), + [anon_sym_i128] = ACTIONS(2483), + [anon_sym_isize] = ACTIONS(2483), + [anon_sym_usize] = ACTIONS(2483), + [anon_sym_f32] = ACTIONS(2483), + [anon_sym_f64] = ACTIONS(2483), + [anon_sym_bool] = ACTIONS(2483), + [anon_sym_str] = ACTIONS(2483), + [anon_sym_char] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2483), + [anon_sym_async] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_fn] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_impl] = ACTIONS(2483), + [anon_sym_let] = ACTIONS(2483), + [anon_sym_loop] = ACTIONS(2483), + [anon_sym_match] = ACTIONS(2483), + [anon_sym_mod] = ACTIONS(2483), + [anon_sym_pub] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_trait] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_unsafe] = ACTIONS(2483), + [anon_sym_use] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_move] = ACTIONS(2483), + [sym_integer_literal] = ACTIONS(2481), + [aux_sym_string_literal_token1] = ACTIONS(2481), + [sym_char_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2483), + [sym_super] = ACTIONS(2483), + [sym_crate] = ACTIONS(2483), + [sym_metavariable] = ACTIONS(2481), + [sym_raw_string_literal] = ACTIONS(2481), + [sym_float_literal] = ACTIONS(2481), + [sym_block_comment] = ACTIONS(3), + }, + [640] = { + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_macro_rules_BANG] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2485), + [anon_sym_u8] = ACTIONS(2487), + [anon_sym_i8] = ACTIONS(2487), + [anon_sym_u16] = ACTIONS(2487), + [anon_sym_i16] = ACTIONS(2487), + [anon_sym_u32] = ACTIONS(2487), + [anon_sym_i32] = ACTIONS(2487), + [anon_sym_u64] = ACTIONS(2487), + [anon_sym_i64] = ACTIONS(2487), + [anon_sym_u128] = ACTIONS(2487), + [anon_sym_i128] = ACTIONS(2487), + [anon_sym_isize] = ACTIONS(2487), + [anon_sym_usize] = ACTIONS(2487), + [anon_sym_f32] = ACTIONS(2487), + [anon_sym_f64] = ACTIONS(2487), + [anon_sym_bool] = ACTIONS(2487), + [anon_sym_str] = ACTIONS(2487), + [anon_sym_char] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_fn] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_impl] = ACTIONS(2487), + [anon_sym_let] = ACTIONS(2487), + [anon_sym_loop] = ACTIONS(2487), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_mod] = ACTIONS(2487), + [anon_sym_pub] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_trait] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_unsafe] = ACTIONS(2487), + [anon_sym_use] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_move] = ACTIONS(2487), + [sym_integer_literal] = ACTIONS(2485), + [aux_sym_string_literal_token1] = ACTIONS(2485), + [sym_char_literal] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2487), + [anon_sym_false] = ACTIONS(2487), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_crate] = ACTIONS(2487), + [sym_metavariable] = ACTIONS(2485), + [sym_raw_string_literal] = ACTIONS(2485), + [sym_float_literal] = ACTIONS(2485), + [sym_block_comment] = ACTIONS(3), + }, + [641] = { + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_macro_rules_BANG] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2489), + [anon_sym_u8] = ACTIONS(2491), + [anon_sym_i8] = ACTIONS(2491), + [anon_sym_u16] = ACTIONS(2491), + [anon_sym_i16] = ACTIONS(2491), + [anon_sym_u32] = ACTIONS(2491), + [anon_sym_i32] = ACTIONS(2491), + [anon_sym_u64] = ACTIONS(2491), + [anon_sym_i64] = ACTIONS(2491), + [anon_sym_u128] = ACTIONS(2491), + [anon_sym_i128] = ACTIONS(2491), + [anon_sym_isize] = ACTIONS(2491), + [anon_sym_usize] = ACTIONS(2491), + [anon_sym_f32] = ACTIONS(2491), + [anon_sym_f64] = ACTIONS(2491), + [anon_sym_bool] = ACTIONS(2491), + [anon_sym_str] = ACTIONS(2491), + [anon_sym_char] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_impl] = ACTIONS(2491), + [anon_sym_let] = ACTIONS(2491), + [anon_sym_loop] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_mod] = ACTIONS(2491), + [anon_sym_pub] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_trait] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_use] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym_yield] = ACTIONS(2491), + [anon_sym_move] = ACTIONS(2491), + [sym_integer_literal] = ACTIONS(2489), + [aux_sym_string_literal_token1] = ACTIONS(2489), + [sym_char_literal] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2491), + [anon_sym_false] = ACTIONS(2491), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2489), + [sym_raw_string_literal] = ACTIONS(2489), + [sym_float_literal] = ACTIONS(2489), + [sym_block_comment] = ACTIONS(3), + }, + [642] = { + [ts_builtin_sym_end] = ACTIONS(2493), + [sym_identifier] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_macro_rules_BANG] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_DOT_DOT] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2493), + [anon_sym_u8] = ACTIONS(2495), + [anon_sym_i8] = ACTIONS(2495), + [anon_sym_u16] = ACTIONS(2495), + [anon_sym_i16] = ACTIONS(2495), + [anon_sym_u32] = ACTIONS(2495), + [anon_sym_i32] = ACTIONS(2495), + [anon_sym_u64] = ACTIONS(2495), + [anon_sym_i64] = ACTIONS(2495), + [anon_sym_u128] = ACTIONS(2495), + [anon_sym_i128] = ACTIONS(2495), + [anon_sym_isize] = ACTIONS(2495), + [anon_sym_usize] = ACTIONS(2495), + [anon_sym_f32] = ACTIONS(2495), + [anon_sym_f64] = ACTIONS(2495), + [anon_sym_bool] = ACTIONS(2495), + [anon_sym_str] = ACTIONS(2495), + [anon_sym_char] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_async] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_fn] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_impl] = ACTIONS(2495), + [anon_sym_let] = ACTIONS(2495), + [anon_sym_loop] = ACTIONS(2495), + [anon_sym_match] = ACTIONS(2495), + [anon_sym_mod] = ACTIONS(2495), + [anon_sym_pub] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_trait] = ACTIONS(2495), + [anon_sym_type] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_unsafe] = ACTIONS(2495), + [anon_sym_use] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2495), + [anon_sym_move] = ACTIONS(2495), + [sym_integer_literal] = ACTIONS(2493), + [aux_sym_string_literal_token1] = ACTIONS(2493), + [sym_char_literal] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2495), + [anon_sym_false] = ACTIONS(2495), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2495), + [sym_super] = ACTIONS(2495), + [sym_crate] = ACTIONS(2495), + [sym_metavariable] = ACTIONS(2493), + [sym_raw_string_literal] = ACTIONS(2493), + [sym_float_literal] = ACTIONS(2493), + [sym_block_comment] = ACTIONS(3), + }, + [643] = { + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_macro_rules_BANG] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_DOT_DOT] = ACTIONS(2497), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2497), + [anon_sym_u8] = ACTIONS(2499), + [anon_sym_i8] = ACTIONS(2499), + [anon_sym_u16] = ACTIONS(2499), + [anon_sym_i16] = ACTIONS(2499), + [anon_sym_u32] = ACTIONS(2499), + [anon_sym_i32] = ACTIONS(2499), + [anon_sym_u64] = ACTIONS(2499), + [anon_sym_i64] = ACTIONS(2499), + [anon_sym_u128] = ACTIONS(2499), + [anon_sym_i128] = ACTIONS(2499), + [anon_sym_isize] = ACTIONS(2499), + [anon_sym_usize] = ACTIONS(2499), + [anon_sym_f32] = ACTIONS(2499), + [anon_sym_f64] = ACTIONS(2499), + [anon_sym_bool] = ACTIONS(2499), + [anon_sym_str] = ACTIONS(2499), + [anon_sym_char] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2499), + [anon_sym_async] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_fn] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_impl] = ACTIONS(2499), + [anon_sym_let] = ACTIONS(2499), + [anon_sym_loop] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_mod] = ACTIONS(2499), + [anon_sym_pub] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_trait] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_use] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym_yield] = ACTIONS(2499), + [anon_sym_move] = ACTIONS(2499), + [sym_integer_literal] = ACTIONS(2497), + [aux_sym_string_literal_token1] = ACTIONS(2497), + [sym_char_literal] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2499), + [sym_super] = ACTIONS(2499), + [sym_crate] = ACTIONS(2499), + [sym_metavariable] = ACTIONS(2497), + [sym_raw_string_literal] = ACTIONS(2497), + [sym_float_literal] = ACTIONS(2497), + [sym_block_comment] = ACTIONS(3), + }, + [644] = { + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_macro_rules_BANG] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2501), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_u8] = ACTIONS(2503), + [anon_sym_i8] = ACTIONS(2503), + [anon_sym_u16] = ACTIONS(2503), + [anon_sym_i16] = ACTIONS(2503), + [anon_sym_u32] = ACTIONS(2503), + [anon_sym_i32] = ACTIONS(2503), + [anon_sym_u64] = ACTIONS(2503), + [anon_sym_i64] = ACTIONS(2503), + [anon_sym_u128] = ACTIONS(2503), + [anon_sym_i128] = ACTIONS(2503), + [anon_sym_isize] = ACTIONS(2503), + [anon_sym_usize] = ACTIONS(2503), + [anon_sym_f32] = ACTIONS(2503), + [anon_sym_f64] = ACTIONS(2503), + [anon_sym_bool] = ACTIONS(2503), + [anon_sym_str] = ACTIONS(2503), + [anon_sym_char] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2503), + [anon_sym_async] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_fn] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_impl] = ACTIONS(2503), + [anon_sym_let] = ACTIONS(2503), + [anon_sym_loop] = ACTIONS(2503), + [anon_sym_match] = ACTIONS(2503), + [anon_sym_mod] = ACTIONS(2503), + [anon_sym_pub] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_trait] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2503), + [anon_sym_use] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2503), + [anon_sym_move] = ACTIONS(2503), + [sym_integer_literal] = ACTIONS(2501), + [aux_sym_string_literal_token1] = ACTIONS(2501), + [sym_char_literal] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2503), + [anon_sym_false] = ACTIONS(2503), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2503), + [sym_super] = ACTIONS(2503), + [sym_crate] = ACTIONS(2503), + [sym_metavariable] = ACTIONS(2501), + [sym_raw_string_literal] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), + [sym_block_comment] = ACTIONS(3), + }, + [645] = { + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_macro_rules_BANG] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2505), + [anon_sym_u8] = ACTIONS(2507), + [anon_sym_i8] = ACTIONS(2507), + [anon_sym_u16] = ACTIONS(2507), + [anon_sym_i16] = ACTIONS(2507), + [anon_sym_u32] = ACTIONS(2507), + [anon_sym_i32] = ACTIONS(2507), + [anon_sym_u64] = ACTIONS(2507), + [anon_sym_i64] = ACTIONS(2507), + [anon_sym_u128] = ACTIONS(2507), + [anon_sym_i128] = ACTIONS(2507), + [anon_sym_isize] = ACTIONS(2507), + [anon_sym_usize] = ACTIONS(2507), + [anon_sym_f32] = ACTIONS(2507), + [anon_sym_f64] = ACTIONS(2507), + [anon_sym_bool] = ACTIONS(2507), + [anon_sym_str] = ACTIONS(2507), + [anon_sym_char] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [anon_sym_async] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_impl] = ACTIONS(2507), + [anon_sym_let] = ACTIONS(2507), + [anon_sym_loop] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_mod] = ACTIONS(2507), + [anon_sym_pub] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_trait] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_use] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym_yield] = ACTIONS(2507), + [anon_sym_move] = ACTIONS(2507), + [sym_integer_literal] = ACTIONS(2505), + [aux_sym_string_literal_token1] = ACTIONS(2505), + [sym_char_literal] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2507), + [sym_super] = ACTIONS(2507), + [sym_crate] = ACTIONS(2507), + [sym_metavariable] = ACTIONS(2505), + [sym_raw_string_literal] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2505), + [sym_block_comment] = ACTIONS(3), + }, + [646] = { + [ts_builtin_sym_end] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_macro_rules_BANG] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2509), + [anon_sym_u8] = ACTIONS(2511), + [anon_sym_i8] = ACTIONS(2511), + [anon_sym_u16] = ACTIONS(2511), + [anon_sym_i16] = ACTIONS(2511), + [anon_sym_u32] = ACTIONS(2511), + [anon_sym_i32] = ACTIONS(2511), + [anon_sym_u64] = ACTIONS(2511), + [anon_sym_i64] = ACTIONS(2511), + [anon_sym_u128] = ACTIONS(2511), + [anon_sym_i128] = ACTIONS(2511), + [anon_sym_isize] = ACTIONS(2511), + [anon_sym_usize] = ACTIONS(2511), + [anon_sym_f32] = ACTIONS(2511), + [anon_sym_f64] = ACTIONS(2511), + [anon_sym_bool] = ACTIONS(2511), + [anon_sym_str] = ACTIONS(2511), + [anon_sym_char] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_async] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_impl] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_loop] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_mod] = ACTIONS(2511), + [anon_sym_pub] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_trait] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_unsafe] = ACTIONS(2511), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_move] = ACTIONS(2511), + [sym_integer_literal] = ACTIONS(2509), + [aux_sym_string_literal_token1] = ACTIONS(2509), + [sym_char_literal] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2511), + [sym_super] = ACTIONS(2511), + [sym_crate] = ACTIONS(2511), + [sym_metavariable] = ACTIONS(2509), + [sym_raw_string_literal] = ACTIONS(2509), + [sym_float_literal] = ACTIONS(2509), + [sym_block_comment] = ACTIONS(3), + }, + [647] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_macro_rules_BANG] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2513), + [anon_sym_u8] = ACTIONS(2515), + [anon_sym_i8] = ACTIONS(2515), + [anon_sym_u16] = ACTIONS(2515), + [anon_sym_i16] = ACTIONS(2515), + [anon_sym_u32] = ACTIONS(2515), + [anon_sym_i32] = ACTIONS(2515), + [anon_sym_u64] = ACTIONS(2515), + [anon_sym_i64] = ACTIONS(2515), + [anon_sym_u128] = ACTIONS(2515), + [anon_sym_i128] = ACTIONS(2515), + [anon_sym_isize] = ACTIONS(2515), + [anon_sym_usize] = ACTIONS(2515), + [anon_sym_f32] = ACTIONS(2515), + [anon_sym_f64] = ACTIONS(2515), + [anon_sym_bool] = ACTIONS(2515), + [anon_sym_str] = ACTIONS(2515), + [anon_sym_char] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_async] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_default] = ACTIONS(2515), + [anon_sym_enum] = ACTIONS(2515), + [anon_sym_fn] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_impl] = ACTIONS(2515), + [anon_sym_let] = ACTIONS(2515), + [anon_sym_loop] = ACTIONS(2515), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_mod] = ACTIONS(2515), + [anon_sym_pub] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_static] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(2515), + [anon_sym_trait] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_union] = ACTIONS(2515), + [anon_sym_unsafe] = ACTIONS(2515), + [anon_sym_use] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym_yield] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [sym_integer_literal] = ACTIONS(2513), + [aux_sym_string_literal_token1] = ACTIONS(2513), + [sym_char_literal] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2515), + [anon_sym_false] = ACTIONS(2515), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2515), + [sym_super] = ACTIONS(2515), + [sym_crate] = ACTIONS(2515), + [sym_metavariable] = ACTIONS(2513), + [sym_raw_string_literal] = ACTIONS(2513), + [sym_float_literal] = ACTIONS(2513), + [sym_block_comment] = ACTIONS(3), + }, + [648] = { + [ts_builtin_sym_end] = ACTIONS(2517), + [sym_identifier] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_macro_rules_BANG] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_DOT_DOT] = ACTIONS(2517), + [anon_sym_COLON_COLON] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2517), + [anon_sym_u8] = ACTIONS(2519), + [anon_sym_i8] = ACTIONS(2519), + [anon_sym_u16] = ACTIONS(2519), + [anon_sym_i16] = ACTIONS(2519), + [anon_sym_u32] = ACTIONS(2519), + [anon_sym_i32] = ACTIONS(2519), + [anon_sym_u64] = ACTIONS(2519), + [anon_sym_i64] = ACTIONS(2519), + [anon_sym_u128] = ACTIONS(2519), + [anon_sym_i128] = ACTIONS(2519), + [anon_sym_isize] = ACTIONS(2519), + [anon_sym_usize] = ACTIONS(2519), + [anon_sym_f32] = ACTIONS(2519), + [anon_sym_f64] = ACTIONS(2519), + [anon_sym_bool] = ACTIONS(2519), + [anon_sym_str] = ACTIONS(2519), + [anon_sym_char] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2519), + [anon_sym_async] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_fn] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_impl] = ACTIONS(2519), + [anon_sym_let] = ACTIONS(2519), + [anon_sym_loop] = ACTIONS(2519), + [anon_sym_match] = ACTIONS(2519), + [anon_sym_mod] = ACTIONS(2519), + [anon_sym_pub] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_trait] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_unsafe] = ACTIONS(2519), + [anon_sym_use] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym_yield] = ACTIONS(2519), + [anon_sym_move] = ACTIONS(2519), + [sym_integer_literal] = ACTIONS(2517), + [aux_sym_string_literal_token1] = ACTIONS(2517), + [sym_char_literal] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2519), + [anon_sym_false] = ACTIONS(2519), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2519), + [sym_super] = ACTIONS(2519), + [sym_crate] = ACTIONS(2519), + [sym_metavariable] = ACTIONS(2517), + [sym_raw_string_literal] = ACTIONS(2517), + [sym_float_literal] = ACTIONS(2517), + [sym_block_comment] = ACTIONS(3), + }, + [649] = { + [ts_builtin_sym_end] = ACTIONS(2521), + [sym_identifier] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_macro_rules_BANG] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2521), + [anon_sym_u8] = ACTIONS(2523), + [anon_sym_i8] = ACTIONS(2523), + [anon_sym_u16] = ACTIONS(2523), + [anon_sym_i16] = ACTIONS(2523), + [anon_sym_u32] = ACTIONS(2523), + [anon_sym_i32] = ACTIONS(2523), + [anon_sym_u64] = ACTIONS(2523), + [anon_sym_i64] = ACTIONS(2523), + [anon_sym_u128] = ACTIONS(2523), + [anon_sym_i128] = ACTIONS(2523), + [anon_sym_isize] = ACTIONS(2523), + [anon_sym_usize] = ACTIONS(2523), + [anon_sym_f32] = ACTIONS(2523), + [anon_sym_f64] = ACTIONS(2523), + [anon_sym_bool] = ACTIONS(2523), + [anon_sym_str] = ACTIONS(2523), + [anon_sym_char] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_async] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_default] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_fn] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_impl] = ACTIONS(2523), + [anon_sym_let] = ACTIONS(2523), + [anon_sym_loop] = ACTIONS(2523), + [anon_sym_match] = ACTIONS(2523), + [anon_sym_mod] = ACTIONS(2523), + [anon_sym_pub] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_trait] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_unsafe] = ACTIONS(2523), + [anon_sym_use] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2523), + [anon_sym_move] = ACTIONS(2523), + [sym_integer_literal] = ACTIONS(2521), + [aux_sym_string_literal_token1] = ACTIONS(2521), + [sym_char_literal] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2523), + [anon_sym_false] = ACTIONS(2523), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2523), + [sym_super] = ACTIONS(2523), + [sym_crate] = ACTIONS(2523), + [sym_metavariable] = ACTIONS(2521), + [sym_raw_string_literal] = ACTIONS(2521), + [sym_float_literal] = ACTIONS(2521), + [sym_block_comment] = ACTIONS(3), + }, + [650] = { + [ts_builtin_sym_end] = ACTIONS(2525), + [sym_identifier] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_macro_rules_BANG] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_DOT_DOT] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2525), + [anon_sym_u8] = ACTIONS(2527), + [anon_sym_i8] = ACTIONS(2527), + [anon_sym_u16] = ACTIONS(2527), + [anon_sym_i16] = ACTIONS(2527), + [anon_sym_u32] = ACTIONS(2527), + [anon_sym_i32] = ACTIONS(2527), + [anon_sym_u64] = ACTIONS(2527), + [anon_sym_i64] = ACTIONS(2527), + [anon_sym_u128] = ACTIONS(2527), + [anon_sym_i128] = ACTIONS(2527), + [anon_sym_isize] = ACTIONS(2527), + [anon_sym_usize] = ACTIONS(2527), + [anon_sym_f32] = ACTIONS(2527), + [anon_sym_f64] = ACTIONS(2527), + [anon_sym_bool] = ACTIONS(2527), + [anon_sym_str] = ACTIONS(2527), + [anon_sym_char] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_async] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_fn] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_impl] = ACTIONS(2527), + [anon_sym_let] = ACTIONS(2527), + [anon_sym_loop] = ACTIONS(2527), + [anon_sym_match] = ACTIONS(2527), + [anon_sym_mod] = ACTIONS(2527), + [anon_sym_pub] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_trait] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_unsafe] = ACTIONS(2527), + [anon_sym_use] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2527), + [anon_sym_move] = ACTIONS(2527), + [sym_integer_literal] = ACTIONS(2525), + [aux_sym_string_literal_token1] = ACTIONS(2525), + [sym_char_literal] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2527), + [anon_sym_false] = ACTIONS(2527), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2527), + [sym_super] = ACTIONS(2527), + [sym_crate] = ACTIONS(2527), + [sym_metavariable] = ACTIONS(2525), + [sym_raw_string_literal] = ACTIONS(2525), + [sym_float_literal] = ACTIONS(2525), + [sym_block_comment] = ACTIONS(3), + }, + [651] = { + [sym_attribute_item] = STATE(659), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(655), + [sym_last_match_arm] = STATE(2974), + [sym_match_pattern] = STATE(3048), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(659), + [aux_sym_match_block_repeat1] = STATE(655), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [570] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2083), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [652] = { + [sym_attribute_item] = STATE(659), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(656), + [sym_last_match_arm] = STATE(2886), + [sym_match_pattern] = STATE(3048), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(659), + [aux_sym_match_block_repeat1] = STATE(656), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [571] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2072), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [653] = { + [sym_attribute_item] = STATE(659), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(656), + [sym_last_match_arm] = STATE(3019), + [sym_match_pattern] = STATE(3048), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(659), + [aux_sym_match_block_repeat1] = STATE(656), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [572] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1376), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [654] = { + [sym_attribute_item] = STATE(659), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(656), + [sym_last_match_arm] = STATE(2897), + [sym_match_pattern] = STATE(3048), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(659), + [aux_sym_match_block_repeat1] = STATE(656), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [573] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1392), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [655] = { + [sym_attribute_item] = STATE(659), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(656), + [sym_last_match_arm] = STATE(2962), + [sym_match_pattern] = STATE(3048), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(659), + [aux_sym_match_block_repeat1] = STATE(656), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [574] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1763), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [656] = { + [sym_attribute_item] = STATE(657), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(3043), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_arm] = STATE(656), + [sym_match_pattern] = STATE(3043), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(657), + [aux_sym_match_block_repeat1] = STATE(656), + [sym_identifier] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym__] = ACTIONS(2549), + [anon_sym_DOT_DOT] = ACTIONS(2552), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_u8] = ACTIONS(2561), + [anon_sym_i8] = ACTIONS(2561), + [anon_sym_u16] = ACTIONS(2561), + [anon_sym_i16] = ACTIONS(2561), + [anon_sym_u32] = ACTIONS(2561), + [anon_sym_i32] = ACTIONS(2561), + [anon_sym_u64] = ACTIONS(2561), + [anon_sym_i64] = ACTIONS(2561), + [anon_sym_u128] = ACTIONS(2561), + [anon_sym_i128] = ACTIONS(2561), + [anon_sym_isize] = ACTIONS(2561), + [anon_sym_usize] = ACTIONS(2561), + [anon_sym_f32] = ACTIONS(2561), + [anon_sym_f64] = ACTIONS(2561), + [anon_sym_bool] = ACTIONS(2561), + [anon_sym_str] = ACTIONS(2561), + [anon_sym_char] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_ref] = ACTIONS(2570), + [sym_mutable_specifier] = ACTIONS(2573), + [sym_integer_literal] = ACTIONS(2576), + [aux_sym_string_literal_token1] = ACTIONS(2579), + [sym_char_literal] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2582), + [anon_sym_false] = ACTIONS(2582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2585), + [sym_super] = ACTIONS(2585), + [sym_crate] = ACTIONS(2585), + [sym_metavariable] = ACTIONS(2588), + [sym_raw_string_literal] = ACTIONS(2576), + [sym_float_literal] = ACTIONS(2576), + [sym_block_comment] = ACTIONS(3), + }, + [657] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(2913), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_pattern] = STATE(2913), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [575] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1395), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [658] = { + [sym_attribute_item] = STATE(668), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(855), + [sym__type] = STATE(2136), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(668), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [659] = { + [sym_attribute_item] = STATE(717), + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_macro_invocation] = STATE(2913), + [sym_scoped_identifier] = STATE(1881), + [sym_scoped_type_identifier] = STATE(2347), + [sym_match_pattern] = STATE(2888), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2545), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(838), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [576] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1393), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [660] = { + [sym_attribute_item] = STATE(667), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(845), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [661] = { + [sym_attribute_item] = STATE(667), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(845), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [662] = { + [sym_attribute_item] = STATE(667), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(845), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [663] = { + [sym_attribute_item] = STATE(667), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(845), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [664] = { + [sym_attribute_item] = STATE(667), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(845), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [665] = { + [sym_attribute_item] = STATE(667), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(845), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [666] = { + [sym_attribute_item] = STATE(667), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(845), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(667), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [667] = { + [sym_attribute_item] = STATE(1141), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(790), + [sym__type] = STATE(2377), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(1141), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [668] = { + [sym_attribute_item] = STATE(1141), + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym_visibility_modifier] = STATE(858), + [sym__type] = STATE(2189), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_enum_variant_list_repeat1] = STATE(1141), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(2597), + [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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(2603), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [669] = { + [sym_function_modifiers] = STATE(2982), + [sym_const_parameter] = STATE(2316), + [sym_constrained_type_parameter] = STATE(2231), + [sym_optional_type_parameter] = STATE(2316), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(2833), + [sym_qualified_type] = STATE(2979), + [sym_lifetime] = STATE(2040), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(2621), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(2623), + [sym_block_comment] = ACTIONS(3), + }, + [670] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2127), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_RBRACK] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [577] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(1700), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [671] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2250), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_RBRACK] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [578] = { - [sym_bracketed_type] = STATE(2279), - [sym_generic_type] = STATE(2278), - [sym_generic_type_with_turbofish] = STATE(2277), - [sym_scoped_identifier] = STATE(1283), - [sym_scoped_type_identifier] = STATE(1899), - [sym_const_block] = STATE(1377), - [sym__pattern] = STATE(2084), - [sym_tuple_pattern] = STATE(1377), - [sym_slice_pattern] = STATE(1377), - [sym_tuple_struct_pattern] = STATE(1377), - [sym_struct_pattern] = STATE(1377), - [sym_remaining_field_pattern] = STATE(1377), - [sym_mut_pattern] = STATE(1377), - [sym_range_pattern] = STATE(1377), - [sym_ref_pattern] = STATE(1377), - [sym_captured_pattern] = STATE(1377), - [sym_reference_pattern] = STATE(1377), - [sym_or_pattern] = STATE(1377), - [sym__literal_pattern] = STATE(1326), - [sym_negative_literal] = STATE(1331), - [sym_string_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = 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_str] = ACTIONS(1084), - [anon_sym_char] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1086), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_ref] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym__] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(1092), - [sym_mutable_specifier] = ACTIONS(800), - [anon_sym_DOT_DOT] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(714), - [sym_integer_literal] = ACTIONS(716), - [aux_sym_string_literal_token1] = ACTIONS(718), - [sym_char_literal] = ACTIONS(716), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [672] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2251), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1094), - [sym_super] = ACTIONS(1094), - [sym_crate] = ACTIONS(1094), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(716), - [sym_float_literal] = ACTIONS(716), - [sym_block_comment] = ACTIONS(3), - }, - [579] = { - [sym_function_modifiers] = STATE(2308), - [sym_type_parameters] = STATE(680), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1639), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1638), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1498), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [673] = { + [sym_parameter] = STATE(2337), + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2224), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [580] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(555), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2309), + [sym_self] = ACTIONS(2657), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [674] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2195), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [581] = { - [sym_function_modifiers] = STATE(2308), - [sym_type_parameters] = STATE(656), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1680), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1673), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1468), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [675] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2238), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1718), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [676] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2196), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [583] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1875), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [677] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_RBRACK] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [584] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1875), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [678] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [585] = { - [sym_function_modifiers] = STATE(2308), - [sym_type_parameters] = STATE(685), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1648), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1656), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1471), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [679] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [586] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1875), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [680] = { + [sym_parameter] = STATE(2743), + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2419), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [587] = { - [sym_function_modifiers] = STATE(2308), - [sym_type_parameters] = STATE(687), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1660), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1667), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1495), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2657), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [681] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [588] = { - [sym_function_modifiers] = STATE(2292), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1059), - [sym_bracketed_type] = STATE(2391), - [sym_lifetime] = STATE(556), - [sym_array_type] = STATE(1060), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1060), - [sym_tuple_type] = STATE(1060), - [sym_unit_type] = STATE(1060), - [sym_generic_type] = STATE(799), - [sym_generic_type_with_turbofish] = STATE(2392), - [sym_bounded_type] = STATE(1060), - [sym_reference_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_empty_type] = STATE(1060), - [sym_abstract_type] = STATE(1060), - [sym_dynamic_type] = STATE(1060), - [sym_macro_invocation] = STATE(1060), - [sym_scoped_identifier] = STATE(2222), - [sym_scoped_type_identifier] = STATE(715), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2263), - [anon_sym_u8] = ACTIONS(2265), - [anon_sym_i8] = ACTIONS(2265), - [anon_sym_u16] = ACTIONS(2265), - [anon_sym_i16] = ACTIONS(2265), - [anon_sym_u32] = ACTIONS(2265), - [anon_sym_i32] = ACTIONS(2265), - [anon_sym_u64] = ACTIONS(2265), - [anon_sym_i64] = ACTIONS(2265), - [anon_sym_u128] = ACTIONS(2265), - [anon_sym_i128] = ACTIONS(2265), - [anon_sym_isize] = ACTIONS(2265), - [anon_sym_usize] = ACTIONS(2265), - [anon_sym_f32] = ACTIONS(2265), - [anon_sym_f64] = ACTIONS(2265), - [anon_sym_bool] = ACTIONS(2265), - [anon_sym_str] = ACTIONS(2265), - [anon_sym_char] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_dyn] = ACTIONS(2281), - [sym_mutable_specifier] = ACTIONS(2325), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [682] = { + [sym_function_modifiers] = STATE(2982), + [sym_higher_ranked_trait_bound] = STATE(1893), + [sym_removed_trait_bound] = STATE(1893), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1892), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(1891), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [683] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_crate] = ACTIONS(2285), - [sym_metavariable] = ACTIONS(2287), - [sym_block_comment] = ACTIONS(3), - }, - [589] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [684] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [590] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1340), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(568), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), - [sym_mutable_specifier] = ACTIONS(2329), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [685] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_RBRACK] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [591] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1943), - [sym_bracketed_type] = STATE(2289), - [sym_qualified_type] = STATE(2357), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [686] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [592] = { - [sym_attribute_item] = STATE(592), - [aux_sym_enum_variant_list_repeat1] = STATE(592), - [sym_identifier] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_RBRACK] = ACTIONS(2333), - [anon_sym_STAR] = ACTIONS(2333), - [anon_sym_u8] = ACTIONS(2331), - [anon_sym_i8] = ACTIONS(2331), - [anon_sym_u16] = ACTIONS(2331), - [anon_sym_i16] = ACTIONS(2331), - [anon_sym_u32] = ACTIONS(2331), - [anon_sym_i32] = ACTIONS(2331), - [anon_sym_u64] = ACTIONS(2331), - [anon_sym_i64] = ACTIONS(2331), - [anon_sym_u128] = ACTIONS(2331), - [anon_sym_i128] = ACTIONS(2331), - [anon_sym_isize] = ACTIONS(2331), - [anon_sym_usize] = ACTIONS(2331), - [anon_sym_f32] = ACTIONS(2331), - [anon_sym_f64] = ACTIONS(2331), - [anon_sym_bool] = ACTIONS(2331), - [anon_sym_str] = ACTIONS(2331), - [anon_sym_char] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_async] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_default] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_loop] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_POUND] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_COMMA] = ACTIONS(2333), - [anon_sym_ref] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym__] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2333), - [sym_mutable_specifier] = ACTIONS(2331), - [anon_sym_DOT_DOT] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_PIPE] = ACTIONS(2333), - [anon_sym_move] = ACTIONS(2331), - [sym_integer_literal] = ACTIONS(2333), - [aux_sym_string_literal_token1] = ACTIONS(2333), - [sym_char_literal] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2331), - [sym_super] = ACTIONS(2331), - [sym_crate] = ACTIONS(2331), - [sym_metavariable] = ACTIONS(2333), - [sym_raw_string_literal] = ACTIONS(2333), - [sym_float_literal] = ACTIONS(2333), - [sym_block_comment] = ACTIONS(3), - }, - [593] = { - [sym_function_modifiers] = STATE(2308), - [sym_extern_modifier] = STATE(1491), - [sym__type] = STATE(1875), - [sym_bracketed_type] = STATE(2289), - [sym_lifetime] = STATE(2332), - [sym_array_type] = STATE(1333), - [sym_for_lifetimes] = STATE(1179), - [sym_function_type] = STATE(1333), - [sym_tuple_type] = STATE(1333), - [sym_unit_type] = STATE(1333), - [sym_generic_type] = STATE(1305), - [sym_generic_type_with_turbofish] = STATE(2290), - [sym_bounded_type] = STATE(1333), - [sym_reference_type] = STATE(1333), - [sym_pointer_type] = STATE(1333), - [sym_empty_type] = STATE(1333), - [sym_abstract_type] = STATE(1333), - [sym_dynamic_type] = STATE(1333), - [sym_macro_invocation] = STATE(1333), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1269), - [aux_sym_function_modifiers_repeat1] = STATE(1491), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(676), - [anon_sym_const] = ACTIONS(676), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(682), - [anon_sym_for] = ACTIONS(684), - [anon_sym_impl] = ACTIONS(686), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(708), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [687] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_RBRACK] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1691), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [688] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [689] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_RBRACK] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [690] = { + [sym_function_modifiers] = STATE(2982), + [sym_higher_ranked_trait_bound] = STATE(1948), + [sym_removed_trait_bound] = STATE(1948), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(1942), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [691] = { + [sym_function_modifiers] = STATE(2982), + [sym_higher_ranked_trait_bound] = STATE(1948), + [sym_removed_trait_bound] = STATE(1948), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1940), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(1937), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [692] = { + [sym_function_modifiers] = STATE(2982), + [sym_higher_ranked_trait_bound] = STATE(1948), + [sym_removed_trait_bound] = STATE(1948), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1940), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(1942), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [693] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [694] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [695] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2652), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [696] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2665), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [697] = { + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_scoped_identifier] = STATE(1958), + [sym_scoped_type_identifier] = STATE(2347), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2508), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [sym_identifier] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [698] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(2705), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2707), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [699] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [700] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2615), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [701] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2253), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(2709), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [702] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(2711), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [703] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1816), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [704] = { + [sym_function_modifiers] = STATE(2840), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1242), + [sym_bracketed_type] = STATE(2954), + [sym_lifetime] = STATE(2943), + [sym_array_type] = STATE(1251), + [sym_for_lifetimes] = STATE(1395), + [sym_function_type] = STATE(1251), + [sym_tuple_type] = STATE(1251), + [sym_unit_type] = STATE(1251), + [sym_generic_type] = STATE(1151), + [sym_generic_type_with_turbofish] = STATE(2955), + [sym_bounded_type] = STATE(1251), + [sym_reference_type] = STATE(1251), + [sym_pointer_type] = STATE(1251), + [sym_empty_type] = STATE(1251), + [sym_abstract_type] = STATE(1251), + [sym_dynamic_type] = STATE(1251), + [sym_macro_invocation] = STATE(1251), + [sym_scoped_identifier] = STATE(2591), + [sym_scoped_type_identifier] = STATE(906), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2721), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_u8] = ACTIONS(2729), + [anon_sym_i8] = ACTIONS(2729), + [anon_sym_u16] = ACTIONS(2729), + [anon_sym_i16] = ACTIONS(2729), + [anon_sym_u32] = ACTIONS(2729), + [anon_sym_i32] = ACTIONS(2729), + [anon_sym_u64] = ACTIONS(2729), + [anon_sym_i64] = ACTIONS(2729), + [anon_sym_u128] = ACTIONS(2729), + [anon_sym_i128] = ACTIONS(2729), + [anon_sym_isize] = ACTIONS(2729), + [anon_sym_usize] = ACTIONS(2729), + [anon_sym_f32] = ACTIONS(2729), + [anon_sym_f64] = ACTIONS(2729), + [anon_sym_bool] = ACTIONS(2729), + [anon_sym_str] = ACTIONS(2729), + [anon_sym_char] = ACTIONS(2729), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_fn] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(2735), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(2739), + [sym_mutable_specifier] = ACTIONS(2741), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2743), + [sym_super] = ACTIONS(2743), + [sym_crate] = ACTIONS(2743), + [sym_metavariable] = ACTIONS(2745), + [sym_block_comment] = ACTIONS(3), + }, + [705] = { + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_scoped_identifier] = STATE(1958), + [sym_scoped_type_identifier] = STATE(2347), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2502), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [sym_identifier] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [706] = { + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_scoped_identifier] = STATE(1958), + [sym_scoped_type_identifier] = STATE(2347), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2482), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [sym_identifier] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [707] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2625), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [708] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1828), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [709] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2626), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [710] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2700), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [711] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [712] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(2747), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [713] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2314), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [714] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2635), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [715] = { + [sym_function_modifiers] = STATE(2959), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1523), + [sym_bracketed_type] = STATE(3005), + [sym_lifetime] = STATE(3041), + [sym_array_type] = STATE(1473), + [sym_for_lifetimes] = STATE(1377), + [sym_function_type] = STATE(1473), + [sym_tuple_type] = STATE(1473), + [sym_unit_type] = STATE(1473), + [sym_generic_type] = STATE(1365), + [sym_generic_type_with_turbofish] = STATE(3006), + [sym_bounded_type] = STATE(1473), + [sym_reference_type] = STATE(1473), + [sym_pointer_type] = STATE(1473), + [sym_empty_type] = STATE(1473), + [sym_abstract_type] = STATE(1473), + [sym_dynamic_type] = STATE(1473), + [sym_macro_invocation] = STATE(1473), + [sym_scoped_identifier] = STATE(2706), + [sym_scoped_type_identifier] = STATE(1328), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_u8] = ACTIONS(2765), + [anon_sym_i8] = ACTIONS(2765), + [anon_sym_u16] = ACTIONS(2765), + [anon_sym_i16] = ACTIONS(2765), + [anon_sym_u32] = ACTIONS(2765), + [anon_sym_i32] = ACTIONS(2765), + [anon_sym_u64] = ACTIONS(2765), + [anon_sym_i64] = ACTIONS(2765), + [anon_sym_u128] = ACTIONS(2765), + [anon_sym_i128] = ACTIONS(2765), + [anon_sym_isize] = ACTIONS(2765), + [anon_sym_usize] = ACTIONS(2765), + [anon_sym_f32] = ACTIONS(2765), + [anon_sym_f64] = ACTIONS(2765), + [anon_sym_bool] = ACTIONS(2765), + [anon_sym_str] = ACTIONS(2765), + [anon_sym_char] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(2775), + [sym_mutable_specifier] = ACTIONS(2777), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2779), + [sym_super] = ACTIONS(2779), + [sym_crate] = ACTIONS(2779), + [sym_metavariable] = ACTIONS(2781), + [sym_block_comment] = ACTIONS(3), + }, + [716] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2243), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2785), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [717] = { + [sym_attribute_item] = STATE(717), + [aux_sym_enum_variant_list_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_RBRACK] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(2789), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym__] = ACTIONS(2787), + [anon_sym_DOT_DOT] = ACTIONS(2789), + [anon_sym_COMMA] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_POUND] = ACTIONS(2791), + [anon_sym_u8] = ACTIONS(2787), + [anon_sym_i8] = ACTIONS(2787), + [anon_sym_u16] = ACTIONS(2787), + [anon_sym_i16] = ACTIONS(2787), + [anon_sym_u32] = ACTIONS(2787), + [anon_sym_i32] = ACTIONS(2787), + [anon_sym_u64] = ACTIONS(2787), + [anon_sym_i64] = ACTIONS(2787), + [anon_sym_u128] = ACTIONS(2787), + [anon_sym_i128] = ACTIONS(2787), + [anon_sym_isize] = ACTIONS(2787), + [anon_sym_usize] = ACTIONS(2787), + [anon_sym_f32] = ACTIONS(2787), + [anon_sym_f64] = ACTIONS(2787), + [anon_sym_bool] = ACTIONS(2787), + [anon_sym_str] = ACTIONS(2787), + [anon_sym_char] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_async] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_loop] = ACTIONS(2787), + [anon_sym_match] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_unsafe] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_ref] = ACTIONS(2787), + [sym_mutable_specifier] = ACTIONS(2787), + [anon_sym_yield] = ACTIONS(2787), + [anon_sym_move] = ACTIONS(2787), + [sym_integer_literal] = ACTIONS(2789), + [aux_sym_string_literal_token1] = ACTIONS(2789), + [sym_char_literal] = ACTIONS(2789), + [anon_sym_true] = ACTIONS(2787), + [anon_sym_false] = ACTIONS(2787), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2787), + [sym_super] = ACTIONS(2787), + [sym_crate] = ACTIONS(2787), + [sym_metavariable] = ACTIONS(2789), + [sym_raw_string_literal] = ACTIONS(2789), + [sym_float_literal] = ACTIONS(2789), + [sym_block_comment] = ACTIONS(3), + }, + [718] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2636), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [719] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2638), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [720] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2243), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2794), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [721] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2640), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [722] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2765), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [723] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2641), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [724] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2642), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [725] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2778), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [726] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [727] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2621), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [728] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2660), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [729] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2668), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [730] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [731] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2618), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [732] = { + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_scoped_identifier] = STATE(1958), + [sym_scoped_type_identifier] = STATE(2347), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2472), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [sym_identifier] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [733] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2758), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [734] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2604), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(2796), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [735] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [736] = { + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_scoped_identifier] = STATE(1958), + [sym_scoped_type_identifier] = STATE(2347), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2467), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [sym_identifier] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [737] = { + [sym_bracketed_type] = STATE(2998), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2999), + [sym_scoped_identifier] = STATE(1958), + [sym_scoped_type_identifier] = STATE(2347), + [sym_const_block] = STATE(2451), + [sym__pattern] = STATE(2336), + [sym_tuple_pattern] = STATE(2451), + [sym_slice_pattern] = STATE(2451), + [sym_tuple_struct_pattern] = STATE(2451), + [sym_struct_pattern] = STATE(2451), + [sym_remaining_field_pattern] = STATE(2451), + [sym_mut_pattern] = STATE(2451), + [sym_range_pattern] = STATE(2451), + [sym_ref_pattern] = STATE(2451), + [sym_captured_pattern] = STATE(2451), + [sym_reference_pattern] = STATE(2451), + [sym_or_pattern] = STATE(2451), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2108), + [sym_string_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [sym_identifier] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1729), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_ref] = ACTIONS(1739), + [sym_mutable_specifier] = ACTIONS(2798), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1745), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), + [sym_block_comment] = ACTIONS(3), + }, + [738] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2413), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [739] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(2800), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [740] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2616), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [741] = { + [sym_bracketed_type] = STATE(2997), + [sym_generic_type] = STATE(2996), + [sym_generic_type_with_turbofish] = STATE(2995), + [sym_scoped_identifier] = STATE(1716), + [sym_scoped_type_identifier] = STATE(2261), + [sym_const_block] = STATE(1848), + [sym__pattern] = STATE(2344), + [sym_tuple_pattern] = STATE(1848), + [sym_slice_pattern] = STATE(1848), + [sym_tuple_struct_pattern] = STATE(1848), + [sym_struct_pattern] = STATE(1848), + [sym_remaining_field_pattern] = STATE(1848), + [sym_mut_pattern] = STATE(1848), + [sym_range_pattern] = STATE(1848), + [sym_ref_pattern] = STATE(1848), + [sym_captured_pattern] = STATE(1848), + [sym_reference_pattern] = STATE(1848), + [sym_or_pattern] = STATE(1848), + [sym__literal_pattern] = STATE(1759), + [sym_negative_literal] = STATE(1768), + [sym_string_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym_identifier] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(25), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_ref] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + [sym_block_comment] = ACTIONS(3), + }, + [742] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [743] = { + [sym_function_modifiers] = STATE(2840), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1274), + [sym_bracketed_type] = STATE(2954), + [sym_lifetime] = STATE(704), + [sym_array_type] = STATE(1251), + [sym_for_lifetimes] = STATE(1395), + [sym_function_type] = STATE(1251), + [sym_tuple_type] = STATE(1251), + [sym_unit_type] = STATE(1251), + [sym_generic_type] = STATE(1151), + [sym_generic_type_with_turbofish] = STATE(2955), + [sym_bounded_type] = STATE(1251), + [sym_reference_type] = STATE(1251), + [sym_pointer_type] = STATE(1251), + [sym_empty_type] = STATE(1251), + [sym_abstract_type] = STATE(1251), + [sym_dynamic_type] = STATE(1251), + [sym_macro_invocation] = STATE(1251), + [sym_scoped_identifier] = STATE(2591), + [sym_scoped_type_identifier] = STATE(906), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2721), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_u8] = ACTIONS(2729), + [anon_sym_i8] = ACTIONS(2729), + [anon_sym_u16] = ACTIONS(2729), + [anon_sym_i16] = ACTIONS(2729), + [anon_sym_u32] = ACTIONS(2729), + [anon_sym_i32] = ACTIONS(2729), + [anon_sym_u64] = ACTIONS(2729), + [anon_sym_i64] = ACTIONS(2729), + [anon_sym_u128] = ACTIONS(2729), + [anon_sym_i128] = ACTIONS(2729), + [anon_sym_isize] = ACTIONS(2729), + [anon_sym_usize] = ACTIONS(2729), + [anon_sym_f32] = ACTIONS(2729), + [anon_sym_f64] = ACTIONS(2729), + [anon_sym_bool] = ACTIONS(2729), + [anon_sym_str] = ACTIONS(2729), + [anon_sym_char] = ACTIONS(2729), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(2731), + [anon_sym_fn] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(2735), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(2739), + [sym_mutable_specifier] = ACTIONS(2804), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2743), + [sym_super] = ACTIONS(2743), + [sym_crate] = ACTIONS(2743), + [sym_metavariable] = ACTIONS(2745), + [sym_block_comment] = ACTIONS(3), + }, + [744] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [745] = { + [sym_function_modifiers] = STATE(2959), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1439), + [sym_bracketed_type] = STATE(3005), + [sym_lifetime] = STATE(715), + [sym_array_type] = STATE(1473), + [sym_for_lifetimes] = STATE(1377), + [sym_function_type] = STATE(1473), + [sym_tuple_type] = STATE(1473), + [sym_unit_type] = STATE(1473), + [sym_generic_type] = STATE(1365), + [sym_generic_type_with_turbofish] = STATE(3006), + [sym_bounded_type] = STATE(1473), + [sym_reference_type] = STATE(1473), + [sym_pointer_type] = STATE(1473), + [sym_empty_type] = STATE(1473), + [sym_abstract_type] = STATE(1473), + [sym_dynamic_type] = STATE(1473), + [sym_macro_invocation] = STATE(1473), + [sym_scoped_identifier] = STATE(2706), + [sym_scoped_type_identifier] = STATE(1328), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_u8] = ACTIONS(2765), + [anon_sym_i8] = ACTIONS(2765), + [anon_sym_u16] = ACTIONS(2765), + [anon_sym_i16] = ACTIONS(2765), + [anon_sym_u32] = ACTIONS(2765), + [anon_sym_i32] = ACTIONS(2765), + [anon_sym_u64] = ACTIONS(2765), + [anon_sym_i64] = ACTIONS(2765), + [anon_sym_u128] = ACTIONS(2765), + [anon_sym_i128] = ACTIONS(2765), + [anon_sym_isize] = ACTIONS(2765), + [anon_sym_usize] = ACTIONS(2765), + [anon_sym_f32] = ACTIONS(2765), + [anon_sym_f64] = ACTIONS(2765), + [anon_sym_bool] = ACTIONS(2765), + [anon_sym_str] = ACTIONS(2765), + [anon_sym_char] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(2775), + [sym_mutable_specifier] = ACTIONS(2808), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2779), + [sym_super] = ACTIONS(2779), + [sym_crate] = ACTIONS(2779), + [sym_metavariable] = ACTIONS(2781), + [sym_block_comment] = ACTIONS(3), + }, + [746] = { + [sym_function_modifiers] = STATE(2982), + [sym_type_parameters] = STATE(778), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1981), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1847), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [747] = { + [sym_function_modifiers] = STATE(2982), + [sym_type_parameters] = STATE(842), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2022), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(2007), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1844), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [748] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2228), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [749] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [750] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [751] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [752] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(702), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(2824), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [753] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2241), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [754] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2607), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(734), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_mutable_specifier] = ACTIONS(2828), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [755] = { + [sym_function_modifiers] = STATE(2982), + [sym_type_parameters] = STATE(821), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2021), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1867), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [756] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2147), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [757] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [758] = { + [sym_function_modifiers] = STATE(2982), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(2833), + [sym_qualified_type] = STATE(2979), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1664), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, + [759] = { + [sym_function_modifiers] = STATE(2982), + [sym_type_parameters] = STATE(835), + [sym_extern_modifier] = STATE(1908), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(2833), + [sym_lifetime] = STATE(2978), + [sym_array_type] = STATE(1727), + [sym_for_lifetimes] = STATE(1369), + [sym_function_type] = STATE(1727), + [sym_tuple_type] = STATE(1727), + [sym_unit_type] = STATE(1727), + [sym_generic_type] = STATE(2033), + [sym_generic_type_with_turbofish] = STATE(2834), + [sym_bounded_type] = STATE(1727), + [sym_reference_type] = STATE(1727), + [sym_pointer_type] = STATE(1727), + [sym_empty_type] = STATE(1727), + [sym_abstract_type] = STATE(1727), + [sym_dynamic_type] = STATE(1727), + [sym_macro_invocation] = STATE(1727), + [sym_scoped_identifier] = STATE(2709), + [sym_scoped_type_identifier] = STATE(1809), + [aux_sym_function_modifiers_repeat1] = STATE(1908), + [sym_identifier] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_COLON_COLON] = 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_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_dyn] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1442), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2388), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [129] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2604), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [258] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2002), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [387] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1969), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [516] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2003), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [645] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2595), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [774] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1710), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [903] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2725), 1, + sym__type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [1032] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1729), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [1161] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2159), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [1290] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2017), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [1419] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1736), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [1548] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2262), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [1677] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1982), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [1806] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2065), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [1935] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2522), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [2064] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1259), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [2193] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2185), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [2322] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2838), 1, + sym_identifier, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1846), 1, + sym_scoped_type_identifier, + STATE(1979), 1, + sym_generic_type, + STATE(1980), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [2451] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2525), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [2580] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2658), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [2709] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1712), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [2838] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1725), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [2967] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1733), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [3096] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2365), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [3225] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2200), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [3354] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2055), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [3483] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2053), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [3612] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2543), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [3741] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2630), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [3870] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2412), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [3999] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1260), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [4128] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1272), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [4257] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2445), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [4386] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2592), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [4515] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1972), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [4644] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2370), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [4773] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2283), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [4902] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1538), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [5031] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1202), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [5160] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2433), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [5289] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2577), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [5418] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1983), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [5547] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1984), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [5676] = 33, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2840), 1, + sym_self, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1715), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1440), 2, + sym_super, + sym_crate, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [5807] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2035), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [5936] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2374), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [6065] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1987), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [6194] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2489), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [6323] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2608), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [6452] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2050), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [6581] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2005), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [6710] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2559), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [6839] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2058), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [6968] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1989), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [7097] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2039), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [7226] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1718), 1, + sym__type, + STATE(1720), 1, + sym_lifetime, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [7355] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2711), 1, + sym__type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [7484] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2345), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [7613] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2520), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [7742] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2418), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [7871] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2842), 1, + sym_identifier, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1805), 1, + sym_scoped_type_identifier, + STATE(1978), 1, + sym__type, + STATE(1999), 1, + sym_generic_type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [8000] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1718), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [8129] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1966), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [8258] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1994), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [8387] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2469), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [8516] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2556), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [8645] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1977), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [8774] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1715), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [8903] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2692), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [9032] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2004), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [9161] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2714), 1, + sym__type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [9290] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2160), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [9419] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2540), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [9548] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2712), 1, + sym__type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [9677] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2844), 1, + sym_identifier, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1839), 1, + sym_scoped_type_identifier, + STATE(1997), 1, + sym_generic_type, + STATE(1998), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [9806] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2773), 1, + sym__type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [9935] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2397), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [10064] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2438), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [10193] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2462), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [10322] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1408), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [10451] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2008), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [10580] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2846), 1, + sym_identifier, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1838), 1, + sym_scoped_type_identifier, + STATE(1992), 1, + sym_generic_type, + STATE(2009), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [10709] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2322), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [10838] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2562), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [10967] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2377), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [11096] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2241), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [11225] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1959), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [11354] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2302), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [11483] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2012), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [11612] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1718), 1, + sym__type, + STATE(1720), 1, + sym_lifetime, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [11741] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2259), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [11870] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1519), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [11999] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1523), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [12128] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1489), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [12257] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2189), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [12386] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2407), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [12515] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2307), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [12644] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2246), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [12773] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2288), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [12902] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2054), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [13031] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1430), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [13160] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1719), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [13289] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1243), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [13418] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1242), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [13547] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1594), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [13676] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2682), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [13805] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1479), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [13934] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2031), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [14063] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1721), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [14192] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1476), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [14321] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1717), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [14450] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1469), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [14579] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1440), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [14708] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2420), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [14837] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1229), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [14966] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2419), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2421), 42, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15037] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1206), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [15166] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_BANG, + ACTIONS(2761), 1, + anon_sym_AMP, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2767), 1, + anon_sym_default, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, + anon_sym_impl, + ACTIONS(2773), 1, + anon_sym_union, + ACTIONS(2775), 1, + anon_sym_dyn, + ACTIONS(2781), 1, + sym_metavariable, + STATE(1328), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1445), 1, + sym__type, + STATE(2706), 1, + sym_scoped_identifier, + STATE(2959), 1, + sym_function_modifiers, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, + STATE(3041), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + STATE(1473), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2765), 17, + 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_str, + anon_sym_char, + [15295] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2057), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [15424] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(2019), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [15553] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1221), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [15682] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1198), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [15811] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1196), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [15940] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1198), 1, + anon_sym_STAR, + ACTIONS(1202), 1, + anon_sym_BANG, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1232), 1, + anon_sym_impl, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1240), 1, + anon_sym_dyn, + ACTIONS(1420), 1, + anon_sym_LPAREN, + ACTIONS(1424), 1, + anon_sym_LBRACK, + ACTIONS(1426), 1, + anon_sym_AMP, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(1434), 1, + anon_sym_default, + ACTIONS(1436), 1, + anon_sym_union, + ACTIONS(1442), 1, + sym_metavariable, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1664), 1, + sym_scoped_type_identifier, + STATE(1702), 1, + sym_generic_type, + STATE(1970), 1, + sym__type, + STATE(2709), 1, + sym_scoped_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2978), 1, + sym_lifetime, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(1440), 3, + sym_self, + sym_super, + sym_crate, + STATE(1727), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(1432), 17, + 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_str, + anon_sym_char, + [16069] = 32, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2713), 1, + sym_identifier, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2721), 1, + anon_sym_STAR, + ACTIONS(2723), 1, + anon_sym_BANG, + ACTIONS(2725), 1, + anon_sym_AMP, + ACTIONS(2727), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + anon_sym_default, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(2735), 1, + anon_sym_impl, + ACTIONS(2737), 1, + anon_sym_union, + ACTIONS(2739), 1, + anon_sym_dyn, + ACTIONS(2745), 1, + sym_metavariable, + STATE(906), 1, + sym_scoped_type_identifier, + STATE(1151), 1, + sym_generic_type, + STATE(1197), 1, + sym__type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2591), 1, + sym_scoped_identifier, + STATE(2840), 1, + sym_function_modifiers, + STATE(2943), 1, + sym_lifetime, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2743), 3, + sym_self, + sym_super, + sym_crate, + STATE(1251), 11, + 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, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2729), 17, + 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_str, + anon_sym_char, + [16198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2850), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2848), 40, + anon_sym_DASH, + 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_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2854), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2852), 40, + anon_sym_DASH, + 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_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1402), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1400), 40, + anon_sym_DASH, + 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_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(888), 18, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2856), 39, + 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_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2419), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2421), 38, + anon_sym__, + anon_sym_DOT_DOT, + 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_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_ref, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16524] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2860), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(2858), 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_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16585] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1056), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1058), 39, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1066), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1068), 39, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16699] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1046), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1048), 39, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16756] = 9, + ACTIONS(2864), 1, + anon_sym_LPAREN, + ACTIONS(2868), 1, + anon_sym_BANG, + ACTIONS(2870), 1, + anon_sym_COLON_COLON, + ACTIONS(2872), 1, + anon_sym_LT2, + STATE(1153), 1, + sym_parameters, + STATE(1156), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2866), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2862), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [16825] = 6, + ACTIONS(2878), 1, + anon_sym_BANG, + ACTIONS(2880), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2876), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_as, + ACTIONS(2874), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [16887] = 8, + ACTIONS(2864), 1, + anon_sym_LPAREN, + ACTIONS(2870), 1, + anon_sym_COLON_COLON, + ACTIONS(2872), 1, + anon_sym_LT2, + STATE(1153), 1, + sym_parameters, + STATE(1156), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2886), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2884), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [16953] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2165), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2167), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17009] = 8, + ACTIONS(2864), 1, + anon_sym_LPAREN, + ACTIONS(2870), 1, + anon_sym_COLON_COLON, + ACTIONS(2872), 1, + anon_sym_LT2, + STATE(1153), 1, + sym_parameters, + STATE(1156), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2890), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2888), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [17075] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1919), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2161), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2163), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17187] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1687), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1689), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1619), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1621), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17299] = 5, + ACTIONS(2896), 1, + anon_sym_BANG, + ACTIONS(2898), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2894), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2892), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LT2, + [17358] = 5, + ACTIONS(2904), 1, + anon_sym_BANG, + ACTIONS(2906), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2902), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2900), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LT2, + [17417] = 7, + ACTIONS(2864), 1, + anon_sym_LPAREN, + ACTIONS(2872), 1, + anon_sym_LT2, + STATE(1157), 1, + sym_type_arguments, + STATE(1158), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2910), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2908), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [17480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(828), 8, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(826), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17535] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(832), 8, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(830), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17590] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1146), 8, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1148), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17645] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1150), 8, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1152), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17700] = 5, + ACTIONS(2916), 1, + anon_sym_BANG, + ACTIONS(2918), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2914), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2912), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LT2, + [17759] = 5, + ACTIONS(2924), 1, + anon_sym_BANG, + ACTIONS(2926), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2922), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2920), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LT2, + [17818] = 7, + ACTIONS(2868), 1, + anon_sym_BANG, + ACTIONS(2928), 1, + anon_sym_LBRACE, + ACTIONS(2930), 1, + anon_sym_COLON_COLON, + STATE(1194), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1162), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [17881] = 7, + ACTIONS(2864), 1, + anon_sym_LPAREN, + ACTIONS(2872), 1, + anon_sym_LT2, + STATE(1157), 1, + sym_type_arguments, + STATE(1158), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2934), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2932), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [17944] = 7, + ACTIONS(2864), 1, + anon_sym_LPAREN, + ACTIONS(2872), 1, + anon_sym_LT2, + STATE(1157), 1, + sym_type_arguments, + STATE(1158), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2938), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2936), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [18007] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2105), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2107), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18061] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2497), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2499), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18115] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1873), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1875), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18169] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1881), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1883), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1885), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1887), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18277] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1889), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1891), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18331] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1893), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1895), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1901), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1903), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18439] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1905), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1907), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18493] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1957), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1959), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18547] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2021), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2023), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18601] = 5, + ACTIONS(2944), 1, + anon_sym_SQUOTE, + STATE(1225), 1, + sym_loop_label, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2942), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2940), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [18659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2045), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2047), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18713] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2069), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2071), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2073), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2075), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18821] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2077), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2079), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18875] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2081), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2083), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2089), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2091), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18983] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2093), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2095), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19037] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2109), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2111), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19091] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2117), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2119), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19145] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2363), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2365), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19199] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2121), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2123), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19253] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2129), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2131), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19307] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2137), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2139), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19361] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2153), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2155), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19415] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2157), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2159), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19469] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2457), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2459), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19523] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2347), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2349), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19577] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2335), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2337), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19631] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1865), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1867), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19685] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1861), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1863), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2331), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2333), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19793] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2307), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2309), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2269), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19901] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2291), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2293), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2311), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2313), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2315), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2317), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20063] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2319), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2321), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20117] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2323), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2325), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20171] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2327), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2329), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20225] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2339), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2341), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20279] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2351), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2353), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20333] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1857), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1859), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2359), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2361), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2383), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2385), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2411), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2413), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20549] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2415), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2417), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2423), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2425), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2439), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2441), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20711] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2443), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2445), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20765] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2469), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2471), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20819] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2473), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2475), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20873] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2481), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2483), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2485), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2487), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20981] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2493), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2495), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1853), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1855), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21089] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1849), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1851), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21143] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1845), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1847), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2517), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2519), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21251] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2525), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2527), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1841), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1843), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21359] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2453), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2455), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21413] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2371), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2373), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21467] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1837), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1839), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21521] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1793), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1795), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21575] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1785), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1787), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21629] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1781), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1783), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21683] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1909), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1911), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21737] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1777), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1779), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21791] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1769), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1771), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21845] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1929), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1931), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21899] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2303), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2305), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21953] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1965), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1967), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22007] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2263), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2265), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22061] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2299), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2301), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22115] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1969), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1971), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22169] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2379), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2381), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1765), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1767), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22277] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2449), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2451), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22331] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1761), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1763), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1757), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1759), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22439] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2297), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22493] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2465), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2467), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22547] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2477), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2479), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22601] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2461), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2463), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22655] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1711), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1713), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22709] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1707), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1709), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22763] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2287), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2289), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22817] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2275), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2277), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22871] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2259), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2261), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22925] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1695), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1697), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22979] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1691), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1693), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23033] = 4, + ACTIONS(2946), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2896), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2898), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + [23089] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2247), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2249), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23143] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1647), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1649), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1627), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1629), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23251] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2239), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2241), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2227), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2229), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23359] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2219), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2221), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23413] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2419), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2421), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23467] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2215), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2217), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23521] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1985), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1987), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23575] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1961), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1963), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23629] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1817), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1819), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23683] = 4, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2924), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2926), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + [23739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1813), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1815), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23793] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1703), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1705), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1635), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1637), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23901] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2203), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2205), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2235), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2237), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2255), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2257), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24063] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2355), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2357), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24117] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2375), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2377), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24171] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2431), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2433), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24225] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2437), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24279] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2489), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2491), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24333] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2916), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2918), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + [24387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2507), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2509), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2511), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2231), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2233), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24549] = 5, + ACTIONS(2950), 1, + anon_sym_else, + STATE(1209), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(982), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(980), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [24607] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2251), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2253), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24661] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2271), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2273), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24715] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2367), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2369), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24769] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2211), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2213), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24823] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2279), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2281), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24877] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2207), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2209), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24931] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2283), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2285), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24985] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2199), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25039] = 5, + ACTIONS(2950), 1, + anon_sym_else, + STATE(1216), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(988), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(986), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [25097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2387), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2389), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25151] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2399), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2401), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25205] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2409), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25259] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2193), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2195), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2427), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2429), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1869), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1871), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2189), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2191), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2181), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2183), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25529] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2501), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2503), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2513), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2515), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2521), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2523), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25691] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2177), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2179), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25745] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2173), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2175), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25799] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2169), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2171), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25853] = 4, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2916), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2918), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + [25909] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1797), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1799), 38, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25963] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2403), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2405), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65348,86 +107343,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [129] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1591), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + sym_self, + sym_super, + sym_crate, + [26017] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(2391), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2393), 38, + 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_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26071] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2149), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2151), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65445,86 +107445,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [258] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1981), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + sym_self, + sym_super, + sym_crate, + [26125] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(1603), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1605), 38, + 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_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2141), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2143), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65542,86 +107547,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [387] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2092), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + sym_self, + sym_super, + sym_crate, + [26233] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(1925), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1927), 38, + 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_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26287] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1921), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1923), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65639,86 +107649,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [516] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1784), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + sym_self, + sym_super, + sym_crate, + [26341] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(1913), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1915), 38, + 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_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26395] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1699), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1701), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65736,86 +107751,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [645] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1334), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + sym_self, + sym_super, + sym_crate, + [26449] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(2185), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2187), 38, + 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_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26503] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2085), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2087), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65833,86 +107853,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [774] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1672), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2101), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2103), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65930,86 +107904,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [903] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2089), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26611] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2343), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2345), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66027,86 +107955,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1783), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26665] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2243), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2245), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66124,86 +108006,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1161] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1823), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26719] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2223), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2225), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66221,86 +108057,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1573), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26773] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1981), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1983), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66318,86 +108108,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1419] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1574), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2113), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2115), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66415,86 +108159,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2113), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2133), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2135), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66512,86 +108210,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1325), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26935] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2097), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2099), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66609,86 +108261,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2162), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [26989] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2061), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2063), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66706,86 +108312,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1520), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27043] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2037), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2039), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66803,86 +108363,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1645), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2009), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2011), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66900,86 +108414,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1880), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27151] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2125), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2127), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66997,86 +108465,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1996), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27205] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2145), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2147), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67094,86 +108516,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1567), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + sym_self, + sym_super, + sym_crate, + [27259] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(2065), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2067), 38, + 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_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1607), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1609), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67191,86 +108618,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1765), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1611), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1613), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67288,86 +108669,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1336), 1, - sym__type, - STATE(1342), 1, - sym_lifetime, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1615), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1617), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67385,86 +108720,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1675), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2057), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2059), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67482,86 +108771,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1683), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27529] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2395), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2397), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67579,86 +108822,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2003), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1631), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1633), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67676,86 +108873,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1599), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1623), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1625), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67773,86 +108924,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2091), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27691] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1639), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1641), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67870,86 +108975,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27745] = 4, + ACTIONS(2954), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2904), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2906), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1973), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_as, + [27801] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(1643), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1645), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67967,86 +109078,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1659), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2053), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2055), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68064,86 +109129,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1992), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27909] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1651), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1653), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68161,86 +109180,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1663), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [27963] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1655), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1657), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68258,86 +109231,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1579), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1659), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1661), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68355,86 +109282,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2140), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28071] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1663), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1665), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68452,86 +109333,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1589), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1667), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1669), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68549,86 +109384,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1335), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1671), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1673), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68646,86 +109435,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1661), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28233] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1675), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1677), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68743,86 +109486,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4644] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1954), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28287] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1681), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68840,86 +109537,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4773] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1881), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1683), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1685), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68937,86 +109588,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4902] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(2269), 1, + anon_sym_enum, anon_sym_fn, - ACTIONS(2271), 1, anon_sym_impl, - ACTIONS(2273), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1016), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, + [28395] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2049), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2051), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69034,86 +109639,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5031] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1948), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28449] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2041), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2043), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69131,86 +109690,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5160] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1315), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28503] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2033), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2035), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69228,86 +109741,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1322), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2029), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2031), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69325,86 +109792,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2107), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28611] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1753), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1755), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69422,86 +109843,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1318), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28665] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1773), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1775), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69519,86 +109894,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1336), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28719] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1789), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1791), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69616,86 +109945,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5805] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1888), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28773] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2025), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2027), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69713,86 +109996,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5934] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2033), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1801), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1803), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69810,86 +110047,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1679), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + sym_self, + sym_super, + sym_crate, + [28881] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(1805), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1807), 38, + 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_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28935] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1809), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1811), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69907,86 +110149,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1343), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [28989] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1821), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1823), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70004,86 +110200,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1597), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29043] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1825), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1827), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70101,86 +110251,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1319), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1829), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1831), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70198,86 +110302,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1562), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29151] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1833), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1835), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70295,86 +110353,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1634), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29205] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1877), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1879), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70392,86 +110404,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1570), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29259] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1897), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1899), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70489,86 +110455,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1999), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1933), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1935), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70586,86 +110506,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1633), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1937), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1939), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70683,86 +110557,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2024), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1941), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1943), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70780,86 +110608,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1622), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1945), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1947), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70877,86 +110659,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(2269), 1, + anon_sym_enum, anon_sym_fn, - ACTIONS(2271), 1, anon_sym_impl, - ACTIONS(2273), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1015), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, + [29529] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1949), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1951), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70974,86 +110710,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1864), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1953), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1955), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71071,86 +110761,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1685), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1973), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1975), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71168,86 +110812,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7869] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1601), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + sym_self, + sym_super, + sym_crate, + [29691] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(1977), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1979), 38, + 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_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29745] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2017), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2019), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71265,86 +110914,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7998] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2340), 1, - sym_identifier, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1467), 1, - sym_scoped_type_identifier, - STATE(1643), 1, - sym__type, - STATE(1678), 1, - sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29799] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1989), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1991), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71362,86 +110965,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8127] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1324), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29853] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1993), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1995), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71459,86 +111016,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8256] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(2269), 1, + anon_sym_enum, anon_sym_fn, - ACTIONS(2271), 1, anon_sym_impl, - ACTIONS(2273), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(987), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(2285), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, + [29907] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1997), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1999), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71556,86 +111067,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8385] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1903), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [29961] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2001), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2003), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71653,86 +111118,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8514] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2051), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [30015] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2005), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2007), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71750,86 +111169,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8643] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2023), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [30069] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1599), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1601), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71847,86 +111220,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8772] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30123] = 4, + ACTIONS(2956), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2938), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2936), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30178] = 5, + ACTIONS(2958), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1141), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2789), 9, anon_sym_LPAREN, - ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_STAR, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1657), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + sym_metavariable, + ACTIONS(2787), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71944,86 +111329,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8901] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, anon_sym_for, - ACTIONS(696), 1, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, + anon_sym_dyn, sym_identifier, - ACTIONS(2257), 1, + sym_self, + sym_super, + sym_crate, + [30235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2963), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2961), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + [30288] = 4, + ACTIONS(2965), 1, anon_sym_COLON_COLON, - ACTIONS(2279), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1162), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1012), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30343] = 4, + ACTIONS(2971), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(2969), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2967), 29, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72041,1154 +111485,827 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9030] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2975), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2973), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_as, + [30451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1392), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1958), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1394), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [9159] = 33, - ACTIONS(77), 1, + ACTIONS(1048), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1046), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [30557] = 4, + ACTIONS(2977), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2910), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(670), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2908), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2981), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2979), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + [30665] = 4, + ACTIONS(2983), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2342), 1, - sym_self, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1343), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(892), 2, - sym_super, - sym_crate, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [9290] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(2910), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2908), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30720] = 4, + ACTIONS(2956), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2015), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [9419] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(2910), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2908), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30775] = 5, + ACTIONS(2868), 1, + anon_sym_BANG, + ACTIONS(2985), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1665), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [9548] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(1162), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 27, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1689), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30832] = 4, + ACTIONS(2991), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [9677] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(2989), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2987), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1846), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [9806] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(1068), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1875), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1066), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [30940] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [9935] = 32, - ACTIONS(77), 1, + ACTIONS(2995), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2997), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2993), 27, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(982), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [30995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, - 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_str, - anon_sym_char, - [10064] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3001), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2999), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1733), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_as, + [31048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [10193] = 32, - ACTIONS(77), 1, + ACTIONS(3005), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3003), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(988), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_as, + [31101] = 4, + ACTIONS(3011), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, - 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_str, - anon_sym_char, - [10322] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3009), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3007), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2061), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [31156] = 4, + ACTIONS(3017), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [10451] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3015), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3013), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [31211] = 21, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1430), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + ACTIONS(3019), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(3023), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + anon_sym_STAR, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3031), 1, anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, + ACTIONS(3035), 1, + anon_sym_for, + ACTIONS(3037), 1, + sym_metavariable, + STATE(2161), 1, sym_scoped_type_identifier, - STATE(1305), 1, + STATE(2263), 1, + sym_where_predicate, + STATE(2484), 1, sym_generic_type, - STATE(1332), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, + STATE(2833), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2834), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + STATE(2898), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(3021), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3033), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, + STATE(2681), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, sym_tuple_type, - sym_unit_type, - sym_bounded_type, sym_reference_type, sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(3029), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73206,86 +112323,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10580] = 32, - ACTIONS(77), 1, + [31300] = 4, + ACTIONS(2956), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2934), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2932), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [31355] = 4, + ACTIONS(3043), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3041), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(989), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3039), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [31410] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(3047), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3045), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73303,86 +112460,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10709] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, anon_sym_for, - ACTIONS(696), 1, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, + anon_sym_dyn, sym_identifier, - ACTIONS(2257), 1, + sym_self, + sym_super, + sym_crate, + [31463] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2858), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2860), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [31516] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1058), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1056), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [31569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3051), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3049), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + [31622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2914), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2912), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LT2, + [31675] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3055), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3053), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + [31728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3059), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3057), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + [31781] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3063), 12, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(993), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, + ACTIONS(3061), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73400,86 +112810,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10838] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(684), 1, anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, anon_sym_extern, - ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31834] = 5, + ACTIONS(2880), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(3065), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1913), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2874), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [31891] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(3069), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3067), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73497,474 +112912,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10967] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(684), 1, anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, anon_sym_extern, - ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(872), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31944] = 4, + ACTIONS(3075), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3073), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3071), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [31999] = 4, + ACTIONS(3081), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3079), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2137), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3077), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32054] = 4, + ACTIONS(3087), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [11096] = 32, - ACTIONS(77), 1, + ACTIONS(3085), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(670), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3083), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3091), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3089), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_as, + [32162] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3095), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2344), 1, - sym_identifier, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1477), 1, - sym_scoped_type_identifier, - STATE(1647), 1, - sym__type, - STATE(1650), 1, - sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3093), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + [32215] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3097), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2997), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2993), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [11225] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3101), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3099), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1982), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_as, + [32323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [11354] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3105), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3103), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2210), 1, - sym__type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + [32376] = 4, + ACTIONS(3111), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [11483] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(3109), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_DASH, anon_sym_AMP, - ACTIONS(894), 1, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1748), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(3107), 29, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73982,183 +113371,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11612] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, + anon_sym_const, anon_sym_default, - ACTIONS(882), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2156), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [11741] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + [32431] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3115), 12, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_STAR, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2123), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - ACTIONS(2346), 1, - sym_identifier, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1469), 1, - sym_scoped_type_identifier, - STATE(1619), 1, - sym__type, - STATE(1670), 1, - sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + sym_metavariable, + ACTIONS(3113), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74176,86 +113417,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11870] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(684), 1, anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, anon_sym_extern, - ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2006), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + [32484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3119), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3117), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74273,86 +113467,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11999] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(684), 1, anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, anon_sym_extern, - ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(872), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32537] = 5, + ACTIONS(3123), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + STATE(1208), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3125), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3121), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32594] = 21, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1430), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(3019), 1, + sym_identifier, + ACTIONS(3023), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + anon_sym_STAR, + ACTIONS(3027), 1, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2123), 1, + ACTIONS(3031), 1, anon_sym_SQUOTE, - ACTIONS(2348), 1, - sym_identifier, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1463), 1, + ACTIONS(3035), 1, + anon_sym_for, + ACTIONS(3037), 1, + sym_metavariable, + STATE(2161), 1, sym_scoped_type_identifier, - STATE(1658), 1, - sym__type, - STATE(1682), 1, + STATE(2263), 1, + sym_where_predicate, + STATE(2484), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, + STATE(2833), 1, sym_bracketed_type, - STATE(2290), 1, + STATE(2834), 1, sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + STATE(2898), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(3033), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3127), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, - sym_array_type, - sym_function_type, + STATE(2681), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, sym_tuple_type, - sym_unit_type, - sym_bounded_type, sym_reference_type, sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(3029), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74370,86 +113602,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12128] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + [32683] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3131), 12, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_STAR, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1938), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, + sym_metavariable, + ACTIONS(3129), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74467,959 +113637,875 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12257] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(684), 1, anon_sym_for, - ACTIONS(686), 1, anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, anon_sym_extern, - ACTIONS(708), 1, anon_sym_dyn, - ACTIONS(872), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32736] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3135), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3133), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3139), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1841), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3137), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1132), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1130), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3143), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3141), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3147), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3145), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [32996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3151), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3149), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3155), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3153), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [12386] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3159), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3157), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1826), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [12515] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3163), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3161), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1902), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [12644] = 32, - ACTIONS(77), 1, + ACTIONS(3167), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3165), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1030), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, - 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_str, - anon_sym_char, - [12773] = 32, - ACTIONS(77), 1, + ACTIONS(3171), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3169), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1031), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, - 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_str, - anon_sym_char, - [12902] = 32, - ACTIONS(77), 1, + ACTIONS(3175), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3173), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33360] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2997), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2993), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1034), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33412] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, - 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_str, - anon_sym_char, - [13031] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3179), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3177), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1770), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [13160] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(1124), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1122), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1575), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [13289] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, + ACTIONS(3183), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3181), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1771), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33568] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [13418] = 32, - ACTIONS(77), 1, + ACTIONS(3187), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2255), 1, - sym_identifier, - ACTIONS(2257), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3185), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2259), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2263), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - anon_sym_default, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2271), 1, - anon_sym_impl, - ACTIONS(2273), 1, - anon_sym_union, - ACTIONS(2275), 1, - anon_sym_BANG, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2279), 1, - anon_sym_AMP, - ACTIONS(2281), 1, - anon_sym_dyn, - ACTIONS(2287), 1, - sym_metavariable, - STATE(715), 1, - sym_scoped_type_identifier, - STATE(799), 1, - sym_generic_type, - STATE(1081), 1, - sym__type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2222), 1, - sym_scoped_identifier, - STATE(2247), 1, - sym_lifetime, - STATE(2292), 1, - sym_function_modifiers, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33620] = 3, ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1060), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2265), 17, + sym_block_comment, + sym_line_comment, + ACTIONS(2969), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2967), 29, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75437,2109 +114523,1667 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13547] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, + anon_sym_const, anon_sym_default, - ACTIONS(882), 1, anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1544), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [13676] = 32, - ACTIONS(77), 1, + [33672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3191), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(670), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3189), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3195), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3193), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(830), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(1896), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(832), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [13805] = 32, - ACTIONS(77), 1, + ACTIONS(3199), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(670), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3197), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33880] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1156), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(686), 1, - anon_sym_impl, - ACTIONS(692), 1, - anon_sym_BANG, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(708), 1, - anon_sym_dyn, - ACTIONS(872), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1154), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(876), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1086), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2119), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1269), 1, - sym_scoped_type_identifier, - STATE(1305), 1, - sym_generic_type, - STATE(2100), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2332), 1, - sym_lifetime, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1084), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [33984] = 4, + ACTIONS(2880), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1333), 11, - 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, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - 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_str, - anon_sym_char, - [13934] = 3, + ACTIONS(2876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2874), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 20, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(3203), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3201), 28, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - 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(1120), 41, - 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_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14004] = 3, + anon_sym_as, + [34090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(3207), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2350), 39, - 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_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14069] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(862), 17, - sym_raw_string_literal, - sym_float_literal, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3205), 28, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(860), 39, - 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_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14134] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(491), 18, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(786), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(788), 28, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - 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(2354), 38, - 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_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14199] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34194] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(3211), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2356), 39, - 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_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14264] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3209), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34246] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1140), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - 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(1120), 38, - 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_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_ref, - anon_sym__, - anon_sym_dyn, - sym_mutable_specifier, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14326] = 9, - ACTIONS(2362), 1, + ACTIONS(1138), 28, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(2368), 1, - anon_sym_COLON_COLON, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(809), 1, - sym_type_arguments, - STATE(826), 1, - sym_parameters, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 17, + ACTIONS(1102), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2360), 26, + anon_sym_DOT_DOT, + ACTIONS(1100), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14396] = 8, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2368), 1, - anon_sym_COLON_COLON, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(809), 1, - sym_type_arguments, - STATE(826), 1, - sym_parameters, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34350] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2374), 17, + ACTIONS(826), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2372), 26, + anon_sym_DOT_DOT, + ACTIONS(828), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14463] = 8, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2368), 1, - anon_sym_COLON_COLON, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(809), 1, - sym_type_arguments, - STATE(826), 1, - sym_parameters, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34402] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2378), 17, + ACTIONS(1076), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2376), 26, + anon_sym_DOT_DOT, + ACTIONS(1074), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14530] = 7, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(819), 1, - sym_type_arguments, - STATE(829), 1, - sym_parameters, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 17, + ACTIONS(1098), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2380), 26, + anon_sym_DOT_DOT, + ACTIONS(1096), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14594] = 6, - ACTIONS(2390), 1, - anon_sym_BANG, - ACTIONS(2392), 1, - anon_sym_COLON_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2386), 16, + ACTIONS(3215), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2384), 23, + anon_sym_DOT_DOT, + ACTIONS(3213), 28, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14656] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1789), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3125), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1791), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14712] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1649), 9, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3121), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1651), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14768] = 7, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(819), 1, - sym_type_arguments, - STATE(829), 1, - sym_parameters, + anon_sym_as, + [34610] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 17, + ACTIONS(3219), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2394), 26, + anon_sym_DOT_DOT, + ACTIONS(3217), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14832] = 5, - ACTIONS(2402), 1, - anon_sym_BANG, - ACTIONS(2404), 1, - anon_sym_COLON_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34662] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 17, + ACTIONS(3223), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2398), 28, + anon_sym_DOT_DOT, + ACTIONS(3221), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14892] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1343), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1345), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14948] = 5, - ACTIONS(2410), 1, - anon_sym_BANG, - ACTIONS(2412), 1, - anon_sym_COLON_COLON, + anon_sym_as, + [34714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2408), 17, + ACTIONS(3227), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2406), 28, + anon_sym_DOT_DOT, + ACTIONS(3225), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15008] = 5, - ACTIONS(2418), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34766] = 9, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3231), 1, anon_sym_BANG, - ACTIONS(2420), 1, + ACTIONS(3233), 1, anon_sym_COLON_COLON, + ACTIONS(3235), 1, + anon_sym_LT2, + STATE(1383), 1, + sym_parameters, + STATE(1384), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2416), 17, + ACTIONS(2866), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(2414), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + ACTIONS(2862), 20, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15068] = 7, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(2422), 1, - anon_sym_LBRACE, - ACTIONS(2424), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, - sym_field_initializer_list, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(3239), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(459), 28, + anon_sym_DOT_DOT, + ACTIONS(3237), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15132] = 7, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(819), 1, - sym_type_arguments, - STATE(829), 1, - sym_parameters, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2428), 17, + ACTIONS(3243), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2426), 26, + anon_sym_DOT_DOT, + ACTIONS(3241), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15196] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1242), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1244), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15252] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1689), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1691), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15308] = 5, - ACTIONS(2434), 1, - anon_sym_BANG, - ACTIONS(2436), 1, - anon_sym_COLON_COLON, + anon_sym_as, + [34934] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2432), 17, + ACTIONS(3243), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - anon_sym_LT_EQ, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2430), 28, + anon_sym_DOT_DOT, + ACTIONS(3241), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15368] = 5, - ACTIONS(2438), 1, - anon_sym_else, - STATE(1019), 1, - sym_else_clause, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [34986] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(377), 15, + ACTIONS(3247), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(375), 29, + anon_sym_DOT_DOT, + ACTIONS(3245), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15427] = 5, - ACTIONS(2444), 1, - anon_sym_SQUOTE, - STATE(1041), 1, - sym_loop_label, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2442), 15, + ACTIONS(766), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2440), 29, + anon_sym_DOT_DOT, + ACTIONS(768), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15486] = 4, - ACTIONS(2446), 1, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2434), 16, + ACTIONS(3251), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2436), 29, + anon_sym_DOT_DOT, + ACTIONS(3249), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15543] = 4, - ACTIONS(2448), 1, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35142] = 4, + ACTIONS(3253), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 16, + ACTIONS(1162), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2404), 29, + anon_sym_DOT_DOT, + ACTIONS(1164), 27, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15600] = 4, - ACTIONS(2450), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35196] = 7, + ACTIONS(2928), 1, anon_sym_LBRACE, + ACTIONS(2930), 1, + anon_sym_COLON_COLON, + ACTIONS(3255), 1, + anon_sym_BANG, + STATE(1194), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 16, + ACTIONS(1162), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2412), 29, + anon_sym_DOT_DOT, + ACTIONS(1164), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15657] = 4, - ACTIONS(2452), 1, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [35256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2418), 16, + ACTIONS(758), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2420), 29, + anon_sym_DOT_DOT, + ACTIONS(760), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15714] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 16, + ACTIONS(322), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2404), 30, + anon_sym_DOT_DOT, + ACTIONS(320), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15769] = 5, - ACTIONS(2438), 1, - anon_sym_else, - STATE(1073), 1, - sym_else_clause, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(385), 15, + ACTIONS(1128), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(383), 29, + anon_sym_DOT_DOT, + ACTIONS(1126), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15828] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35412] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(427), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3109), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(429), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15882] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1283), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1285), 38, + ACTIONS(3107), 29, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77557,2848 +116201,2316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [15936] = 3, + [35464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2456), 15, + ACTIONS(1188), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2454), 30, + anon_sym_DOT_DOT, + ACTIONS(1186), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15990] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1457), 7, + ACTIONS(3259), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3257), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1459), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16044] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35568] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1465), 7, + ACTIONS(3263), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3261), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1467), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16098] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1469), 7, + ACTIONS(3267), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3265), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1471), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16152] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35672] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1477), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1479), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16206] = 3, + ACTIONS(3271), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3269), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1481), 7, + ACTIONS(3275), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3273), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1483), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16260] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1485), 7, + ACTIONS(3279), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3277), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1487), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16314] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1497), 7, + ACTIONS(3283), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3281), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1499), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16368] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35880] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1505), 7, + ACTIONS(1144), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1142), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1507), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16422] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1509), 7, + ACTIONS(3287), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3285), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1511), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16476] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [35984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1513), 7, + ACTIONS(3291), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3289), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1515), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16530] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2460), 15, + ACTIONS(3295), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2458), 30, + anon_sym_DOT_DOT, + ACTIONS(3293), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16584] = 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36088] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2464), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2466), 15, + ACTIONS(2910), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2462), 28, + anon_sym_DOT_DOT, + ACTIONS(2908), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16640] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1557), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1559), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16694] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36140] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1561), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1136), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1563), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16748] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1565), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1134), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1567), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16802] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36192] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1581), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1090), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1583), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16856] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1589), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1088), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1591), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16910] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36244] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1597), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1094), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1599), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16964] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1609), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1092), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1611), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17018] = 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36296] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1613), 7, + ACTIONS(1172), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1170), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1615), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17072] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36348] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1617), 7, + ACTIONS(3299), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3297), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1619), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17126] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1629), 7, + ACTIONS(806), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(808), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1631), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17180] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1633), 7, + ACTIONS(3303), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3301), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1635), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17234] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1641), 7, + ACTIONS(3307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3305), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1643), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17288] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36556] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1645), 7, + ACTIONS(3311), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3309), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1647), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17342] = 4, - STATE(1078), 1, - sym_arguments, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36608] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2470), 15, + ACTIONS(3315), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2468), 29, + anon_sym_DOT_DOT, + ACTIONS(3313), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17398] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36660] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1661), 7, + ACTIONS(3319), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3317), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1663), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17452] = 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2472), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2466), 15, + ACTIONS(1148), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2462), 28, + anon_sym_DOT_DOT, + ACTIONS(1146), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17508] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36764] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(389), 7, + ACTIONS(1184), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1182), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(391), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17562] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36816] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1665), 7, + ACTIONS(1176), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1174), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1667), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17616] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36868] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1669), 7, + ACTIONS(3323), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3321), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1671), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17670] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1673), 7, + ACTIONS(3327), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3325), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1675), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17724] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [36972] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2476), 15, + ACTIONS(1080), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2474), 30, + anon_sym_DOT_DOT, + ACTIONS(1078), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17778] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1677), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1679), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17832] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(397), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(399), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17886] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37024] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1693), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2938), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1695), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17940] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(393), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2936), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(395), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17994] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37076] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1697), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2934), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1699), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18048] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1701), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2932), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1703), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18102] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1709), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3331), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1711), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18156] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1717), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3329), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1719), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18210] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1721), 7, + ACTIONS(3335), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3333), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1723), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18264] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1725), 7, + ACTIONS(3339), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3337), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1727), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18318] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37284] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1733), 7, + ACTIONS(3343), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3341), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1735), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18372] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37336] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1737), 7, + ACTIONS(3347), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3345), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1739), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18426] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1741), 7, + ACTIONS(1152), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1150), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1743), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18480] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37440] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1745), 7, + ACTIONS(3351), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3349), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1747), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18534] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37492] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1749), 7, + ACTIONS(1180), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1178), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1751), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18588] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37544] = 11, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 7, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 5, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(598), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18642] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37611] = 8, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1753), 7, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1755), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18696] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37672] = 17, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3383), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1757), 7, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3373), 18, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1759), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18750] = 3, + anon_sym_RBRACK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37751] = 13, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1761), 7, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1763), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18804] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37822] = 17, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3391), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1769), 7, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3389), 18, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_RBRACK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_as, + [37901] = 20, + ACTIONS(25), 1, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1771), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(3019), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18858] = 3, + ACTIONS(3023), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + anon_sym_STAR, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_SQUOTE, + ACTIONS(3035), 1, + anon_sym_for, + ACTIONS(3037), 1, + sym_metavariable, + STATE(2161), 1, + sym_scoped_type_identifier, + STATE(2168), 1, + sym_where_predicate, + STATE(2484), 1, + sym_generic_type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2898), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1773), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1775), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3033), 2, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - [18912] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1781), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1783), 38, + STATE(2681), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3029), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80416,91 +118528,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18966] = 3, + [37986] = 17, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3395), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3393), 18, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_RBRACK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_as, + [38065] = 21, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2727), 1, anon_sym_COLON_COLON, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(3397), 1, + sym_identifier, + ACTIONS(3401), 1, + anon_sym_default, + ACTIONS(3403), 1, sym_metavariable, - ACTIONS(1120), 38, - 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_str, - anon_sym_char, + STATE(914), 1, + sym_scoped_type_identifier, + STATE(1161), 1, + sym_generic_type, + STATE(1270), 1, + sym_function_type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2840), 1, + sym_function_modifiers, + STATE(2867), 1, + sym_scoped_identifier, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(2743), 3, sym_self, sym_super, sym_crate, - [19020] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1785), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1787), 38, + ACTIONS(3399), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80518,91 +118655,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19074] = 3, + [38152] = 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(467), 7, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3407), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3405), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [38211] = 21, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2727), 1, anon_sym_COLON_COLON, + ACTIONS(2733), 1, + anon_sym_fn, + ACTIONS(3401), 1, + anon_sym_default, + ACTIONS(3403), 1, sym_metavariable, - ACTIONS(469), 38, - 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_str, - anon_sym_char, + ACTIONS(3409), 1, + sym_identifier, + STATE(915), 1, + sym_scoped_type_identifier, + STATE(1140), 1, + sym_generic_type, + STATE(1269), 1, + sym_function_type, + STATE(1395), 1, + sym_for_lifetimes, + STATE(2840), 1, + sym_function_modifiers, + STATE(2867), 1, + sym_scoped_identifier, + STATE(2954), 1, + sym_bracketed_type, + STATE(2955), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(2743), 3, sym_self, sym_super, sym_crate, - [19128] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(413), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(415), 38, + ACTIONS(3399), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80620,40 +118773,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + [38298] = 17, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(1408), 1, + anon_sym_COLON_COLON, + ACTIONS(3411), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [19182] = 3, + ACTIONS(3413), 1, + anon_sym_RPAREN, + ACTIONS(3415), 1, + anon_sym_COMMA, + ACTIONS(3421), 1, + sym_metavariable, + STATE(2038), 1, + sym_scoped_identifier, + STATE(2826), 1, + sym_bracketed_type, + STATE(2945), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1231), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2470), 2, + sym_meta_item, + sym__literal, + ACTIONS(3419), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3417), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80671,451 +118834,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19236] = 3, + [38377] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(395), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(393), 30, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3423), 6, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - 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(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_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_else, - [19290] = 4, - ACTIONS(2478), 1, - anon_sym_COLON_COLON, + [38462] = 9, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, + ACTIONS(3357), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 8, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [38525] = 17, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, + ACTIONS(3375), 1, anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2394), 29, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3433), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19346] = 4, - ACTIONS(2480), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_as, + [38604] = 16, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2394), 29, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3353), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19402] = 4, - ACTIONS(2482), 1, + anon_sym_COMMA, + anon_sym_as, + [38681] = 7, + ACTIONS(3231), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_COLON_COLON, + STATE(1536), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, + ACTIONS(1162), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2394), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1164), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19458] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1825), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [38740] = 21, + ACTIONS(25), 1, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1827), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19512] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1833), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + ACTIONS(2763), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1835), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, + ACTIONS(2769), 1, anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3441), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [19566] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1291), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1293), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3445), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19620] = 3, + ACTIONS(3447), 1, + sym_metavariable, + STATE(1313), 1, + sym_scoped_type_identifier, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1390), 1, + sym_generic_type, + STATE(1527), 1, + sym_function_type, + STATE(2959), 1, + sym_function_modifiers, + STATE(2967), 1, + sym_scoped_identifier, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1845), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1847), 38, - 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_str, - anon_sym_char, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(2779), 3, sym_self, sym_super, sym_crate, - [19674] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1234), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(3443), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81133,193 +119195,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19728] = 3, + [38827] = 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1849), 7, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3451), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3449), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1851), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19782] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [38886] = 17, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1861), 7, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3453), 18, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1863), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19836] = 3, + anon_sym_RBRACK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_as, + [38965] = 17, + ACTIONS(292), 1, + anon_sym_EQ, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(399), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(397), 30, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(286), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_COMMA, + anon_sym_as, + [39044] = 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3371), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3459), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3457), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + 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_CARET_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_else, - [19890] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [39103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2419), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(2421), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81340,242 +119460,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [19944] = 3, + [39154] = 21, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(2763), 1, + anon_sym_COLON_COLON, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(3445), 1, + anon_sym_default, + ACTIONS(3447), 1, + sym_metavariable, + ACTIONS(3461), 1, + sym_identifier, + STATE(1326), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_generic_type, + STATE(1377), 1, + sym_for_lifetimes, + STATE(1517), 1, + sym_function_type, + STATE(2959), 1, + sym_function_modifiers, + STATE(2967), 1, + sym_scoped_identifier, + STATE(3005), 1, + sym_bracketed_type, + STATE(3006), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2486), 15, - anon_sym_PLUS, - anon_sym_STAR, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2779), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3443), 18, + 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_str, + anon_sym_char, + anon_sym_union, + [39241] = 15, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3363), 1, anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, + ACTIONS(3375), 1, anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2484), 30, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3353), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19998] = 3, + anon_sym_COMMA, + anon_sym_as, + [39316] = 12, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2490), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2488), 30, + ACTIONS(3361), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20052] = 4, - ACTIONS(2492), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [39385] = 6, + ACTIONS(2878), 1, + anon_sym_BANG, + ACTIONS(2880), 1, anon_sym_COLON_COLON, + ACTIONS(3463), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(2876), 16, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(459), 29, + anon_sym_DOT_DOT, + anon_sym_as, + ACTIONS(2874), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20108] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1881), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [39442] = 21, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1430), 1, anon_sym_COLON_COLON, + ACTIONS(3037), 1, sym_metavariable, - ACTIONS(1883), 38, - 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_str, - anon_sym_char, + ACTIONS(3465), 1, + sym_identifier, + ACTIONS(3467), 1, + anon_sym_default, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1665), 1, + sym_scoped_type_identifier, + STATE(1709), 1, + sym_generic_type, + STATE(1713), 1, + sym_function_type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2898), 1, + sym_scoped_identifier, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - [20162] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1885), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1887), 38, + ACTIONS(3033), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81593,91 +119771,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20216] = 3, + [39529] = 10, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1889), 7, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 6, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 24, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [39594] = 21, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1228), 1, + anon_sym_fn, + ACTIONS(1230), 1, + anon_sym_for, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1430), 1, anon_sym_COLON_COLON, + ACTIONS(3037), 1, sym_metavariable, - ACTIONS(1891), 38, - 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_str, - anon_sym_char, + ACTIONS(3467), 1, + anon_sym_default, + ACTIONS(3469), 1, + sym_identifier, + STATE(1369), 1, + sym_for_lifetimes, + STATE(1666), 1, + sym_scoped_type_identifier, + STATE(1698), 1, + sym_generic_type, + STATE(1732), 1, + sym_function_type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2898), 1, + sym_scoped_identifier, + STATE(2982), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - [20270] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1893), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1895), 38, + ACTIONS(3033), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81695,142 +119892,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20324] = 3, + [39681] = 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3361), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_COMMA, + anon_sym_as, + [39740] = 8, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, + ACTIONS(3235), 1, + anon_sym_LT2, + STATE(1383), 1, + sym_parameters, + STATE(1384), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2496), 15, + ACTIONS(2890), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(2494), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + ACTIONS(2888), 20, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_as, + [39801] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3369), 1, + anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3471), 6, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20378] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1913), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + [39886] = 20, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1430), 1, anon_sym_COLON_COLON, + ACTIONS(3019), 1, + sym_identifier, + ACTIONS(3023), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + anon_sym_STAR, + ACTIONS(3027), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_SQUOTE, + ACTIONS(3035), 1, + anon_sym_for, + ACTIONS(3037), 1, sym_metavariable, - ACTIONS(1915), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + STATE(2161), 1, + sym_scoped_type_identifier, + STATE(2263), 1, + sym_where_predicate, + STATE(2484), 1, + sym_generic_type, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2898), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3033), 2, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - [20432] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1921), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1923), 38, + STATE(2681), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3029), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81848,299 +120128,493 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20486] = 3, + [39971] = 8, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, + ACTIONS(3235), 1, + anon_sym_LT2, + STATE(1383), 1, + sym_parameters, + STATE(1384), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2500), 15, + ACTIONS(2886), 17, anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, + ACTIONS(2884), 20, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40032] = 7, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_LT2, + STATE(1373), 1, + sym_parameters, + STATE(1386), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2938), 17, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(2498), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + ACTIONS(2936), 20, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40090] = 6, + ACTIONS(2868), 1, + anon_sym_BANG, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + STATE(1194), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1162), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20540] = 4, - ACTIONS(2506), 1, - anon_sym_DASH_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40146] = 5, + ACTIONS(2924), 1, + anon_sym_BANG, + ACTIONS(2926), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + ACTIONS(2922), 17, anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, + ACTIONS(2920), 22, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [40200] = 5, + ACTIONS(2916), 1, + anon_sym_BANG, + ACTIONS(2918), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2914), 17, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(2502), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2912), 22, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [40254] = 5, + ACTIONS(2896), 1, + anon_sym_BANG, + ACTIONS(2898), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2894), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2892), 22, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20596] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [40308] = 5, + ACTIONS(2904), 1, + anon_sym_BANG, + ACTIONS(2906), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1925), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2902), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1927), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20650] = 4, - ACTIONS(2482), 1, - anon_sym_COLON_COLON, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2900), 22, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [40362] = 4, + ACTIONS(2948), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2428), 15, + ACTIONS(2924), 16, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2426), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2926), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20706] = 5, - ACTIONS(2392), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_BANG, + anon_sym_as, + [40414] = 4, + ACTIONS(2952), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(2916), 16, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2384), 28, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2918), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20764] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1929), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [40466] = 16, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1723), 1, + anon_sym_DASH, + ACTIONS(1745), 1, + aux_sym_string_literal_token1, + ACTIONS(3475), 1, + sym_identifier, + ACTIONS(3477), 1, anon_sym_COLON_COLON, + ACTIONS(3483), 1, sym_metavariable, - ACTIONS(1931), 38, + STATE(2155), 1, + sym_scoped_identifier, + STATE(2503), 1, + sym__literal_pattern, + STATE(2850), 1, + sym_generic_type_with_turbofish, + STATE(2951), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1747), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3481), 3, + sym_self, + sym_super, + sym_crate, + STATE(2108), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1743), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3479), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82158,144 +120632,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20818] = 4, - ACTIONS(2482), 1, + [40542] = 5, + ACTIONS(2985), 1, anon_sym_COLON_COLON, + ACTIONS(3255), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 15, + ACTIONS(1162), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - 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(2380), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [20874] = 4, - ACTIONS(2514), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2512), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, 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_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2510), 29, + anon_sym_DOT_DOT, + ACTIONS(1164), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20930] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1493), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40596] = 16, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1723), 1, + anon_sym_DASH, + ACTIONS(1745), 1, + aux_sym_string_literal_token1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, + ACTIONS(3485), 1, + sym_identifier, + ACTIONS(3491), 1, sym_metavariable, - ACTIONS(1495), 38, + STATE(2163), 1, + sym_scoped_identifier, + STATE(2496), 1, + sym__literal_pattern, + STATE(2850), 1, + sym_generic_type_with_turbofish, + STATE(2951), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1747), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3489), 3, + sym_self, + sym_super, + sym_crate, + STATE(2108), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1743), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3487), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82313,40 +120741,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + [40672] = 16, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1200), 1, + anon_sym_DASH, + ACTIONS(1246), 1, + aux_sym_string_literal_token1, + ACTIONS(1408), 1, + anon_sym_COLON_COLON, + ACTIONS(3493), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [20984] = 3, + ACTIONS(3499), 1, + sym_metavariable, + STATE(1783), 1, + sym_scoped_identifier, + STATE(1829), 1, + sym__literal_pattern, + STATE(2826), 1, + sym_bracketed_type, + STATE(2945), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1947), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1949), 38, + ACTIONS(1248), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(1768), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1244), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3495), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82364,92 +120801,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + [40748] = 16, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(1408), 1, + anon_sym_COLON_COLON, + ACTIONS(3411), 1, sym_identifier, + ACTIONS(3421), 1, + sym_metavariable, + ACTIONS(3501), 1, + anon_sym_RPAREN, + STATE(2038), 1, + sym_scoped_identifier, + STATE(2826), 1, + sym_bracketed_type, + STATE(2945), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1231), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2657), 2, + sym_meta_item, + sym__literal, + ACTIONS(3419), 3, sym_self, sym_super, sym_crate, - [21038] = 4, - ACTIONS(2520), 1, - anon_sym_DASH_GT, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3417), 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_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [40824] = 7, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_LT2, + STATE(1373), 1, + sym_parameters, + STATE(1386), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 15, + ACTIONS(2934), 17, anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, + ACTIONS(2932), 20, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40882] = 4, + ACTIONS(2946), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2896), 16, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2898), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [40934] = 7, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_LT2, + STATE(1373), 1, + sym_parameters, + STATE(1386), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2910), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2908), 20, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40992] = 4, + ACTIONS(2954), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2904), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2516), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2906), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21094] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1943), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [41044] = 16, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(1408), 1, anon_sym_COLON_COLON, + ACTIONS(3411), 1, + sym_identifier, + ACTIONS(3421), 1, sym_metavariable, - ACTIONS(1945), 38, + ACTIONS(3503), 1, + anon_sym_RPAREN, + STATE(2038), 1, + sym_scoped_identifier, + STATE(2826), 1, + sym_bracketed_type, + STATE(2945), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1231), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2657), 2, + sym_meta_item, + sym__literal, + ACTIONS(3419), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3417), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82467,40 +121119,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + [41120] = 16, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1200), 1, + anon_sym_DASH, + ACTIONS(1246), 1, + aux_sym_string_literal_token1, + ACTIONS(1408), 1, + anon_sym_COLON_COLON, + ACTIONS(3505), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [21148] = 3, + ACTIONS(3511), 1, + sym_metavariable, + STATE(1797), 1, + sym_scoped_identifier, + STATE(1823), 1, + sym__literal_pattern, + STATE(2826), 1, + sym_bracketed_type, + STATE(2945), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1525), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1527), 38, + ACTIONS(1248), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3509), 3, + sym_self, + sym_super, + sym_crate, + STATE(1768), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1244), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3507), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82518,142 +121179,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21202] = 3, + [41196] = 23, + ACTIONS(1024), 1, + anon_sym_RBRACK, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3513), 1, + anon_sym_SEMI, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3519), 1, + anon_sym_COMMA, + STATE(2390), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1545), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41285] = 5, + ACTIONS(2868), 1, + anon_sym_BANG, + ACTIONS(3521), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1547), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1937), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1162), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2975), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2973), 25, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1939), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21310] = 3, + anon_sym_as, + [41387] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1549), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3525), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1551), 38, + ACTIONS(3523), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82674,37 +121376,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21364] = 3, + [41436] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1573), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3115), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1575), 38, + ACTIONS(3113), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82725,37 +121422,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21418] = 3, + [41485] = 23, + ACTIONS(844), 1, + anon_sym_RBRACK, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3527), 1, + anon_sym_SEMI, + ACTIONS(3529), 1, + anon_sym_COMMA, + STATE(2304), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1933), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41574] = 5, + ACTIONS(3531), 1, + anon_sym_else, + STATE(1475), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(988), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(986), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41627] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3055), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3053), 25, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [41676] = 15, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(1408), 1, anon_sym_COLON_COLON, + ACTIONS(3411), 1, + sym_identifier, + ACTIONS(3421), 1, sym_metavariable, - ACTIONS(1935), 38, + STATE(2038), 1, + sym_scoped_identifier, + STATE(2826), 1, + sym_bracketed_type, + STATE(2945), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1231), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2657), 2, + sym_meta_item, + sym__literal, + ACTIONS(3419), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3417), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82773,91 +121649,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21472] = 3, + [41749] = 5, + ACTIONS(3533), 1, + anon_sym_BANG, + ACTIONS(3535), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1585), 7, + ACTIONS(2876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2874), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41802] = 23, + ACTIONS(856), 1, + anon_sym_RBRACK, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3537), 1, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3539), 1, + anon_sym_COMMA, + STATE(2323), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2896), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2898), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1587), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21526] = 3, + anon_sym_as, + [41940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1917), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3543), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1919), 38, + ACTIONS(3541), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82878,139 +121846,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21580] = 3, + [41989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1909), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2916), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2918), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [42038] = 5, + ACTIONS(3231), 1, + anon_sym_BANG, + ACTIONS(3545), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1162), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42091] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2995), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1911), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21634] = 3, + ACTIONS(2997), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2993), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1905), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2904), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2906), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1907), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21688] = 3, + anon_sym_as, + [42191] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3097), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2997), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2993), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42242] = 4, + ACTIONS(3549), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1901), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3551), 8, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1903), 38, + ACTIONS(3547), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83031,37 +122127,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21742] = 3, + [42293] = 5, + ACTIONS(3553), 1, + anon_sym_SQUOTE, + STATE(1528), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1897), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2942), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2940), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42346] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3101), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3099), 25, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [42395] = 4, + ACTIONS(3555), 1, anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1899), 38, + ACTIONS(3547), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83082,88 +122268,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21796] = 3, + [42446] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1877), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2924), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2926), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1879), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21850] = 3, + anon_sym_as, + [42495] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1873), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3559), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1875), 38, + ACTIONS(3557), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83184,37 +122360,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21904] = 3, + [42544] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1605), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3131), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1607), 38, + ACTIONS(3129), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83235,343 +122406,634 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21958] = 3, + [42593] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2916), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2918), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [42642] = 5, + ACTIONS(3065), 1, + anon_sym_BANG, + ACTIONS(3561), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2874), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42695] = 23, + ACTIONS(1052), 1, + anon_sym_RBRACK, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3563), 1, + anon_sym_SEMI, + ACTIONS(3565), 1, + anon_sym_COMMA, + STATE(2381), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42784] = 5, + ACTIONS(3531), 1, + anon_sym_else, + STATE(1526), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(982), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(980), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42837] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3105), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3103), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [42885] = 5, + ACTIONS(3567), 1, + anon_sym_LPAREN, + STATE(1540), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3125), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3121), 22, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42937] = 4, + ACTIONS(3569), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1865), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3079), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3077), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42987] = 4, + ACTIONS(3571), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1867), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22012] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1857), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2934), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2932), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43037] = 4, + ACTIONS(3571), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1859), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22066] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1853), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2910), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1855), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22120] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2908), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43087] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1841), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3091), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3089), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [43135] = 4, + ACTIONS(3573), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1843), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22174] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1837), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2910), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1839), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22228] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2908), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43185] = 4, + ACTIONS(3575), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3073), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3071), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43235] = 18, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1430), 1, anon_sym_COLON_COLON, + ACTIONS(3037), 1, sym_metavariable, - ACTIONS(1108), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3467), 1, anon_sym_default, - anon_sym_enum, + ACTIONS(3577), 1, + sym_identifier, + ACTIONS(3579), 1, anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, + STATE(2239), 1, + sym_scoped_type_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2895), 1, + sym_function_modifiers, + STATE(2898), 1, + sym_scoped_identifier, + STATE(2996), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - [22282] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1621), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1623), 38, + ACTIONS(3033), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83589,397 +123051,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22336] = 3, + [43313] = 4, + ACTIONS(3581), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(836), 15, + ACTIONS(2910), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(838), 30, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2908), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43363] = 4, + ACTIONS(2995), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2997), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2993), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22390] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43413] = 4, + ACTIONS(3583), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1829), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1162), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1831), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22444] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43463] = 4, + ACTIONS(3585), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1819), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3009), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3007), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43513] = 4, + ACTIONS(3535), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1821), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22498] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1809), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1811), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22552] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2874), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43563] = 4, + ACTIONS(3587), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1805), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3085), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1807), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22606] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3083), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1637), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1058), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1639), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1056), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [43661] = 18, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1236), 1, anon_sym_extern, + ACTIONS(1430), 1, + anon_sym_COLON_COLON, + ACTIONS(3037), 1, + sym_metavariable, + ACTIONS(3467), 1, + anon_sym_default, + ACTIONS(3589), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [22660] = 3, + ACTIONS(3591), 1, + anon_sym_fn, + STATE(2148), 1, + sym_scoped_type_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2898), 1, + sym_scoped_identifier, + STATE(2968), 1, + sym_function_modifiers, + STATE(2996), 1, + sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1801), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1803), 38, - 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_str, - anon_sym_char, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - [22714] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1793), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1795), 38, + ACTIONS(3033), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83997,754 +123432,898 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22768] = 3, + [43739] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1777), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1068), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1779), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22822] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1066), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [43787] = 22, + ACTIONS(866), 1, + anon_sym_RPAREN, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3593), 1, + anon_sym_COMMA, + STATE(2333), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1713), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43873] = 4, + ACTIONS(3595), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3015), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3013), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43923] = 4, + ACTIONS(3597), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1715), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1765), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1162), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43973] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3095), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3093), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [44021] = 4, + ACTIONS(3599), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2989), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2987), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44071] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3001), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2999), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [44119] = 4, + ACTIONS(3601), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1767), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1729), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1162), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1731), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22984] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1164), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44169] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1685), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3005), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3003), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1687), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23038] = 3, + anon_sym_as, + [44217] = 4, + ACTIONS(3603), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1869), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3041), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3039), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44267] = 4, + ACTIONS(3561), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1871), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1657), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1659), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23146] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2874), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44317] = 22, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3605), 1, + anon_sym_RPAREN, + ACTIONS(3607), 1, + anon_sym_COMMA, + STATE(2523), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1653), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44403] = 4, + ACTIONS(3571), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1655), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1625), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2938), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1627), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23254] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2936), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44453] = 22, + ACTIONS(862), 1, + anon_sym_RPAREN, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3609), 1, + anon_sym_COMMA, + STATE(2555), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1951), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1953), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23308] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44539] = 22, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3611), 1, + anon_sym_RPAREN, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(2476), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1955), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44625] = 4, + ACTIONS(3097), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1957), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1797), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2997), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1799), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23416] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2993), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1601), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3051), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3049), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [44723] = 18, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(1236), 1, + anon_sym_extern, + ACTIONS(1430), 1, anon_sym_COLON_COLON, + ACTIONS(3037), 1, sym_metavariable, - ACTIONS(1603), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3467), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3615), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [23470] = 3, + ACTIONS(3617), 1, + anon_sym_fn, + STATE(2223), 1, + sym_scoped_type_identifier, + STATE(2833), 1, + sym_bracketed_type, + STATE(2834), 1, + sym_generic_type_with_turbofish, + STATE(2868), 1, + sym_function_modifiers, + STATE(2898), 1, + sym_scoped_identifier, + STATE(2996), 1, + sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1593), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1595), 38, - 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_str, - anon_sym_char, + STATE(1908), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1222), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(1440), 3, sym_self, sym_super, sym_crate, - [23524] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1705), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1707), 38, + ACTIONS(3033), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84762,3412 +124341,2390 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23578] = 3, + [44801] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1577), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3059), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1579), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23632] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3057), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [44849] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2981), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2979), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [44897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 15, + ACTIONS(1048), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(389), 30, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1046), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_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_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, anon_sym_else, - [23686] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1681), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1683), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23740] = 3, + [44945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1553), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2914), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1555), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23794] = 3, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2912), 22, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [44993] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 15, + ACTIONS(2963), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2522), 30, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2961), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23848] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [45041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1569), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(766), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1571), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23902] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(768), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45088] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1541), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3351), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1543), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23956] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3349), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45135] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1537), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3179), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1539), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24010] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3177), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1533), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1535), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24064] = 3, + ACTIONS(3211), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3209), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45229] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2528), 15, + ACTIONS(3219), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2526), 30, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3217), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24118] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1529), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1531), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24172] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1521), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1523), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24226] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1517), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1519), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24280] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1102), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1104), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24334] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1473), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1475), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24388] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1453), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1455), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24442] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1449), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3239), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1451), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24496] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3237), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1445), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3251), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1447), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24550] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3249), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 15, + ACTIONS(3215), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2530), 30, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3213), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24604] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1441), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1443), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24658] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1437), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1439), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24712] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1431), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1433), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24766] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1427), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45417] = 21, + ACTIONS(117), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1429), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24820] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1423), 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1425), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1419), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1421), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24928] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45500] = 21, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(378), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1415), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1417), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24982] = 3, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45583] = 21, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(393), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1411), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1413), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25036] = 3, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1407), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1148), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1409), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25090] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1146), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45713] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1403), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1405), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25144] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3649), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1399), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3151), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1401), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25198] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3149), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45841] = 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1387), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3451), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1389), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25252] = 3, + ACTIONS(3449), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [45896] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1489), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(1172), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1491), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25306] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1170), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45943] = 21, + ACTIONS(880), 1, + anon_sym_RPAREN, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3655), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1383), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1385), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25360] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46026] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(203), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1461), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1463), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25414] = 5, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(2534), 1, - anon_sym_COLON_COLON, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46109] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(806), 15, anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, + ACTIONS(808), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3135), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3133), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1152), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(459), 28, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1150), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46250] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3655), 1, + anon_sym_COMMA, + ACTIONS(3657), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25472] = 3, + [46333] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1379), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1381), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25526] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1375), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3659), 2, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1377), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25580] = 3, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46414] = 21, + ACTIONS(109), 1, + anon_sym_RBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1371), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1373), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25634] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46497] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2400), 17, + ACTIONS(1094), 15, anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1092), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46544] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3661), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2398), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46625] = 21, + ACTIONS(1104), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, anon_sym_QMARK, + ACTIONS(3431), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(389), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25688] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1367), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1369), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25742] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1363), 7, + [46708] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + ACTIONS(3663), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1365), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25796] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1359), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1361), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25850] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46791] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3665), 1, + anon_sym_RPAREN, + ACTIONS(3667), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1355), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1357), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25904] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1351), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1353), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25958] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1347), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3305), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46921] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + ACTIONS(3669), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1349), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26012] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1339), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1341), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26066] = 4, - ACTIONS(2540), 1, - anon_sym_DASH_GT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47004] = 21, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(400), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2536), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26122] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1315), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1317), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26176] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1311), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1313), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26230] = 4, - ACTIONS(2546), 1, - anon_sym_DASH_GT, + [47087] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(311), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2542), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26286] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1335), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + [47170] = 21, + ACTIONS(105), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1337), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26340] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1331), 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1333), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26394] = 4, - ACTIONS(2552), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2548), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47253] = 21, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, anon_sym_QMARK, + ACTIONS(3431), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1239), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26450] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1303), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1305), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26504] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1230), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1232), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26558] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1327), 7, + [47336] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + ACTIONS(3671), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1329), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26612] = 4, - ACTIONS(2558), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2554), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47419] = 21, + ACTIONS(1104), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, anon_sym_QMARK, + ACTIONS(3431), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(398), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26668] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1228), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26722] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1323), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1325), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26776] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1222), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1224), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26830] = 3, + [47502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(786), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1220), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26884] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(788), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47549] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3343), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1188), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26938] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3341), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1319), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3311), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1321), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26992] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1182), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3309), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47643] = 15, + ACTIONS(25), 1, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1184), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3673), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [27046] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1178), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3677), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + ACTIONS(3679), 1, + anon_sym_STAR, + ACTIONS(3681), 1, + anon_sym_COMMA, + ACTIONS(3683), 1, anon_sym_COLON_COLON, + ACTIONS(3689), 1, sym_metavariable, - ACTIONS(1180), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27100] = 3, + STATE(2074), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1164), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(3687), 3, sym_self, sym_super, sym_crate, - [27154] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1158), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1160), 38, + STATE(2332), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88185,1477 +126742,1667 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27208] = 3, + [47714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1090), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1088), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47761] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + ACTIONS(3691), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1156), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1132), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27316] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47844] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(306), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1128), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27370] = 3, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47927] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(3335), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3333), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47974] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + ACTIONS(3693), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1116), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1124), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27478] = 3, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48057] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 15, + ACTIONS(3315), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2560), 30, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3313), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48104] = 21, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(411), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27532] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1134), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1136), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27586] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1307), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1309), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27640] = 3, + [48187] = 21, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(402), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1299), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1301), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27694] = 3, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48270] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + ACTIONS(3695), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1295), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1297), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27748] = 3, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48353] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1287), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3139), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1289), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27802] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3137), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48400] = 21, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1360), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1140), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27856] = 3, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48483] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + ACTIONS(3697), 1, + anon_sym_LBRACE, + STATE(1508), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2564), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27910] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1142), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1144), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27964] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1146), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1148), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28018] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1279), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1281), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28072] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1150), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1152), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28126] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1246), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1248), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28180] = 3, + [48566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(758), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1240), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28234] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(760), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3319), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1212), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28288] = 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3317), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48660] = 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3459), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1172), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28342] = 3, + ACTIONS(3457), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [48715] = 21, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1046), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1176), 38, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28396] = 3, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48798] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2155), 15, + ACTIONS(3347), 15, anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3345), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48845] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, anon_sym_DOT_DOT, + STATE(160), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48928] = 21, + ACTIONS(282), 1, + anon_sym_RBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2157), 29, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49011] = 21, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, anon_sym_QMARK, + ACTIONS(3431), 1, anon_sym_as, - anon_sym_COMMA, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1210), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49094] = 21, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1217), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28449] = 3, + [49177] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 15, + ACTIONS(3155), 15, anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3153), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49224] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, anon_sym_DOT_DOT, + STATE(161), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2568), 29, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49307] = 21, + ACTIONS(878), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3655), 1, anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49390] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3699), 1, + anon_sym_RPAREN, + ACTIONS(3701), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49473] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + ACTIONS(3703), 1, + anon_sym_LBRACE, + STATE(394), 1, + sym_match_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28502] = 3, + [49556] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(429), 15, + ACTIONS(1076), 15, anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, + ACTIONS(1074), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3195), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(427), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3193), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28555] = 18, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49650] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(1102), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2572), 19, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1100), 23, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28638] = 14, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49697] = 7, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, + ACTIONS(3653), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3407), 13, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2572), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LT, + ACTIONS(3405), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28713] = 17, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [49752] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3287), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2572), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3285), 23, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -89663,8410 +128410,7166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28794] = 13, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49799] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2910), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 5, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2572), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2908), 23, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28867] = 11, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49846] = 21, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(379), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3621), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2588), 2, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2580), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 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(2572), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28936] = 3, + [49929] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + ACTIONS(1140), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2604), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1138), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28989] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49976] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(407), 15, + ACTIONS(3175), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(405), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3173), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29042] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 15, + ACTIONS(1188), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2608), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1186), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29095] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50070] = 21, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2614), 1, - anon_sym_EQ, - ACTIONS(2616), 1, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, - STATE(1078), 1, - sym_arguments, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1509), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3621), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2612), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29180] = 3, + [50153] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, + ACTIONS(3171), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2618), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3169), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29233] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50200] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2624), 1, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3705), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2622), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29318] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(403), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - 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(401), 29, - anon_sym_SEMI, - anon_sym_LPAREN, + [50281] = 21, + ACTIONS(994), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3655), 1, anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29371] = 3, + [50364] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(1180), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2626), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1178), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29424] = 4, - ACTIONS(2392), 1, - anon_sym_COLON_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50411] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2384), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3707), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29479] = 3, + [50492] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 15, + ACTIONS(3163), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2630), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3161), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29532] = 10, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50539] = 17, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + ACTIONS(3383), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3653), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2580), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 10, - anon_sym_PLUS, - anon_sym_EQ, - 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(2572), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3373), 14, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29599] = 3, + anon_sym_as, + [50614] = 21, + ACTIONS(111), 1, + anon_sym_RBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2634), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29652] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + [50697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2582), 13, + ACTIONS(3243), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2572), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3241), 23, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29717] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50744] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(441), 15, + ACTIONS(3283), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(439), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3281), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29770] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(3243), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2638), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3241), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29823] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50838] = 21, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1264), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2642), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29876] = 3, + [50921] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_RBRACE, + ACTIONS(3711), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2646), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29929] = 3, + [51004] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(209), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2650), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29982] = 3, + [51087] = 21, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1468), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2654), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30035] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2660), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2658), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30088] = 3, + [51170] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 15, + ACTIONS(3125), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2662), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3121), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30141] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51217] = 21, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, - ACTIONS(2668), 1, + ACTIONS(3639), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1470), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3621), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2666), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30226] = 15, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [51300] = 20, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3719), 1, + anon_sym_QMARK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2594), 1, + ACTIONS(3725), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3727), 1, + anon_sym_AMP_AMP, + ACTIONS(3729), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3735), 1, + anon_sym_EQ, + ACTIONS(3741), 1, anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, + ACTIONS(3747), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3423), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(3715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3739), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2572), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3733), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30303] = 3, + [51381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(3331), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2670), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3329), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30356] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51428] = 21, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2462), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30409] = 3, + [51511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(465), 15, + ACTIONS(3275), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(463), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3273), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30462] = 12, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3143), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2582), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2572), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3141), 23, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30533] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51605] = 7, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 15, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3451), 13, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2674), 29, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3449), 20, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30586] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [51660] = 10, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2680), 15, + ACTIONS(3715), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2678), 29, - anon_sym_SEMI, + ACTIONS(3361), 6, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30639] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [51721] = 7, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, + ACTIONS(3741), 1, anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, + ACTIONS(3745), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2684), 13, + ACTIONS(3407), 13, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3405), 20, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30704] = 6, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [51776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(313), 14, + ACTIONS(3279), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(311), 26, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3277), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30763] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2688), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51823] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3363), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2686), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30816] = 3, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(425), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(423), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3749), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30869] = 3, + [51904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, + ACTIONS(1144), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2690), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1142), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30922] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2696), 12, - anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51951] = 21, + ACTIONS(288), 1, anon_sym_LBRACE, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2694), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30975] = 3, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1219), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2700), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2698), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31028] = 3, + [52034] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, + ACTIONS(1080), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2702), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1078), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31081] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52081] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 15, + ACTIONS(1184), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2706), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1182), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31134] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52128] = 13, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_AMP, + ACTIONS(3725), 1, + anon_sym_PIPE, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(3715), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3361), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3717), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2710), 29, - anon_sym_SEMI, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31187] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [52195] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, + anon_sym_SEMI, + ACTIONS(3751), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2710), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31240] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2716), 12, - anon_sym_SEMI, - anon_sym_LPAREN, + [52278] = 21, + ACTIONS(346), 1, anon_sym_LBRACE, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2714), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31293] = 4, - ACTIONS(2722), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2720), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2718), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31348] = 3, + STATE(1477), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2724), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31401] = 3, + [52361] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2858), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2728), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2860), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31454] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52408] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2732), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3753), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31507] = 3, + [52489] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3655), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2736), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [52572] = 21, + ACTIONS(346), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, anon_sym_QMARK, + ACTIONS(3431), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1338), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31560] = 3, + [52655] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(453), 15, + ACTIONS(2934), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(451), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2932), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31613] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2742), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52702] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3363), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2740), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31666] = 3, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2744), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3757), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31719] = 3, + [52783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2159), 15, + ACTIONS(3271), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2161), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3269), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31772] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2750), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52830] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3363), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2748), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31825] = 3, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(459), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3759), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31878] = 3, + [52911] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 15, + ACTIONS(322), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(600), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(320), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31931] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2754), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52958] = 12, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, anon_sym_AMP, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3715), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2752), 29, - anon_sym_SEMI, + ACTIONS(3361), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31984] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [53023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 15, + ACTIONS(3267), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2756), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3265), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32037] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 15, + ACTIONS(3323), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(596), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3321), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32090] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53117] = 17, + ACTIONS(292), 1, + anon_sym_EQ, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3725), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3727), 1, + anon_sym_AMP_AMP, + ACTIONS(3729), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3731), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3739), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3745), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2760), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LT_EQ, + ACTIONS(286), 14, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2768), 10, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32181] = 3, + anon_sym_as, + [53192] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 15, + ACTIONS(1156), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2770), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1154), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32234] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 15, + ACTIONS(2938), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2774), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2936), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32287] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(582), 15, + ACTIONS(3227), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(580), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3225), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32340] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53333] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2780), 13, + ACTIONS(1124), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2778), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1122), 23, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32405] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 15, + ACTIONS(1132), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2782), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1130), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32458] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53427] = 17, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3725), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3727), 1, + anon_sym_AMP_AMP, + ACTIONS(3729), 1, anon_sym_PIPE_PIPE, - ACTIONS(2788), 1, - anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3731), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3739), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3745), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2786), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LT_EQ, + ACTIONS(3433), 14, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32543] = 3, + anon_sym_as, + [53502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 15, + ACTIONS(3147), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(588), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3145), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32596] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2211), 15, - anon_sym_PLUS, - anon_sym_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53549] = 17, + ACTIONS(3383), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(3725), 1, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2213), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3727), 1, anon_sym_AMP_AMP, + ACTIONS(3729), 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, - [32649] = 3, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(469), 15, + ACTIONS(3715), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(467), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3739), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3745), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3373), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32702] = 3, + anon_sym_as, + [53624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(449), 15, + ACTIONS(3259), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(447), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3257), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32755] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 15, + ACTIONS(2997), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2790), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2993), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32808] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53718] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 15, + ACTIONS(3159), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2794), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3157), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32861] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53765] = 17, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, - STATE(1078), 1, - sym_arguments, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3621), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3653), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(277), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LT_EQ, + ACTIONS(3433), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32946] = 3, + anon_sym_as, + [53840] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 15, + ACTIONS(3183), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2798), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3181), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32999] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(445), 15, + ACTIONS(3191), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(443), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3189), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33052] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53934] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(594), 15, + ACTIONS(3199), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(592), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3197), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33105] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, - anon_sym_STAR, - ACTIONS(2814), 1, - anon_sym_for, - ACTIONS(2816), 1, - anon_sym_AMP, - ACTIONS(2818), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_type_identifier, - STATE(1989), 1, - sym_where_predicate, - STATE(2036), 1, - sym_generic_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2415), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2804), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2812), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(2048), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2810), 17, - 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_str, - anon_sym_char, - [33194] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2602), 1, - anon_sym_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53981] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2822), 13, + ACTIONS(3187), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2820), 24, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3185), 23, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33259] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54028] = 17, + ACTIONS(3391), 1, + anon_sym_EQ, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_AMP, + ACTIONS(3725), 1, + anon_sym_PIPE, + ACTIONS(3727), 1, + anon_sym_AMP_AMP, + ACTIONS(3729), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 15, + ACTIONS(3715), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2824), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3739), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3745), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3389), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33312] = 3, + anon_sym_as, + [54103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(3207), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2828), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3205), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54150] = 17, + ACTIONS(3395), 1, + anon_sym_EQ, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_AMP, + ACTIONS(3725), 1, + anon_sym_PIPE, + ACTIONS(3727), 1, anon_sym_AMP_AMP, + ACTIONS(3729), 1, anon_sym_PIPE_PIPE, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3731), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3739), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3393), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33365] = 3, + anon_sym_as, + [54225] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 15, + ACTIONS(3203), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2832), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3201), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33418] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54272] = 13, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(437), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3361), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3623), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(435), 29, - anon_sym_SEMI, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33471] = 4, - ACTIONS(2840), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2838), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [54339] = 17, + ACTIONS(3355), 1, anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3391), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3651), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2836), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(459), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3653), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3389), 14, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33579] = 3, + anon_sym_as, + [54414] = 17, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2199), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2201), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3653), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3393), 14, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33632] = 3, + anon_sym_as, + [54489] = 9, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2844), 15, + ACTIONS(3621), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 8, + anon_sym_CARET, 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(2842), 29, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33685] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [54548] = 16, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_EQ, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2848), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2846), 29, - anon_sym_SEMI, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3353), 15, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33738] = 3, + anon_sym_as, + [54621] = 21, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1568), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2382), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2380), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33791] = 3, + [54704] = 21, + ACTIONS(876), 1, + anon_sym_RPAREN, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3655), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2850), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33844] = 3, + [54787] = 17, + ACTIONS(3455), 1, + anon_sym_EQ, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_AMP, + ACTIONS(3725), 1, + anon_sym_PIPE, + ACTIONS(3727), 1, + anon_sym_AMP_AMP, + ACTIONS(3729), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 15, + ACTIONS(3715), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2854), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3739), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3745), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3453), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33897] = 3, + anon_sym_as, + [54862] = 15, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3361), 1, + anon_sym_EQ, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2396), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2394), 29, - anon_sym_SEMI, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3353), 16, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33950] = 3, + anon_sym_as, + [54933] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2428), 15, + ACTIONS(3423), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2426), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3653), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34003] = 3, + [55014] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2860), 15, + ACTIONS(3223), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2858), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3221), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34056] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55061] = 12, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2862), 29, - anon_sym_SEMI, + ACTIONS(3361), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34109] = 4, - ACTIONS(2866), 1, - anon_sym_COLON_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [55126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(826), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(459), 28, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(828), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34164] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55173] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2870), 15, + ACTIONS(3247), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2868), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3245), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34217] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55220] = 7, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 15, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3459), 13, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2872), 29, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3457), 20, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34270] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [55275] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2878), 15, + ACTIONS(1176), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2876), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1174), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34323] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(1128), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(459), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1126), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34376] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55369] = 21, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + ACTIONS(3761), 1, + anon_sym_LBRACE, + STATE(1268), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2882), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2880), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34429] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [55452] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(3431), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(325), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3621), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2884), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34520] = 3, + [55535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(477), 15, + ACTIONS(1098), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(475), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1096), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34573] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55582] = 10, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(419), 15, + ACTIONS(3621), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 6, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [55643] = 11, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3627), 1, anon_sym_AMP, + ACTIONS(3651), 1, anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(417), 29, - anon_sym_SEMI, + ACTIONS(3361), 5, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34626] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [55706] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(481), 15, + ACTIONS(1086), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(479), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1084), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55753] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, anon_sym_as, - anon_sym_COMMA, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3763), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34679] = 3, + [55834] = 7, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(415), 15, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3361), 13, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(413), 29, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34732] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [55889] = 8, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, - anon_sym_PLUS, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 10, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(584), 29, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34785] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [55946] = 20, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3719), 1, + anon_sym_QMARK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_AMP, + ACTIONS(3725), 1, + anon_sym_PIPE, + ACTIONS(3727), 1, + anon_sym_AMP_AMP, + ACTIONS(3729), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3735), 1, + anon_sym_EQ, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, + ACTIONS(3747), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(3471), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(3715), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(459), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3739), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3745), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3733), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34838] = 5, - ACTIONS(2886), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2333), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2331), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34895] = 3, + [56027] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2891), 15, + ACTIONS(830), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2889), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(832), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34948] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, - anon_sym_STAR, - ACTIONS(2814), 1, - anon_sym_for, - ACTIONS(2816), 1, - anon_sym_AMP, - ACTIONS(2818), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_type_identifier, - STATE(1989), 1, - sym_where_predicate, - STATE(2036), 1, - sym_generic_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2415), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2812), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2893), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(2048), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2810), 17, - 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_str, - anon_sym_char, - [35037] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2897), 15, + ACTIONS(3299), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2895), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3297), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35090] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56121] = 21, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1561), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2901), 15, + ACTIONS(3621), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3635), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2899), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35143] = 3, + [56204] = 7, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2905), 15, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3361), 13, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2903), 29, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35196] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [56259] = 9, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2909), 15, + ACTIONS(3715), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 8, + anon_sym_CARET, 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(2907), 29, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35249] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [56318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(411), 15, + ACTIONS(1392), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(409), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1394), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35302] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(433), 15, + ACTIONS(1136), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(431), 29, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(1134), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35355] = 7, - ACTIONS(2422), 1, - anon_sym_LBRACE, - ACTIONS(2424), 1, - anon_sym_COLON_COLON, - ACTIONS(2911), 1, - anon_sym_BANG, - STATE(1048), 1, - sym_field_initializer_list, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56412] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(3263), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(459), 24, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3261), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35415] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56459] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, + ACTIONS(3303), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2836), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35467] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2720), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2718), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35519] = 21, - ACTIONS(77), 1, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2913), 1, - sym_identifier, - ACTIONS(2917), 1, - anon_sym_default, - ACTIONS(2919), 1, - sym_metavariable, - STATE(711), 1, - sym_scoped_type_identifier, - STATE(825), 1, - sym_generic_type, - STATE(1057), 1, - sym_function_type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2292), 1, - sym_function_modifiers, - STATE(2313), 1, - sym_scoped_identifier, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2915), 18, - 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_str, - anon_sym_char, - anon_sym_union, - [35606] = 25, - ACTIONS(363), 1, - anon_sym_RBRACK, - ACTIONS(2574), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3301), 23, anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2921), 1, - anon_sym_SEMI, - ACTIONS(2923), 1, - anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, - STATE(1794), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35701] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2818), 1, - sym_metavariable, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2927), 1, - anon_sym_default, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1271), 1, - sym_scoped_type_identifier, - STATE(1308), 1, - sym_generic_type, - STATE(1341), 1, - sym_function_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2415), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2812), 18, - 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_str, - anon_sym_char, - anon_sym_union, - [35788] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3291), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2878), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35839] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(682), 1, - anon_sym_fn, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2818), 1, - sym_metavariable, - ACTIONS(2927), 1, - anon_sym_default, - ACTIONS(2929), 1, - sym_identifier, - STATE(1179), 1, - sym_for_lifetimes, - STATE(1272), 1, - sym_scoped_type_identifier, - STATE(1312), 1, - sym_generic_type, - STATE(1323), 1, - sym_function_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2308), 1, - sym_function_modifiers, - STATE(2415), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2812), 18, - 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_str, - anon_sym_char, - anon_sym_union, - [35926] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1118), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(1120), 32, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35977] = 17, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_RPAREN, - ACTIONS(2937), 1, - anon_sym_COMMA, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1937), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [36056] = 25, - ACTIONS(628), 1, - anon_sym_RBRACK, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2590), 1, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(2592), 1, + ACTIONS(3289), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56553] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3295), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(2602), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2616), 1, + anon_sym_DOT_DOT, + ACTIONS(3293), 23, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56600] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, + ACTIONS(3431), 1, anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, anon_sym_EQ, - ACTIONS(2943), 1, - anon_sym_SEMI, - ACTIONS(2945), 1, - anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, - STATE(2004), 1, - aux_sym_array_expression_repeat1, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3471), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3621), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3653), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36151] = 20, - ACTIONS(77), 1, + [56681] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(219), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, anon_sym_STAR, - ACTIONS(2814), 1, - anon_sym_for, - ACTIONS(2816), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [56764] = 16, + ACTIONS(3361), 1, + anon_sym_EQ, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(2818), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_type_identifier, - STATE(1989), 1, - sym_where_predicate, - STATE(2036), 1, - sym_generic_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2415), 1, - sym_scoped_identifier, + ACTIONS(3725), 1, + anon_sym_PIPE, + ACTIONS(3727), 1, + anon_sym_AMP_AMP, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(2048), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2810), 17, - 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_str, - anon_sym_char, - [36236] = 20, - ACTIONS(77), 1, + ACTIONS(3715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3731), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3739), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 3, anon_sym_STAR, - ACTIONS(2814), 1, - anon_sym_for, - ACTIONS(2816), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3737), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3353), 15, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_as, + [56837] = 21, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, - ACTIONS(2818), 1, - sym_metavariable, - STATE(1715), 1, - sym_where_predicate, - STATE(1773), 1, - sym_scoped_type_identifier, - STATE(2036), 1, - sym_generic_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2415), 1, - sym_scoped_identifier, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1265), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(2048), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2810), 17, - 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_str, - anon_sym_char, - [36321] = 6, - ACTIONS(2390), 1, - anon_sym_BANG, - ACTIONS(2392), 1, - anon_sym_COLON_COLON, - ACTIONS(2947), 1, - sym_identifier, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [56920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 16, + ACTIONS(3327), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(2384), 23, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3325), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56967] = 21, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, + ACTIONS(3639), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_DOT_DOT, + STATE(1037), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3621), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3637), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36378] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_for, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(2269), 1, - anon_sym_fn, - ACTIONS(2277), 1, - anon_sym_COLON_COLON, - ACTIONS(2917), 1, - anon_sym_default, - ACTIONS(2919), 1, - sym_metavariable, - ACTIONS(2949), 1, - sym_identifier, - STATE(721), 1, - sym_scoped_type_identifier, - STATE(822), 1, - sym_generic_type, - STATE(1061), 1, - sym_function_type, - STATE(1211), 1, - sym_for_lifetimes, - STATE(2292), 1, - sym_function_modifiers, - STATE(2313), 1, - sym_scoped_identifier, - STATE(2391), 1, - sym_bracketed_type, - STATE(2392), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2285), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2915), 18, - 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_str, - anon_sym_char, - anon_sym_union, - [36465] = 5, - ACTIONS(2534), 1, - anon_sym_COLON_COLON, - ACTIONS(2911), 1, - anon_sym_BANG, + [57050] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(3339), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(459), 24, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(3337), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [57097] = 8, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3361), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36519] = 24, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [57154] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2951), 1, - anon_sym_RPAREN, - ACTIONS(2953), 1, - anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, - STATE(1837), 1, - aux_sym_arguments_repeat1, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3765), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36611] = 24, - ACTIONS(371), 1, - anon_sym_RPAREN, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [57235] = 17, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3455), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2955), 1, - anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, - STATE(1969), 1, - aux_sym_arguments_repeat1, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3621), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3653), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3641), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3453), 14, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36703] = 6, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(2957), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, - sym_field_initializer_list, + anon_sym_as, + [57310] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(3167), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(459), 23, + anon_sym_DOT_DOT, + ACTIONS(3165), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36759] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - ACTIONS(2959), 1, - anon_sym_RPAREN, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2230), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [36835] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2961), 1, - sym_identifier, - ACTIONS(2967), 1, - sym_metavariable, - STATE(1346), 1, - sym_scoped_identifier, - STATE(1386), 1, - sym__literal_pattern, - STATE(2287), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [57357] = 17, + ACTIONS(292), 1, + anon_sym_EQ, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3625), 1, + anon_sym_CARET, + ACTIONS(3627), 1, + anon_sym_AMP, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3631), 1, + anon_sym_AMP_AMP, + ACTIONS(3633), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3651), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(720), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2965), 3, - sym_self, - sym_super, - sym_crate, - STATE(1331), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(716), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2963), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [36911] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, + ACTIONS(3621), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2969), 1, - sym_identifier, - ACTIONS(2975), 1, - sym_metavariable, - STATE(1350), 1, - sym_scoped_identifier, - STATE(1396), 1, - sym__literal_pattern, - STATE(2287), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(720), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2973), 3, - sym_self, - sym_super, - sym_crate, - STATE(1331), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(716), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2971), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [36987] = 16, - ACTIONS(77), 1, + ACTIONS(3635), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - ACTIONS(2977), 1, - anon_sym_RPAREN, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2230), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [37063] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2981), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3653), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3623), 3, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2979), 31, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37112] = 23, - ACTIONS(483), 1, - anon_sym_RPAREN, - ACTIONS(2574), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3641), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(286), 14, anon_sym_LPAREN, - ACTIONS(2576), 1, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_as, + [57432] = 21, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, + anon_sym_SEMI, + ACTIONS(3767), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37201] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2230), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [37274] = 23, - ACTIONS(119), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [57515] = 15, + ACTIONS(3361), 1, + anon_sym_EQ, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3725), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3741), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3731), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3739), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3745), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3353), 16, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37363] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2742), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2740), 31, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37412] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_as, + [57586] = 11, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3741), 1, anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - anon_sym_RPAREN, - ACTIONS(2989), 1, - anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, + ACTIONS(3743), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3731), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3745), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 10, + ACTIONS(3361), 5, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37501] = 4, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2993), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2991), 31, - 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_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37552] = 23, - ACTIONS(105), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_as, + [57649] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3769), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37641] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [57730] = 21, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3619), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2997), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37728] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [57813] = 21, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3771), 1, + anon_sym_RBRACE, + ACTIONS(3773), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2999), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37815] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [57896] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(53), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3775), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37904] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [57976] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3777), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3029), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37991] = 23, - ACTIONS(117), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [58056] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2985), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3779), 1, anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38080] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [58136] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(725), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3781), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38169] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [58216] = 20, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3719), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, + ACTIONS(3721), 1, + anon_sym_CARET, + ACTIONS(3723), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, + ACTIONS(3725), 1, + anon_sym_PIPE, + ACTIONS(3727), 1, anon_sym_AMP_AMP, - ACTIONS(3017), 1, + ACTIONS(3729), 1, anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1044), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3735), 1, + anon_sym_EQ, + ACTIONS(3741), 1, + anon_sym_DOT, + ACTIONS(3747), 1, + anon_sym_as, + ACTIONS(3783), 1, + anon_sym_EQ_GT, + ACTIONS(3785), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3731), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3739), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3787), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3737), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3733), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38258] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [58296] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1025), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3789), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38347] = 3, + [58376] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3791), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 16, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2404), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38396] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2716), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [58456] = 14, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + anon_sym_STAR, + ACTIONS(3683), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3689), 1, sym_metavariable, - ACTIONS(2714), 31, + ACTIONS(3793), 1, + anon_sym_RBRACE, + STATE(2074), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3687), 3, + sym_self, + sym_super, + sym_crate, + STATE(2784), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98084,505 +135587,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38445] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [58524] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - ACTIONS(3031), 1, - anon_sym_LBRACE, - STATE(1051), 1, - sym_match_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3795), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58604] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3797), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38534] = 3, + [58684] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3799), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 16, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2412), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38583] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [58764] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - ACTIONS(3033), 1, - anon_sym_RBRACE, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3801), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38672] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [58844] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(34), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3803), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38761] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [58924] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(986), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3805), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38850] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [59004] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3035), 1, - anon_sym_RBRACE, - ACTIONS(3037), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3807), 1, anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38939] = 5, - ACTIONS(2508), 1, - anon_sym_BANG, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, + [59084] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3809), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2384), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38992] = 3, + [59164] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3811), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2418), 16, + ACTIONS(3357), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2420), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [59244] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3813), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39041] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3043), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [59324] = 14, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + anon_sym_STAR, + ACTIONS(3683), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3689), 1, sym_metavariable, - ACTIONS(3041), 31, + ACTIONS(3815), 1, + anon_sym_RBRACE, + STATE(2074), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3687), 3, + sym_self, + sym_super, + sym_crate, + STATE(2784), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98600,1416 +136241,1413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39090] = 23, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [59392] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39179] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [59472] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1039), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3819), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39268] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [59552] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3821), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(3359), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3427), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [59632] = 20, + ACTIONS(3355), 1, + anon_sym_LBRACK, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, + anon_sym_QMARK, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3823), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3357), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3045), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3517), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39355] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [59712] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - ACTIONS(3047), 1, - anon_sym_RBRACE, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3825), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39444] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [59792] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1045), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3827), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39533] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [59872] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3829), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3049), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39620] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [59952] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2985), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3831), 1, anon_sym_SEMI, - ACTIONS(3051), 1, - anon_sym_RBRACE, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39709] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60032] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3833), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3053), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39796] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60112] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(732), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3835), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39885] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60192] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(208), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3837), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39974] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60272] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(54), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3839), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40063] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60352] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - ACTIONS(3055), 1, - anon_sym_LBRACE, - STATE(219), 1, - sym_match_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3841), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40152] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60432] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3843), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3057), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40239] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60512] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_COMMA, - ACTIONS(3059), 1, - anon_sym_RPAREN, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3845), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40328] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60592] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(220), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3619), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40417] = 23, - ACTIONS(111), 1, - anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60672] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2985), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3847), 1, anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40506] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60752] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(2985), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3849), 1, anon_sym_SEMI, - ACTIONS(3061), 1, - anon_sym_RBRACE, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40595] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60832] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3851), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3063), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40682] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60912] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(68), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3853), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40771] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [60992] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3363), 1, anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2616), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3065), 1, - anon_sym_RBRACE, - ACTIONS(3067), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + ACTIONS(3655), 1, anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2598), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2768), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40860] = 23, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, + [61072] = 20, + ACTIONS(3355), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(3363), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_DOT, - ACTIONS(2762), 1, + ACTIONS(3375), 1, + anon_sym_CARET, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3425), 1, anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3431), 1, + anon_sym_as, + ACTIONS(3515), 1, anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_LBRACE, - STATE(52), 1, - sym_match_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3855), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + ACTIONS(3365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 2, anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT, + ACTIONS(3517), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 4, + ACTIONS(3385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3027), 10, + anon_sym_LT_EQ, + ACTIONS(3427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40949] = 3, + [61152] = 13, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + anon_sym_STAR, + ACTIONS(3683), 1, + anon_sym_COLON_COLON, + ACTIONS(3689), 1, + sym_metavariable, + STATE(2074), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3073), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + ACTIONS(3687), 3, + sym_self, + sym_super, + sym_crate, + STATE(2784), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3685), 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_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [61217] = 13, + ACTIONS(25), 1, anon_sym_LT, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + anon_sym_STAR, + ACTIONS(3683), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3689), 1, sym_metavariable, - ACTIONS(3071), 31, + STATE(2074), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3687), 3, + sym_self, + sym_super, + sym_crate, + STATE(2918), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3685), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100027,167 +137665,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, + [61282] = 13, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(3673), 1, sym_identifier, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + anon_sym_STAR, + ACTIONS(3683), 1, + anon_sym_COLON_COLON, + ACTIONS(3689), 1, + sym_metavariable, + STATE(2074), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3687), 3, sym_self, sym_super, sym_crate, - [40998] = 23, - ACTIONS(15), 1, + STATE(2815), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3685), 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_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [61347] = 13, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(3675), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(32), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3679), 1, + anon_sym_STAR, + ACTIONS(3683), 1, + anon_sym_COLON_COLON, + ACTIONS(3689), 1, + sym_metavariable, + STATE(2074), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, + ACTIONS(3687), 3, + sym_self, + sym_super, + sym_crate, + STATE(2847), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3685), 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_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [61412] = 13, + ACTIONS(25), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3673), 1, + sym_identifier, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [41087] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + ACTIONS(3683), 1, + anon_sym_COLON_COLON, + ACTIONS(3689), 1, + sym_metavariable, + STATE(2074), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(3687), 3, + sym_self, + sym_super, + sym_crate, + STATE(2947), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3685), 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_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [61477] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3859), 3, anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3075), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [41174] = 4, - ACTIONS(3077), 1, - anon_sym_LPAREN, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3857), 28, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [61517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + ACTIONS(3863), 3, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(2991), 31, + ACTIONS(3861), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100209,21545 +137890,18559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_default, anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, anon_sym_unsafe, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [41225] = 23, - ACTIONS(279), 1, + [61557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3867), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3865), 28, + 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_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [61597] = 10, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1408), 1, + anon_sym_COLON_COLON, + ACTIONS(3869), 1, + sym_identifier, + ACTIONS(3875), 1, + sym_metavariable, + STATE(2620), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3873), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3871), 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_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [61649] = 10, + ACTIONS(25), 1, + anon_sym_LT, + ACTIONS(1408), 1, + anon_sym_COLON_COLON, + ACTIONS(3877), 1, + sym_identifier, + ACTIONS(3883), 1, + sym_metavariable, + STATE(2727), 1, + sym_scoped_identifier, + STATE(2945), 1, + sym_generic_type_with_turbofish, + STATE(3039), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3881), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3879), 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_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [61701] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(788), 19, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_in, + [61727] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(808), 19, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(974), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_in, + [61753] = 9, + ACTIONS(2866), 1, + anon_sym_COLON, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2862), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [41314] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(218), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [61793] = 4, + ACTIONS(2894), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [41403] = 22, - ACTIONS(2574), 1, + ACTIONS(2898), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2892), 15, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_LT2, + [61822] = 8, + ACTIONS(2886), 1, + anon_sym_COLON, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2884), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3079), 2, - anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [41490] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(55), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [61859] = 8, + ACTIONS(2890), 1, + anon_sym_COLON, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2888), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [41579] = 23, - ACTIONS(2574), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [61896] = 4, + ACTIONS(2914), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2918), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2912), 15, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2985), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_LT2, + [61925] = 4, + ACTIONS(2902), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2906), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2900), 15, anon_sym_SEMI, - ACTIONS(3081), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1078), 1, - sym_arguments, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_LT2, + [61954] = 4, + ACTIONS(2922), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2926), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2920), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_COMMA, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_LT2, + [61983] = 10, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_LBRACE, + ACTIONS(3899), 1, + anon_sym_COLON, + ACTIONS(3901), 1, + anon_sym_AT, + ACTIONS(3905), 1, + anon_sym_COLON_COLON, + STATE(1689), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [41668] = 23, - ACTIONS(113), 1, + ACTIONS(3893), 8, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_COMMA, + anon_sym_in, + [62023] = 17, + ACTIONS(3909), 1, + anon_sym_const, + ACTIONS(3911), 1, + anon_sym_enum, + ACTIONS(3913), 1, + anon_sym_fn, + ACTIONS(3915), 1, + anon_sym_mod, + ACTIONS(3917), 1, + anon_sym_static, + ACTIONS(3919), 1, + anon_sym_struct, + ACTIONS(3921), 1, + anon_sym_trait, + ACTIONS(3923), 1, + anon_sym_type, + ACTIONS(3925), 1, + anon_sym_union, + ACTIONS(3927), 1, + anon_sym_unsafe, + ACTIONS(3929), 1, + anon_sym_use, + ACTIONS(3931), 1, + anon_sym_extern, + STATE(1853), 1, + sym_extern_modifier, + STATE(1908), 1, + aux_sym_function_modifiers_repeat1, + STATE(2930), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3907), 2, + anon_sym_async, + anon_sym_default, + [62077] = 6, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2908), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [41757] = 5, - ACTIONS(2366), 1, - anon_sym_BANG, - ACTIONS(3083), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [62109] = 6, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(2936), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - 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(459), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [62141] = 6, + ACTIONS(3885), 1, anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2932), 13, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_as, - 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, - [41810] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + anon_sym_where, + [62173] = 17, + ACTIONS(3933), 1, + anon_sym_const, + ACTIONS(3935), 1, + anon_sym_enum, + ACTIONS(3937), 1, + anon_sym_fn, + ACTIONS(3939), 1, + anon_sym_mod, + ACTIONS(3941), 1, + anon_sym_static, + ACTIONS(3943), 1, + anon_sym_struct, + ACTIONS(3945), 1, + anon_sym_trait, + ACTIONS(3947), 1, + anon_sym_type, + ACTIONS(3949), 1, + anon_sym_union, + ACTIONS(3951), 1, + anon_sym_unsafe, + ACTIONS(3953), 1, + anon_sym_use, + ACTIONS(3955), 1, + anon_sym_extern, + STATE(1845), 1, + sym_extern_modifier, + STATE(1908), 1, + aux_sym_function_modifiers_repeat1, + STATE(3067), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3907), 2, + anon_sym_async, + anon_sym_default, + [62227] = 3, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(215), 1, - sym_block, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3547), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [62252] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2912), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [41899] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(212), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + anon_sym_for, + anon_sym_where, + anon_sym_LT2, + [62275] = 3, + ACTIONS(3101), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3099), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [41988] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(207), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + anon_sym_for, + anon_sym_where, + [62299] = 4, + ACTIONS(2904), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [42077] = 23, - ACTIONS(604), 1, - anon_sym_RPAREN, - ACTIONS(2574), 1, + ACTIONS(2900), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2906), 12, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2983), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON_COLON, + anon_sym_in, + [62325] = 3, + ACTIONS(2975), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2973), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [42166] = 23, - ACTIONS(644), 1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_for, + anon_sym_where, + [62349] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3557), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [62371] = 13, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(3897), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(3901), 1, + anon_sym_AT, + ACTIONS(3959), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(222), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + ACTIONS(3961), 1, + anon_sym_RBRACK, + ACTIONS(3964), 1, + anon_sym_COLON_COLON, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2862), 2, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3893), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [42255] = 3, + [62415] = 3, + ACTIONS(3055), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2434), 16, + ACTIONS(3053), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_for, + anon_sym_where, + [62439] = 14, + ACTIONS(2862), 1, + anon_sym_PLUS, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(3893), 1, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2436), 24, - anon_sym_LPAREN, + ACTIONS(3897), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3899), 1, + anon_sym_COLON, + ACTIONS(3901), 1, + anon_sym_AT, + ACTIONS(3966), 1, + anon_sym_LPAREN, + ACTIONS(3968), 1, anon_sym_COLON_COLON, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3903), 2, 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, - [42304] = 23, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, + ACTIONS(3961), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62485] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3523), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [62507] = 3, ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(232), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3003), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [42393] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_for, + anon_sym_where, + [62531] = 3, + ACTIONS(2924), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2926), 14, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + anon_sym_RBRACK, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(44), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_in, + [62555] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [42482] = 23, - ACTIONS(15), 1, + ACTIONS(3541), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [62577] = 4, + ACTIONS(2896), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2892), 2, anon_sym_LBRACE, - ACTIONS(2574), 1, + anon_sym_LT2, + ACTIONS(2898), 12, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(70), 1, - sym_block, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + [62603] = 4, + ACTIONS(2916), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [42571] = 23, - ACTIONS(2574), 1, + ACTIONS(2912), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2918), 12, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - ACTIONS(3085), 1, - anon_sym_RBRACE, - STATE(1078), 1, - sym_arguments, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + [62629] = 4, + ACTIONS(2924), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(2920), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2926), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [42660] = 18, - ACTIONS(2574), 1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + [62655] = 3, + ACTIONS(2904), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2906), 14, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2582), 1, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3019), 1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_in, + [62679] = 3, + ACTIONS(3970), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3551), 14, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [62703] = 13, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(3893), 1, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + ACTIONS(3897), 1, + anon_sym_LBRACE, + ACTIONS(3899), 1, + anon_sym_COLON, + ACTIONS(3901), 1, + anon_sym_AT, + ACTIONS(3972), 1, + anon_sym_LPAREN, + ACTIONS(3974), 1, + anon_sym_COLON_COLON, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2572), 14, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [42738] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(886), 1, + ACTIONS(2862), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [62747] = 3, + ACTIONS(3253), 1, anon_sym_COLON_COLON, - ACTIONS(2818), 1, - sym_metavariable, - ACTIONS(2927), 1, - anon_sym_default, - ACTIONS(3087), 1, - sym_identifier, - ACTIONS(3089), 1, - anon_sym_fn, - STATE(1694), 1, - sym_scoped_type_identifier, - STATE(2278), 1, - sym_generic_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2396), 1, - sym_function_modifiers, - STATE(2415), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, + ACTIONS(3551), 14, anon_sym_async, anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2812), 18, - 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_str, - anon_sym_char, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [42816] = 22, - ACTIONS(2574), 1, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [62771] = 3, + ACTIONS(2896), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2898), 14, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RBRACK, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3091), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_in, + [62795] = 3, + ACTIONS(3001), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2999), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [42902] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2983), 1, + anon_sym_GT, anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_for, + anon_sym_where, + [62819] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3057), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [42988] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3093), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + anon_sym_where, + [62840] = 3, + ACTIONS(3976), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3071), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43074] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3095), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [62863] = 3, + ACTIONS(3978), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3007), 13, anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [62886] = 4, + ACTIONS(2910), 1, + anon_sym_COLON, + ACTIONS(3555), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2908), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43160] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [62911] = 3, + ACTIONS(3980), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3039), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2766), 1, + anon_sym_where, + [62934] = 3, + ACTIONS(3982), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3013), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(3097), 1, + anon_sym_GT, anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, + anon_sym_as, + anon_sym_where, + [62957] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3049), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43246] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3099), 1, - anon_sym_RBRACK, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + anon_sym_where, + [62978] = 3, + ACTIONS(2916), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43332] = 22, - ACTIONS(2574), 1, + ACTIONS(2918), 13, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2576), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RBRACK, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3101), 1, - anon_sym_EQ_GT, - STATE(1078), 1, - sym_arguments, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + [63001] = 4, + ACTIONS(2934), 1, + anon_sym_COLON, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2932), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43418] = 4, - ACTIONS(3039), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63026] = 3, + ACTIONS(3986), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(3083), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - 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(2384), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [43468] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [63049] = 3, + ACTIONS(3988), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3077), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2622), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [43548] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2884), 1, + anon_sym_where, + [63072] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2979), 14, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + anon_sym_where, + [63093] = 4, + ACTIONS(2910), 1, + anon_sym_COLON, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2908), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [43634] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2766), 1, + anon_sym_where, + [63118] = 14, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(3990), 1, + anon_sym_COLON, + ACTIONS(3992), 1, anon_sym_EQ, - ACTIONS(3103), 1, + ACTIONS(3994), 1, + anon_sym_GT, + ACTIONS(3996), 1, anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, + STATE(2514), 1, + sym_trait_bounds, + STATE(2517), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2862), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43720] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + [63163] = 3, + ACTIONS(3998), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2987), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43806] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3107), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63186] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3103), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43892] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3109), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + anon_sym_where, + [63207] = 4, + ACTIONS(4002), 1, + anon_sym_pat, + STATE(117), 1, + sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(4000), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [63232] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2961), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [43978] = 4, - ACTIONS(3111), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_as, + anon_sym_where, + [63253] = 4, + ACTIONS(2910), 1, + anon_sym_COLON, + ACTIONS(4004), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(461), 15, + ACTIONS(2908), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - 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(459), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - 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, - [44028] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3113), 1, - anon_sym_RBRACK, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [63278] = 4, + ACTIONS(2938), 1, + anon_sym_COLON, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2936), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [44114] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3115), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63303] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3265), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [44200] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63323] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2684), 13, + ACTIONS(1150), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_EQ, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2682), 19, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [44260] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_where, + [63343] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3213), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3117), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63363] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2936), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [44346] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3119), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63383] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3285), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [44432] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3121), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63403] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3165), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63423] = 6, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3899), 1, + anon_sym_COLON, + ACTIONS(4006), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [44518] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2788), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + ACTIONS(3893), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [63451] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3333), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2786), 13, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [44598] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [63471] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2780), 13, + ACTIONS(3241), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_EQ, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2778), 19, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [44658] = 6, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [63491] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(313), 14, + ACTIONS(3305), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_EQ, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(311), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [44712] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2760), 1, + anon_sym_where, + [63511] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3241), 13, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(3005), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63531] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3309), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3027), 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, - [44798] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3123), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63551] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3345), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [44884] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3125), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63571] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3161), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [44970] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3127), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63591] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3137), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [45056] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3129), 1, - anon_sym_RBRACK, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63611] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3173), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [45142] = 4, - ACTIONS(2472), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63631] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 15, + ACTIONS(1146), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - 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(2462), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [45192] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_where, + [63651] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2908), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3131), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63671] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(828), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [45278] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(696), 1, - anon_sym_extern, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2818), 1, - sym_metavariable, - ACTIONS(2927), 1, - anon_sym_default, - ACTIONS(3133), 1, - sym_identifier, - ACTIONS(3135), 1, - anon_sym_fn, - STATE(1692), 1, - sym_scoped_type_identifier, - STATE(2278), 1, - sym_generic_type, - STATE(2289), 1, - sym_bracketed_type, - STATE(2290), 1, - sym_generic_type_with_turbofish, - STATE(2315), 1, - sym_function_modifiers, - STATE(2415), 1, - sym_scoped_identifier, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63691] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1491), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(676), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2812), 18, - 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_str, - anon_sym_char, - anon_sym_union, - [45356] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3269), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(2985), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63711] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3349), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [45442] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3137), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63731] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3277), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [45528] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3139), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63751] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2932), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RBRACK, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63771] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(3169), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [45614] = 10, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_COMMA, + anon_sym_as, + anon_sym_where, + [63791] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 10, + ACTIONS(3341), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_PIPE, anon_sym_EQ, - 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(2572), 19, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [45676] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [63811] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2582), 13, + ACTIONS(832), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_EQ, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2572), 19, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [45736] = 19, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2668), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [63831] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3193), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2666), 13, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [45816] = 15, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_where, + [63851] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(3273), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2582), 3, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2572), 19, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - 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, - [45888] = 12, - ACTIONS(2574), 1, + anon_sym_where, + [63871] = 5, + ACTIONS(2924), 1, + anon_sym_COLON, + ACTIONS(4008), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2920), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3011), 2, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2926), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2572), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [45954] = 17, - ACTIONS(2574), 1, + anon_sym_COLON_COLON, + [63896] = 5, + ACTIONS(2896), 1, + anon_sym_COLON, + ACTIONS(4011), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2582), 1, - anon_sym_EQ, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3019), 1, - anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2892), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2898), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2572), 15, + anon_sym_COLON_COLON, + [63921] = 5, + ACTIONS(2916), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2912), 3, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [46030] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2574), 1, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4014), 3, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2918), 5, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [63946] = 5, + ACTIONS(2924), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2920), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, + anon_sym_LT2, + ACTIONS(4008), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2926), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(277), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [46110] = 9, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON_COLON, + [63971] = 5, + ACTIONS(2904), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2822), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2820), 19, + ACTIONS(2900), 3, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [46170] = 22, - ACTIONS(2574), 1, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4017), 3, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2906), 5, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3141), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [63996] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(760), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_RBRACK, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_in, + [64015] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(4017), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2900), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT2, + ACTIONS(2906), 6, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [46256] = 22, - ACTIONS(2574), 1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [64038] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4011), 2, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + anon_sym_RBRACK, + ACTIONS(2892), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2898), 6, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3143), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON_COLON, + [64061] = 10, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4020), 1, + anon_sym_LPAREN, + ACTIONS(4022), 1, + anon_sym_LBRACE, + ACTIONS(4024), 1, + anon_sym_BANG, + ACTIONS(4026), 1, + anon_sym_AT, + ACTIONS(4030), 1, + anon_sym_COLON_COLON, + STATE(1689), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4028), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3893), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [64096] = 5, + ACTIONS(2896), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2892), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_LT2, + ACTIONS(4011), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2898), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [46342] = 14, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON_COLON, + [64121] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(4014), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2912), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3011), 2, + anon_sym_LT2, + ACTIONS(2918), 6, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2572), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [46412] = 13, - ACTIONS(2574), 1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [64144] = 5, + ACTIONS(2916), 1, + anon_sym_COLON, + ACTIONS(4014), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, + ACTIONS(2912), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3011), 2, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2918), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2572), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [46480] = 11, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - STATE(1078), 1, - sym_arguments, + anon_sym_COLON_COLON, + [64169] = 5, + ACTIONS(4034), 1, + anon_sym_COLON, + ACTIONS(4038), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3011), 2, + ACTIONS(4036), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2582), 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(2572), 19, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [46544] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(4032), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3145), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_COMMA, + anon_sym_in, + [64194] = 5, + ACTIONS(2904), 1, + anon_sym_COLON, + ACTIONS(4017), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2900), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2906), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [46630] = 19, - ACTIONS(2574), 1, + anon_sym_COLON_COLON, + [64219] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4008), 2, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2614), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_DOT_DOT, - ACTIONS(3015), 1, - anon_sym_AMP_AMP, - ACTIONS(3017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3019), 1, + anon_sym_RBRACK, + ACTIONS(2920), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2926), 6, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3021), 1, - anon_sym_CARET, - STATE(1078), 1, - sym_arguments, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [64242] = 6, + ACTIONS(4040), 1, + anon_sym_COLON, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3007), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3011), 2, + ACTIONS(4036), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3003), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2612), 13, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64268] = 5, + ACTIONS(1246), 1, + aux_sym_string_literal_token1, + ACTIONS(4048), 1, + sym_crate, + STATE(1896), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4046), 8, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [46710] = 4, - ACTIONS(2464), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64292] = 9, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4050), 1, + anon_sym_for, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 15, + ACTIONS(2862), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - 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(2462), 23, + anon_sym_where, + [64324] = 9, + ACTIONS(3885), 1, anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4052), 1, + anon_sym_for, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2862), 4, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - 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, - [46760] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3147), 1, + anon_sym_PLUS, + anon_sym_where, + [64356] = 5, + ACTIONS(1246), 1, + aux_sym_string_literal_token1, + ACTIONS(4054), 1, + sym_crate, + STATE(1896), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4046), 8, anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64380] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [46846] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(4056), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3149), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_in, + [64398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [46932] = 22, - ACTIONS(2574), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, + ACTIONS(3893), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, anon_sym_EQ, - ACTIONS(3151), 1, + anon_sym_COMMA, + anon_sym_in, + [64418] = 9, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4058), 1, + anon_sym_for, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2862), 4, anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64450] = 5, + ACTIONS(1246), 1, + aux_sym_string_literal_token1, + ACTIONS(4060), 1, + sym_crate, + STATE(1896), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4046), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64474] = 9, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4062), 1, + anon_sym_for, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2862), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, + anon_sym_where, + [64506] = 6, + ACTIONS(4040), 1, + anon_sym_COLON, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4064), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4036), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [47018] = 22, - ACTIONS(2574), 1, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64532] = 9, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_AMP, - ACTIONS(2590), 1, - anon_sym_DOT_DOT, - ACTIONS(2592), 1, - anon_sym_AMP_AMP, - ACTIONS(2594), 1, - anon_sym_PIPE, - ACTIONS(2596), 1, - anon_sym_CARET, - ACTIONS(2602), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2762), 1, - anon_sym_QMARK, - ACTIONS(2764), 1, - anon_sym_as, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_arguments, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4066), 1, + anon_sym_for, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2862), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2580), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2598), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2768), 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, - [47104] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3155), 1, - sym_identifier, - ACTIONS(3157), 1, + anon_sym_where, + [64564] = 9, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4020), 1, + anon_sym_LPAREN, + ACTIONS(4022), 1, anon_sym_LBRACE, - ACTIONS(3159), 1, - anon_sym_RBRACE, - ACTIONS(3161), 1, - anon_sym_STAR, - ACTIONS(3165), 1, - anon_sym_COMMA, - ACTIONS(3167), 1, + ACTIONS(4026), 1, + anon_sym_AT, + ACTIONS(4030), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, - sym_metavariable, - STATE(1629), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + STATE(1689), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, - sym_self, - sym_super, + ACTIONS(4028), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3893), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [64596] = 5, + ACTIONS(1246), 1, + aux_sym_string_literal_token1, + ACTIONS(4068), 1, sym_crate, - STATE(1862), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3163), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47175] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3155), 1, - sym_identifier, - ACTIONS(3157), 1, - anon_sym_LBRACE, - ACTIONS(3161), 1, - anon_sym_STAR, - ACTIONS(3167), 1, - anon_sym_COLON_COLON, - ACTIONS(3171), 1, - sym_metavariable, - ACTIONS(3173), 1, - anon_sym_RBRACE, - STATE(1629), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + STATE(1896), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, - sym_self, - sym_super, - sym_crate, - STATE(2188), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3163), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47243] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3155), 1, - sym_identifier, - ACTIONS(3157), 1, + ACTIONS(4046), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3161), 1, - anon_sym_STAR, - ACTIONS(3167), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64620] = 9, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, - sym_metavariable, - ACTIONS(3175), 1, - anon_sym_RBRACE, - STATE(1629), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4070), 1, + anon_sym_for, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, - sym_self, - sym_super, - sym_crate, - STATE(2188), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3163), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47311] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3155), 1, - sym_identifier, - ACTIONS(3157), 1, + ACTIONS(2862), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3161), 1, - anon_sym_STAR, - ACTIONS(3167), 1, + anon_sym_PLUS, + anon_sym_where, + [64652] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4072), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_in, + [64670] = 9, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, - sym_metavariable, - STATE(1629), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4074), 1, + anon_sym_for, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, - sym_self, - sym_super, - sym_crate, - STATE(2354), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3163), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47376] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3155), 1, - sym_identifier, - ACTIONS(3157), 1, + ACTIONS(2862), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3161), 1, - anon_sym_STAR, - ACTIONS(3167), 1, + anon_sym_PLUS, + anon_sym_where, + [64702] = 9, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, - sym_metavariable, - STATE(1629), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4076), 1, + anon_sym_for, + STATE(1689), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, - sym_self, - sym_super, - sym_crate, - STATE(2388), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3163), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47441] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3155), 1, - sym_identifier, - ACTIONS(3157), 1, + ACTIONS(2862), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3161), 1, - anon_sym_STAR, - ACTIONS(3167), 1, - anon_sym_COLON_COLON, - ACTIONS(3171), 1, - sym_metavariable, - STATE(1629), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + anon_sym_PLUS, + anon_sym_where, + [64734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, - sym_self, - sym_super, - sym_crate, - STATE(2188), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3163), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47506] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3155), 1, - sym_identifier, - ACTIONS(3157), 1, + ACTIONS(2892), 2, anon_sym_LBRACE, - ACTIONS(3161), 1, - anon_sym_STAR, - ACTIONS(3167), 1, + anon_sym_LT2, + ACTIONS(2898), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(3171), 1, - sym_metavariable, - STATE(1629), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + anon_sym_if, + [64753] = 10, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4080), 1, + anon_sym_RBRACE, + ACTIONS(4082), 1, + anon_sym_COMMA, + ACTIONS(4084), 1, + sym_crate, + STATE(2589), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, - sym_self, - sym_super, - sym_crate, - STATE(2270), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3163), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47571] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3155), 1, + STATE(1898), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [64786] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1046), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_in, + [64803] = 8, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4086), 1, sym_identifier, - ACTIONS(3157), 1, - anon_sym_LBRACE, - ACTIONS(3161), 1, - anon_sym_STAR, - ACTIONS(3167), 1, - anon_sym_COLON_COLON, - ACTIONS(3171), 1, - sym_metavariable, - STATE(1629), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(4088), 1, + anon_sym_RBRACE, + ACTIONS(4090), 1, + anon_sym_DOT_DOT, + ACTIONS(4092), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 3, - sym_self, - sym_super, - sym_crate, - STATE(2443), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3163), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47636] = 3, + STATE(2209), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2351), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64832] = 7, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4094), 1, + anon_sym_LBRACE, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3179), 3, - anon_sym_LT, + ACTIONS(2908), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [64859] = 5, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4064), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(3177), 28, - 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_str, - anon_sym_char, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, - anon_sym_union, anon_sym_unsafe, anon_sym_extern, + [64882] = 8, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4086), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [47676] = 3, + ACTIONS(4090), 1, + anon_sym_DOT_DOT, + ACTIONS(4096), 1, + anon_sym_RBRACE, + ACTIONS(4098), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3183), 3, - anon_sym_LT, + STATE(2209), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2363), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64911] = 5, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4100), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(3181), 28, - 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_str, - anon_sym_char, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, - anon_sym_union, anon_sym_unsafe, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [47716] = 3, + [64934] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3921), 1, + anon_sym_trait, + ACTIONS(4102), 1, + anon_sym_impl, + STATE(298), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(3185), 28, - 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_str, - anon_sym_char, + ACTIONS(2882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, - anon_sym_union, anon_sym_unsafe, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [47756] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, + [64959] = 4, + ACTIONS(4106), 1, + anon_sym_COLON, + ACTIONS(4108), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2255), 1, - sym_meta_item, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47811] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(4104), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [64980] = 4, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(4114), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_meta_item, - STATE(2431), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47866] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(4110), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [65001] = 4, + ACTIONS(3970), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - STATE(2433), 1, - sym_meta_item, + ACTIONS(4112), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47921] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(4110), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [65022] = 4, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(4116), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2363), 1, - sym_meta_item, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47976] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2293), 1, - sym_meta_item, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(4110), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [65043] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [48031] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(1066), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_in, + [65060] = 9, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3889), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_meta_item, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4118), 1, + anon_sym_EQ, + STATE(1704), 1, + sym_parameters, + STATE(2119), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [48086] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2268), 1, - sym_meta_item, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(2862), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [65091] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2935), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [48141] = 10, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, + ACTIONS(2900), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2906), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(3189), 1, + anon_sym_if, + [65110] = 10, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, sym_identifier, - ACTIONS(3195), 1, - sym_metavariable, - STATE(2065), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3193), 3, - sym_self, - sym_super, + ACTIONS(4084), 1, sym_crate, - ACTIONS(3191), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [48193] = 10, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(948), 1, - anon_sym_COLON_COLON, - ACTIONS(3197), 1, - sym_identifier, - ACTIONS(3203), 1, - sym_metavariable, - STATE(2193), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2431), 1, - sym_generic_type_with_turbofish, + ACTIONS(4120), 1, + anon_sym_RBRACE, + ACTIONS(4122), 1, + anon_sym_COMMA, + STATE(2447), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3199), 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_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [48245] = 3, - ACTIONS(2211), 1, - anon_sym_EQ, + STATE(1901), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [65143] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2213), 20, + ACTIONS(1056), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_if, - anon_sym_unsafe, - anon_sym_COMMA, - anon_sym_extern, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48275] = 3, - ACTIONS(2159), 1, anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_in, + [65160] = 5, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2161), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, - anon_sym_if, anon_sym_unsafe, - anon_sym_COMMA, anon_sym_extern, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48305] = 9, - ACTIONS(2364), 1, - anon_sym_COLON, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + [65183] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 12, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2912), 2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [48345] = 10, - ACTIONS(3211), 1, anon_sym_LT2, - ACTIONS(3215), 1, + ACTIONS(2918), 8, anon_sym_LPAREN, - ACTIONS(3217), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, - anon_sym_COLON_COLON, - ACTIONS(3225), 1, - anon_sym_AT, - STATE(1285), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3219), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3223), 2, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_COLON_COLON, anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [48387] = 4, + [65202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2406), 2, + ACTIONS(2920), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2410), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2412), 14, - anon_sym_SEMI, + ACTIONS(2926), 8, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, - anon_sym_in, anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48416] = 4, - ACTIONS(2408), 1, + anon_sym_COLON_COLON, + anon_sym_if, + [65221] = 4, + ACTIONS(4108), 1, + anon_sym_COLON_COLON, + ACTIONS(4126), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2412), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2406), 15, + ACTIONS(4124), 8, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [48445] = 4, - ACTIONS(2432), 1, + anon_sym_in, + [65242] = 4, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, + ACTIONS(4130), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2436), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2430), 15, + ACTIONS(4128), 8, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [48474] = 4, - ACTIONS(2400), 1, + anon_sym_in, + [65263] = 4, + ACTIONS(3970), 1, + anon_sym_COLON_COLON, + ACTIONS(4130), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2404), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2398), 15, + ACTIONS(4128), 8, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [48503] = 4, + anon_sym_in, + [65284] = 10, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + ACTIONS(4134), 1, + anon_sym_RBRACE, + ACTIONS(4136), 1, + anon_sym_COMMA, + STATE(2423), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2430), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2434), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2436), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(1914), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [65317] = 10, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + ACTIONS(4138), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + ACTIONS(4140), 1, anon_sym_COMMA, + STATE(2474), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1879), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [65350] = 4, + ACTIONS(4116), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48532] = 8, - ACTIONS(2374), 1, + ACTIONS(4130), 1, anon_sym_COLON, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2372), 12, + ACTIONS(4128), 8, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [48569] = 4, + anon_sym_in, + [65371] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2414), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2418), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2420), 14, + ACTIONS(4142), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48598] = 4, + [65387] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4146), 1, + anon_sym_GT, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2402), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2404), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48627] = 4, - ACTIONS(2416), 1, - anon_sym_COLON, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65417] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2420), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2414), 15, + ACTIONS(4152), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + [65433] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + ACTIONS(4154), 1, anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [48656] = 8, - ACTIONS(2378), 1, - anon_sym_COLON, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65463] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + ACTIONS(4156), 1, + anon_sym_GT, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65493] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4158), 1, + anon_sym_RBRACE, + STATE(2703), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1888), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [65523] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2376), 12, + ACTIONS(4160), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [48693] = 6, - ACTIONS(3205), 1, + anon_sym_in, + [65539] = 7, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3891), 1, anon_sym_LT2, - STATE(1276), 1, + ACTIONS(4162), 1, + anon_sym_for, + STATE(1678), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1692), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 13, + ACTIONS(2908), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [48725] = 17, - ACTIONS(3229), 1, + [65565] = 5, + ACTIONS(4164), 1, + anon_sym_SEMI, + ACTIONS(4166), 1, + anon_sym_LBRACE, + STATE(1073), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3231), 1, - anon_sym_enum, - ACTIONS(3233), 1, + anon_sym_default, anon_sym_fn, - ACTIONS(3235), 1, - anon_sym_mod, - ACTIONS(3237), 1, - anon_sym_static, - ACTIONS(3239), 1, - anon_sym_struct, - ACTIONS(3241), 1, - anon_sym_trait, - ACTIONS(3243), 1, - anon_sym_type, - ACTIONS(3245), 1, - anon_sym_union, - ACTIONS(3247), 1, anon_sym_unsafe, - ACTIONS(3249), 1, - anon_sym_use, - ACTIONS(3251), 1, anon_sym_extern, - STATE(1458), 1, - sym_extern_modifier, - STATE(1491), 1, - aux_sym_function_modifiers_repeat1, - STATE(2469), 1, - sym_function_modifiers, + [65587] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4168), 1, + anon_sym_move, + STATE(263), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3227), 2, + ACTIONS(2882), 6, anon_sym_async, + anon_sym_const, anon_sym_default, - [48779] = 6, - ACTIONS(3205), 1, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65609] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4170), 1, + anon_sym_RBRACE, + STATE(2703), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1888), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [65639] = 7, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3891), 1, anon_sym_LT2, - STATE(1276), 1, + ACTIONS(4172), 1, + anon_sym_for, + STATE(1678), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1692), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2380), 13, + ACTIONS(2908), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65665] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4174), 1, + sym_identifier, + STATE(210), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4176), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65687] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4178), 9, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [48811] = 6, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + anon_sym_in, + [65703] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 13, + ACTIONS(4180), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [48843] = 17, - ACTIONS(3253), 1, - anon_sym_const, - ACTIONS(3255), 1, - anon_sym_enum, - ACTIONS(3257), 1, - anon_sym_fn, - ACTIONS(3259), 1, - anon_sym_mod, - ACTIONS(3261), 1, - anon_sym_static, - ACTIONS(3263), 1, - anon_sym_struct, - ACTIONS(3265), 1, - anon_sym_trait, - ACTIONS(3267), 1, - anon_sym_type, - ACTIONS(3269), 1, - anon_sym_union, - ACTIONS(3271), 1, - anon_sym_unsafe, - ACTIONS(3273), 1, - anon_sym_use, - ACTIONS(3275), 1, - anon_sym_extern, - STATE(1428), 1, - sym_extern_modifier, - STATE(1491), 1, - aux_sym_function_modifiers_repeat1, - STATE(2412), 1, - sym_function_modifiers, + anon_sym_in, + [65719] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + ACTIONS(4182), 1, + anon_sym_RBRACE, + STATE(2731), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3227), 2, - anon_sym_async, - anon_sym_default, - [48897] = 2, + STATE(1907), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [65749] = 7, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4086), 1, + sym_identifier, + ACTIONS(4090), 1, + anon_sym_DOT_DOT, + ACTIONS(4184), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2209), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2759), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65775] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 16, + ACTIONS(4186), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_in, + [65791] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4188), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PIPE, - [48920] = 3, - ACTIONS(3277), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [65807] = 7, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3895), 1, anon_sym_LPAREN, + ACTIONS(3899), 1, + anon_sym_COLON, + ACTIONS(4190), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3893), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [65833] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, sym_identifier, - [48945] = 3, - ACTIONS(2500), 1, - anon_sym_COLON, + ACTIONS(4192), 1, + anon_sym_RBRACE, + STATE(2731), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1907), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [65863] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2498), 14, + ACTIONS(4194), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [48969] = 3, - ACTIONS(2490), 1, - anon_sym_COLON, + anon_sym_in, + [65879] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2488), 14, + ACTIONS(4196), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [48993] = 13, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3217), 1, - anon_sym_LBRACE, - ACTIONS(3225), 1, - anon_sym_AT, - ACTIONS(3279), 1, - anon_sym_LPAREN, - ACTIONS(3281), 1, - anon_sym_RBRACK, - ACTIONS(3284), 1, - anon_sym_COLON_COLON, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + anon_sym_in, + [65895] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4198), 1, + anon_sym_RBRACE, + STATE(2703), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3213), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49037] = 3, - ACTIONS(2524), 1, - anon_sym_COLON, + STATE(1888), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [65925] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 14, + ACTIONS(4200), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [49061] = 13, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_LBRACE, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3225), 1, - anon_sym_AT, - ACTIONS(3286), 1, - anon_sym_LPAREN, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + anon_sym_in, + [65941] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2360), 3, + ACTIONS(4128), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [49105] = 2, + anon_sym_in, + [65957] = 10, + ACTIONS(4202), 1, + anon_sym_SEMI, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + STATE(1028), 1, + sym_field_declaration_list, + STATE(1949), 1, + sym_type_parameters, + STATE(2348), 1, + sym_ordered_field_declaration_list, + STATE(2785), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + [65989] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, sym_identifier, - [49127] = 2, + ACTIONS(4212), 1, + anon_sym_RBRACE, + STATE(2731), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3041), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + STATE(1907), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [66019] = 7, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4086), 1, sym_identifier, - [49149] = 6, - ACTIONS(3215), 1, + ACTIONS(4090), 1, + anon_sym_DOT_DOT, + ACTIONS(4214), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2209), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2759), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66045] = 10, + ACTIONS(4204), 1, anon_sym_LPAREN, - ACTIONS(3290), 1, - anon_sym_COLON_COLON, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4216), 1, + anon_sym_SEMI, + STATE(954), 1, + sym_field_declaration_list, + STATE(1927), 1, + sym_type_parameters, + STATE(2468), 1, + sym_ordered_field_declaration_list, + STATE(2698), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3219), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 9, + [66077] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4218), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - anon_sym_PIPE, - [49179] = 3, - ACTIONS(2866), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2993), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [49203] = 3, - ACTIONS(2486), 1, - anon_sym_COLON, + [66093] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2484), 14, + ACTIONS(4110), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [49227] = 3, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + anon_sym_in, + [66109] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + ACTIONS(4220), 1, + anon_sym_RBRACE, + STATE(2731), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [49251] = 3, + STATE(1907), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [66139] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2410), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2412), 13, + ACTIONS(4222), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_in, - anon_sym_PIPE, - [49275] = 3, - ACTIONS(2562), 1, - anon_sym_COLON, + [66155] = 10, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4224), 1, + anon_sym_SEMI, + ACTIONS(4226), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym_field_declaration_list, + STATE(1928), 1, + sym_type_parameters, + STATE(2552), 1, + sym_ordered_field_declaration_list, + STATE(2647), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66187] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2560), 14, + ACTIONS(4228), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [49299] = 3, + anon_sym_in, + [66203] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2434), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2436), 13, + ACTIONS(4230), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_in, - anon_sym_PIPE, - [49323] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3071), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + [66219] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, sym_identifier, - [49345] = 14, - ACTIONS(2360), 1, - anon_sym_PLUS, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_LBRACE, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3225), 1, - anon_sym_AT, - ACTIONS(3294), 1, - anon_sym_LPAREN, - ACTIONS(3296), 1, - anon_sym_COLON_COLON, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + ACTIONS(4232), 1, + anon_sym_GT, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3281), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49391] = 2, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [66249] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 15, + ACTIONS(1088), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + [66265] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + ACTIONS(4234), 1, anon_sym_GT, - sym_mutable_specifier, - anon_sym_PIPE, - sym_self, - [49413] = 3, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2418), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2420), 13, - anon_sym_SEMI, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [66295] = 7, + ACTIONS(3885), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [49437] = 4, - ACTIONS(2396), 1, - anon_sym_COLON, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4236), 1, + anon_sym_for, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 12, + ACTIONS(2908), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_as, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49462] = 3, - ACTIONS(3300), 1, - anon_sym_DASH_GT, + [66321] = 7, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4238), 1, + anon_sym_for, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2554), 13, + ACTIONS(2908), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, + [66347] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4240), 1, + anon_sym_RBRACE, + STATE(2703), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1888), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [66377] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + ACTIONS(4242), 1, anon_sym_GT, - anon_sym_PIPE, - [49485] = 2, + STATE(2175), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [66407] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + ACTIONS(4244), 1, + anon_sym_GT, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [66437] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 14, + ACTIONS(4246), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [49506] = 2, + anon_sym_in, + [66453] = 7, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4248), 1, + anon_sym_for, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 14, + ACTIONS(2908), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [49527] = 4, - ACTIONS(3304), 1, - anon_sym_pat, - STATE(520), 1, - sym_fragment_specifier, + [66479] = 5, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4250), 1, + anon_sym_SEMI, + STATE(1020), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3302), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [49552] = 2, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66501] = 7, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4252), 1, + anon_sym_for, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 14, + ACTIONS(2908), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [49573] = 3, - ACTIONS(3306), 1, - anon_sym_DASH_GT, + [66527] = 7, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4254), 1, + anon_sym_for, + STATE(1678), 1, + sym_type_arguments, + STATE(1692), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2516), 13, + ACTIONS(2908), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49596] = 3, - ACTIONS(3308), 1, - anon_sym_DASH_GT, + [66553] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2542), 13, + ACTIONS(3893), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + [66569] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4256), 1, + anon_sym_RBRACE, + STATE(2703), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1888), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [66599] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + ACTIONS(4258), 1, anon_sym_GT, - anon_sym_PIPE, - [49619] = 3, - ACTIONS(2199), 1, - anon_sym_EQ, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [66629] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + ACTIONS(4260), 1, + anon_sym_RBRACE, + STATE(2731), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1907), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [66659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2201), 13, + ACTIONS(4262), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [49642] = 2, + [66675] = 5, + ACTIONS(4264), 1, + anon_sym_SEMI, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(469), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66697] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 14, + ACTIONS(4268), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [49663] = 3, - ACTIONS(3310), 1, - anon_sym_DASH_GT, + anon_sym_in, + [66713] = 7, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4086), 1, + sym_identifier, + ACTIONS(4090), 1, + anon_sym_DOT_DOT, + ACTIONS(4270), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2209), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2759), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66739] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + ACTIONS(4272), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49686] = 4, - ACTIONS(2396), 1, - anon_sym_COLON, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, + anon_sym_in, + [66755] = 10, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4226), 1, + anon_sym_LBRACE, + ACTIONS(4274), 1, + anon_sym_SEMI, + STATE(604), 1, + sym_field_declaration_list, + STATE(1920), 1, + sym_type_parameters, + STATE(2324), 1, + sym_ordered_field_declaration_list, + STATE(2761), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49711] = 5, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, + [66787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3314), 9, + ACTIONS(4276), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - anon_sym_PIPE, - [49738] = 3, - ACTIONS(3322), 1, - anon_sym_DASH_GT, + [66803] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 13, + ACTIONS(4278), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49761] = 4, - ACTIONS(2382), 1, - anon_sym_COLON, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, + anon_sym_in, + [66819] = 5, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4280), 1, + anon_sym_SEMI, + STATE(536), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2380), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49786] = 3, - ACTIONS(3324), 1, - anon_sym_DASH_GT, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66841] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2548), 13, + ACTIONS(4282), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49809] = 4, - ACTIONS(2396), 1, - anon_sym_COLON, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + anon_sym_in, + [66857] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 12, + ACTIONS(4284), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + [66873] = 9, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + ACTIONS(4286), 1, anon_sym_GT, - anon_sym_PIPE, - [49834] = 3, - ACTIONS(3326), 1, - anon_sym_DASH_GT, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [66903] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 13, + ACTIONS(4288), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49857] = 4, - ACTIONS(2428), 1, - anon_sym_COLON, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, + anon_sym_in, + [66919] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + ACTIONS(4290), 1, + anon_sym_RBRACE, + STATE(2731), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + STATE(1907), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [66949] = 7, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4086), 1, + sym_identifier, + ACTIONS(4090), 1, + anon_sym_DOT_DOT, + ACTIONS(4292), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49882] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2494), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [49903] = 14, - ACTIONS(3205), 1, + STATE(2209), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2759), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66975] = 7, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(3328), 1, - anon_sym_COLON, - ACTIONS(3330), 1, - anon_sym_EQ, - ACTIONS(3332), 1, - anon_sym_COMMA, - ACTIONS(3334), 1, - anon_sym_GT, - STATE(1285), 1, + ACTIONS(4294), 1, + anon_sym_for, + STATE(1678), 1, sym_type_arguments, - STATE(1307), 1, + STATE(1692), 1, sym_parameters, - STATE(1893), 1, - aux_sym_type_parameters_repeat1, - STATE(1894), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 2, + ACTIONS(2908), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_as, - [49948] = 2, + anon_sym_where, + [67001] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 13, + ACTIONS(4296), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49968] = 2, + anon_sym_in, + [67017] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(413), 13, + ACTIONS(4298), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - [49988] = 3, - ACTIONS(3338), 1, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [67033] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3336), 12, + ACTIONS(4300), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50010] = 2, + [67049] = 9, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4302), 1, + anon_sym_RBRACE, + STATE(2703), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1888), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [67079] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 13, + ACTIONS(4304), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50030] = 2, + anon_sym_in, + [67095] = 8, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_RBRACE, + ACTIONS(4310), 1, + anon_sym_COMMA, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2398), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [67122] = 4, + ACTIONS(4318), 1, + anon_sym_PLUS, + STATE(1895), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 13, + ACTIONS(4316), 6, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, anon_sym_GT, - anon_sym_PIPE, - [50050] = 2, + anon_sym_COMMA, + anon_sym_where, + [67141] = 5, + ACTIONS(4323), 1, + anon_sym_fn, + ACTIONS(4325), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 13, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(1875), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(4320), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [67162] = 4, + ACTIONS(2977), 1, + anon_sym_COLON_COLON, + ACTIONS(4328), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67181] = 9, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(4330), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4332), 1, + anon_sym_LT, + STATE(620), 1, + sym_declaration_list, + STATE(1973), 1, + sym_type_parameters, + STATE(2135), 1, + sym_trait_bounds, + STATE(2596), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67210] = 4, + ACTIONS(4004), 1, + anon_sym_COLON_COLON, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67229] = 8, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + STATE(2461), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1141), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [67256] = 8, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4334), 1, + anon_sym_RBRACE, + ACTIONS(4336), 1, anon_sym_COMMA, - anon_sym_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2403), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [67283] = 6, + ACTIONS(4020), 1, + anon_sym_LPAREN, + ACTIONS(4024), 1, + anon_sym_BANG, + ACTIONS(4338), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4028), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3893), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - [50070] = 2, + anon_sym_if, + [67306] = 8, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4340), 1, + sym_identifier, + ACTIONS(4342), 1, + sym_metavariable, + STATE(2011), 1, + sym_lifetime, + STATE(2231), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + STATE(2316), 2, + sym_const_parameter, + sym_optional_type_parameter, + [67333] = 7, + ACTIONS(2908), 1, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4032), 1, anon_sym_PIPE, - [50090] = 2, + ACTIONS(4034), 1, + anon_sym_COLON, + ACTIONS(4044), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 13, - anon_sym_SEMI, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4344), 2, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50110] = 2, + [67358] = 8, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + STATE(2703), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1888), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [67385] = 4, + ACTIONS(4108), 1, + anon_sym_COLON_COLON, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67404] = 4, + ACTIONS(3581), 1, + anon_sym_COLON_COLON, + ACTIONS(4349), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67423] = 4, + ACTIONS(3945), 1, + anon_sym_trait, + ACTIONS(4351), 1, + anon_sym_impl, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67442] = 8, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + STATE(2643), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1141), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [67469] = 8, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4340), 1, + sym_identifier, + ACTIONS(4342), 1, + sym_metavariable, + STATE(2076), 1, + sym_lifetime, + STATE(2231), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2316), 2, + sym_const_parameter, + sym_optional_type_parameter, + [67496] = 4, + ACTIONS(1246), 1, + aux_sym_string_literal_token1, + STATE(1896), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4046), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67515] = 4, + ACTIONS(4355), 1, + anon_sym_PLUS, + STATE(1874), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2426), 13, + ACTIONS(4353), 6, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, anon_sym_GT, - anon_sym_PIPE, - [50130] = 2, + anon_sym_COMMA, + anon_sym_where, + [67534] = 4, + ACTIONS(4357), 1, + anon_sym_PLUS, + STATE(1874), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 13, + ACTIONS(4353), 6, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, anon_sym_GT, - anon_sym_PIPE, - [50150] = 2, + anon_sym_COMMA, + anon_sym_where, + [67553] = 4, + ACTIONS(4318), 1, + anon_sym_PLUS, + STATE(1874), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 13, + ACTIONS(4353), 6, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, anon_sym_GT, - anon_sym_PIPE, - [50170] = 4, - ACTIONS(3219), 1, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [67572] = 6, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(4359), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3893), 3, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, anon_sym_PIPE, - [50194] = 3, + anon_sym_COMMA, + [67595] = 4, + ACTIONS(4363), 1, + anon_sym_PLUS, + STATE(1895), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2402), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2404), 11, + ACTIONS(4361), 6, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [50216] = 2, + anon_sym_where, + [67614] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 13, + ACTIONS(4366), 8, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67629] = 9, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50236] = 2, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4332), 1, + anon_sym_LT, + STATE(962), 1, + sym_declaration_list, + STATE(2018), 1, + sym_type_parameters, + STATE(2172), 1, + sym_trait_bounds, + STATE(2701), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(427), 13, - anon_sym_SEMI, - anon_sym_RPAREN, + [67658] = 8, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + STATE(2389), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1141), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [67685] = 9, + ACTIONS(4166), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50256] = 2, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4332), 1, + anon_sym_LT, + STATE(1027), 1, + sym_declaration_list, + STATE(2006), 1, + sym_type_parameters, + STATE(2211), 1, + sym_trait_bounds, + STATE(2792), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 13, - anon_sym_SEMI, - anon_sym_RPAREN, + [67714] = 8, + ACTIONS(4368), 1, + anon_sym_LPAREN, + ACTIONS(4373), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50276] = 3, - ACTIONS(3342), 1, - anon_sym_EQ, + ACTIONS(4376), 1, + anon_sym_LBRACK, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2837), 1, + sym_token_tree_pattern, + STATE(2875), 1, + sym_macro_rule, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3340), 12, - anon_sym_SEMI, + ACTIONS(4371), 2, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50298] = 2, + [67741] = 8, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_crate, + STATE(2528), 1, + sym_field_declaration, + STATE(3070), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50318] = 2, + STATE(1141), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [67768] = 8, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + STATE(2731), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + STATE(1907), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [67795] = 8, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4379), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4381), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50338] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 13, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(2409), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [67822] = 9, + ACTIONS(4166), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50358] = 2, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4332), 1, + anon_sym_LT, + STATE(1007), 1, + sym_declaration_list, + STATE(2041), 1, + sym_type_parameters, + STATE(2138), 1, + sym_trait_bounds, + STATE(2623), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 13, - anon_sym_SEMI, - anon_sym_RPAREN, + [67851] = 9, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(4330), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50378] = 2, + ACTIONS(4332), 1, + anon_sym_LT, + STATE(447), 1, + sym_declaration_list, + STATE(1996), 1, + sym_type_parameters, + STATE(2218), 1, + sym_trait_bounds, + STATE(2769), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + [67880] = 8, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4383), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4385), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50398] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50418] = 2, + STATE(2426), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [67907] = 8, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + STATE(2649), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50438] = 2, + STATE(1141), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [67934] = 5, + ACTIONS(4389), 1, + anon_sym_fn, + ACTIONS(4391), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + STATE(1875), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(4387), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [67955] = 6, + ACTIONS(4032), 1, anon_sym_PIPE, - [50458] = 2, + ACTIONS(4034), 1, + anon_sym_COLON, + ACTIONS(4064), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2854), 13, - anon_sym_SEMI, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2908), 3, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50478] = 2, + [67978] = 4, + ACTIONS(1422), 1, + anon_sym_LBRACE, + STATE(1836), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2380), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50498] = 2, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67997] = 8, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4150), 1, + sym_metavariable, + STATE(2184), 1, + sym_lifetime, + STATE(2430), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50518] = 2, + STATE(2737), 2, + sym_const_parameter, + sym_optional_type_parameter, + [68024] = 8, + ACTIONS(2619), 1, + anon_sym_SQUOTE, + ACTIONS(4148), 1, + anon_sym_const, + ACTIONS(4393), 1, + sym_identifier, + ACTIONS(4395), 1, + sym_metavariable, + STATE(2105), 1, + sym_lifetime, + STATE(2217), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(2340), 2, + sym_const_parameter, + sym_optional_type_parameter, + [68051] = 6, + ACTIONS(4100), 1, + anon_sym_COLON_COLON, + ACTIONS(4344), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50538] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 13, + ACTIONS(2908), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4032), 2, anon_sym_PIPE, - [50558] = 2, + anon_sym_COMMA, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [68074] = 8, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_crate, + ACTIONS(4132), 1, + sym_identifier, + STATE(2511), 1, + sym_enum_variant, + STATE(2977), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(467), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50578] = 4, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, + STATE(1141), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [68101] = 6, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4086), 1, + sym_identifier, + ACTIONS(4090), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 2, + STATE(2209), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2759), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68124] = 9, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4330), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3344), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50601] = 4, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + ACTIONS(4332), 1, + anon_sym_LT, + STATE(579), 1, + sym_declaration_list, + STATE(2060), 1, + sym_type_parameters, + STATE(2227), 1, + sym_trait_bounds, + STATE(2762), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3352), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3350), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50624] = 3, - ACTIONS(399), 1, - anon_sym_EQ, + [68153] = 3, + ACTIONS(2977), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(397), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, - anon_sym_PIPE, - [50645] = 5, - ACTIONS(2434), 1, - anon_sym_COLON, - ACTIONS(3354), 1, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68169] = 8, + ACTIONS(4397), 1, anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4401), 1, + anon_sym_RBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2678), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2430), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2436), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50670] = 4, - ACTIONS(3348), 1, + [68195] = 3, + ACTIONS(4004), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3352), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3350), 9, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68211] = 8, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4226), 1, + anon_sym_LBRACE, + ACTIONS(4405), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50693] = 3, - ACTIONS(391), 1, - anon_sym_EQ, + STATE(648), 1, + sym_field_declaration_list, + STATE(2587), 1, + sym_ordered_field_declaration_list, + STATE(2601), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(389), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, - anon_sym_PIPE, - [50714] = 5, - ACTIONS(2418), 1, - anon_sym_COLON, - ACTIONS(3357), 1, + [68237] = 8, + ACTIONS(4397), 1, anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4407), 1, + anon_sym_RPAREN, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2736), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2414), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2420), 5, - anon_sym_BANG, + [68263] = 8, + ACTIONS(4108), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50739] = 5, - ACTIONS(2402), 1, - anon_sym_COLON, - ACTIONS(3360), 1, + ACTIONS(4409), 1, anon_sym_LPAREN, + ACTIONS(4411), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4415), 1, + anon_sym_RBRACK, + ACTIONS(4417), 1, + anon_sym_EQ, + STATE(2961), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2404), 5, - anon_sym_BANG, + [68289] = 8, + ACTIONS(4114), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50764] = 5, - ACTIONS(2410), 1, - anon_sym_COLON, - ACTIONS(3363), 1, + ACTIONS(4409), 1, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2406), 5, - anon_sym_RPAREN, + ACTIONS(4411), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2412), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50789] = 4, - ACTIONS(3366), 1, - anon_sym_COLON_COLON, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_RBRACK, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(2964), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3352), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3350), 9, - anon_sym_SEMI, + [68315] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4423), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50812] = 4, + STATE(1921), 1, + aux_sym_macro_definition_repeat1, + STATE(2751), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3363), 2, + [68341] = 8, + ACTIONS(4397), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2406), 4, - anon_sym_SEMI, + ACTIONS(4399), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2412), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50835] = 4, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4425), 1, + anon_sym_RBRACE, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2684), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3360), 2, + [68367] = 8, + ACTIONS(4397), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2398), 4, - anon_sym_SEMI, + ACTIONS(4399), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2404), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50858] = 4, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4427), 1, + anon_sym_RPAREN, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2677), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3357), 2, + [68393] = 8, + ACTIONS(4204), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2414), 4, - anon_sym_SEMI, + ACTIONS(4206), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2420), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50881] = 5, - ACTIONS(2434), 1, - anon_sym_COLON, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4429), 1, + anon_sym_SEMI, + STATE(997), 1, + sym_field_declaration_list, + STATE(2546), 1, + sym_ordered_field_declaration_list, + STATE(2634), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2430), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3354), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2436), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50906] = 10, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3215), 1, + [68419] = 8, + ACTIONS(4204), 1, anon_sym_LPAREN, - ACTIONS(3217), 1, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4226), 1, anon_sym_LBRACE, - ACTIONS(3221), 1, - anon_sym_COLON_COLON, - ACTIONS(3225), 1, - anon_sym_AT, - ACTIONS(3368), 1, - anon_sym_BANG, - STATE(1285), 1, - sym_type_arguments, + ACTIONS(4431), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_field_declaration_list, + STATE(2353), 1, + sym_ordered_field_declaration_list, + STATE(2786), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [50941] = 3, - ACTIONS(395), 1, - anon_sym_EQ, + [68445] = 3, + ACTIONS(4433), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(393), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2882), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68461] = 8, + ACTIONS(3970), 1, + anon_sym_COLON_COLON, + ACTIONS(4409), 1, + anon_sym_LPAREN, + ACTIONS(4411), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, - anon_sym_PIPE, - [50962] = 5, - ACTIONS(2418), 1, - anon_sym_COLON, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(2964), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2414), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3357), 3, + [68487] = 8, + ACTIONS(4397), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2420), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50987] = 4, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4435), 1, + anon_sym_RBRACE, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2675), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3372), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3370), 9, - anon_sym_SEMI, + [68513] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4437), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51010] = 4, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2738), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3354), 2, + [68539] = 8, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + ACTIONS(4409), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2430), 4, - anon_sym_SEMI, + ACTIONS(4411), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2436), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51033] = 4, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_RBRACK, + ACTIONS(4421), 1, + anon_sym_EQ, + STATE(2964), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3344), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, + [68565] = 7, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(3893), 1, anon_sym_PIPE, - [51056] = 5, - ACTIONS(2402), 1, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3899), 1, anon_sym_COLON, + ACTIONS(4439), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2398), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3360), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2404), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51081] = 4, - ACTIONS(3366), 1, - anon_sym_COLON_COLON, + [68589] = 6, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4443), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3344), 9, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4441), 2, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51104] = 5, - ACTIONS(2410), 1, - anon_sym_COLON, + STATE(2339), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [68611] = 7, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4445), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68635] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2406), 3, + ACTIONS(4361), 7, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3363), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_where, + [68649] = 8, + ACTIONS(4397), 1, anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4447), 1, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2412), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51129] = 4, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2611), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3378), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3376), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51152] = 6, - ACTIONS(3380), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3384), 1, + [68675] = 3, + ACTIONS(3581), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, + ACTIONS(2882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51178] = 3, - ACTIONS(3388), 1, - anon_sym_EQ, + [68691] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3386), 10, + ACTIONS(4361), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51198] = 3, - ACTIONS(3392), 1, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3390), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_GT, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51218] = 3, - ACTIONS(3396), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3394), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_where, + [68705] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4449), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51238] = 3, - ACTIONS(419), 1, - anon_sym_EQ, + STATE(1963), 1, + aux_sym_macro_definition_repeat1, + STATE(2772), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(417), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51258] = 3, - ACTIONS(3400), 1, - anon_sym_EQ, + [68731] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3398), 10, + ACTIONS(4361), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51278] = 3, - ACTIONS(3404), 1, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3402), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_GT, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51298] = 3, - ACTIONS(3219), 1, - anon_sym_EQ, + anon_sym_where, + [68745] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4451), 1, + anon_sym_RBRACE, + STATE(1931), 1, + aux_sym_macro_definition_repeat1, + STATE(2779), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51318] = 3, - ACTIONS(3408), 1, - anon_sym_EQ, + [68771] = 3, + ACTIONS(4453), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3406), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4176), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68787] = 7, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4455), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51338] = 3, - ACTIONS(3412), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3410), 10, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68811] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4361), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51358] = 3, - ACTIONS(3416), 1, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_where, + [68825] = 3, + ACTIONS(4457), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51378] = 3, - ACTIONS(3420), 1, - anon_sym_EQ, + ACTIONS(4176), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68841] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3418), 10, + ACTIONS(4361), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51398] = 3, - ACTIONS(3424), 1, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_where, + [68855] = 8, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4459), 1, + anon_sym_SEMI, + STATE(975), 1, + sym_field_declaration_list, + STATE(2449), 1, + sym_ordered_field_declaration_list, + STATE(2719), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + [68881] = 7, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4461), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51418] = 3, - ACTIONS(3428), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3426), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68905] = 7, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4463), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51438] = 3, - ACTIONS(3432), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3430), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51458] = 5, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(3436), 1, - sym_crate, - STATE(1507), 1, - sym_string_literal, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68929] = 3, + ACTIONS(4465), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51482] = 3, - ACTIONS(3346), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3344), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + [68945] = 7, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4467), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51502] = 3, - ACTIONS(3440), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3438), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68969] = 7, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4469), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51522] = 3, - ACTIONS(3444), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3442), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68993] = 7, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4471), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51542] = 3, - ACTIONS(3448), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69017] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4473), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51562] = 3, - ACTIONS(3452), 1, - anon_sym_EQ, + STATE(1925), 1, + aux_sym_macro_definition_repeat1, + STATE(2777), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3450), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51582] = 3, - ACTIONS(3456), 1, - anon_sym_EQ, + [69043] = 3, + ACTIONS(4475), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3454), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51602] = 3, - ACTIONS(3460), 1, - anon_sym_EQ, + ACTIONS(4176), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69059] = 5, + ACTIONS(4020), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3458), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4028), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3893), 3, anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, anon_sym_PIPE, - [51622] = 3, - ACTIONS(3464), 1, - anon_sym_EQ, + anon_sym_if, + [69079] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 10, + ACTIONS(4477), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51642] = 3, - ACTIONS(3468), 1, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_where, + [69093] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4479), 1, + anon_sym_RPAREN, + STATE(1932), 1, + aux_sym_macro_definition_repeat1, + STATE(2752), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3466), 10, - anon_sym_SEMI, + [69119] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4481), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51662] = 3, - ACTIONS(3472), 1, - anon_sym_EQ, + STATE(1926), 1, + aux_sym_macro_definition_repeat1, + STATE(2776), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + [69145] = 7, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, + ACTIONS(4483), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51682] = 3, - ACTIONS(3352), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3350), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69169] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4485), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51702] = 3, - ACTIONS(3476), 1, - anon_sym_EQ, + STATE(1900), 1, + aux_sym_macro_definition_repeat1, + STATE(2680), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51722] = 6, - ACTIONS(3380), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3478), 1, - anon_sym_COLON_COLON, + [69195] = 3, + ACTIONS(4487), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, + ACTIONS(4176), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51748] = 3, - ACTIONS(3482), 1, + [69211] = 6, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4491), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3480), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4489), 2, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51768] = 3, - ACTIONS(3486), 1, - anon_sym_EQ, + STATE(2465), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [69233] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3484), 10, + ACTIONS(4493), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51788] = 5, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(3488), 1, - sym_crate, - STATE(1507), 1, - sym_string_literal, + anon_sym_where, + [69247] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4495), 1, + anon_sym_RBRACE, + STATE(1918), 1, + aux_sym_macro_definition_repeat1, + STATE(2775), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 8, - anon_sym_SEMI, + [69273] = 8, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51812] = 5, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(3490), 1, - sym_crate, - STATE(1507), 1, - sym_string_literal, + ACTIONS(4403), 1, + anon_sym_LBRACK, + ACTIONS(4497), 1, + anon_sym_RPAREN, + STATE(1938), 1, + aux_sym_macro_definition_repeat1, + STATE(2788), 1, + sym_macro_rule, + STATE(2837), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 8, + [69299] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4499), 1, anon_sym_SEMI, + ACTIONS(4501), 1, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51836] = 3, - ACTIONS(3494), 1, - anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_PLUS, + STATE(464), 1, + sym_block, + STATE(2358), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3492), 10, + [69322] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4505), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51856] = 3, - ACTIONS(3498), 1, - anon_sym_EQ, + STATE(503), 1, + sym_declaration_list, + STATE(2395), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3496), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + [69345] = 4, + ACTIONS(4507), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51876] = 5, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - ACTIONS(3500), 1, - sym_crate, - STATE(1507), 1, - sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 8, + ACTIONS(4304), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3103), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [69362] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4510), 1, anon_sym_SEMI, + ACTIONS(4512), 1, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51900] = 3, - ACTIONS(3504), 1, - anon_sym_EQ, + STATE(1062), 1, + sym_block, + STATE(2588), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3502), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + [69385] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4330), 1, anon_sym_COLON, - anon_sym_if, + STATE(474), 1, + sym_declaration_list, + STATE(2201), 1, + sym_trait_bounds, + STATE(2774), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69408] = 5, + ACTIONS(4516), 1, + anon_sym_COLON, + ACTIONS(4518), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4514), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51920] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, + [69427] = 6, + ACTIONS(3555), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, + ACTIONS(4520), 1, + anon_sym_GT, + ACTIONS(4522), 1, + anon_sym_COMMA, + STATE(2519), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2908), 2, + anon_sym_PLUS, + anon_sym_as, + [69448] = 7, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(3506), 1, - anon_sym_EQ, - STATE(1285), 1, + ACTIONS(4524), 1, + sym_identifier, + ACTIONS(4526), 1, + anon_sym_STAR, + STATE(2565), 1, + sym_use_list, + STATE(2917), 1, sym_type_arguments, - STATE(1307), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + [69471] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [51951] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3510), 1, - anon_sym_RBRACE, - ACTIONS(3512), 1, - anon_sym_COMMA, - ACTIONS(3514), 1, - sym_crate, - STATE(2025), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + ACTIONS(4528), 1, + anon_sym_SEMI, + STATE(933), 1, + sym_declaration_list, + STATE(2518), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1494), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [51984] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, + [69494] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4530), 1, + anon_sym_SEMI, + STATE(581), 1, + sym_declaration_list, + STATE(2539), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69517] = 4, + ACTIONS(3984), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3516), 1, + ACTIONS(4252), 1, anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2908), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52015] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, + [69534] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4532), 1, + anon_sym_SEMI, + STATE(479), 1, + sym_declaration_list, + STATE(2385), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69557] = 4, + ACTIONS(3984), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3518), 1, + ACTIONS(4254), 1, anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2908), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52046] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3520), 1, - anon_sym_RBRACE, - ACTIONS(3522), 1, - anon_sym_COMMA, - STATE(1844), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [69574] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4534), 1, + anon_sym_SEMI, + STATE(1051), 1, + sym_declaration_list, + STATE(2574), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1492), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52079] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - ACTIONS(3526), 1, - anon_sym_RBRACE, - ACTIONS(3528), 1, - anon_sym_COMMA, - STATE(2014), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + [69597] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4536), 1, + anon_sym_SEMI, + STATE(1128), 1, + sym_declaration_list, + STATE(2590), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52112] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1939), 1, - sym__literal, + [69620] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4538), 1, + anon_sym_SEMI, + STATE(1130), 1, + sym_declaration_list, + STATE(2460), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52137] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3532), 1, - anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + [69643] = 4, + ACTIONS(4540), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, + ACTIONS(4296), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3057), 3, + anon_sym_SEMI, anon_sym_PLUS, + anon_sym_DASH_GT, + [69660] = 7, + ACTIONS(4210), 1, anon_sym_where, - [52168] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1941), 1, - sym__literal, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(4543), 1, + anon_sym_SEMI, + ACTIONS(4545), 1, + anon_sym_DASH_GT, + STATE(610), 1, + sym_block, + STATE(2512), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_true, - anon_sym_false, - STATE(965), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52193] = 6, - ACTIONS(15), 1, + [69683] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(3265), 1, - anon_sym_trait, - ACTIONS(3534), 1, - anon_sym_impl, - STATE(45), 1, + ACTIONS(4547), 1, + anon_sym_SEMI, + STATE(1138), 1, sym_block, + STATE(2563), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52218] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3536), 1, - anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + [69706] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(4549), 1, + anon_sym_SEMI, + ACTIONS(4551), 1, + anon_sym_DASH_GT, + STATE(1098), 1, + sym_block, + STATE(2557), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + [69729] = 7, + ACTIONS(4210), 1, anon_sym_where, - [52249] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3538), 1, + ACTIONS(4501), 1, anon_sym_LBRACE, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4553), 1, + anon_sym_SEMI, + STATE(563), 1, + sym_block, + STATE(2417), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 5, + [69752] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(4555), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [52276] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3540), 1, - anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + ACTIONS(4557), 1, + anon_sym_DASH_GT, + STATE(442), 1, + sym_block, + STATE(2338), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + [69775] = 7, + ACTIONS(4210), 1, anon_sym_where, - [52307] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3542), 1, - anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(4559), 1, + anon_sym_SEMI, + ACTIONS(4561), 1, + anon_sym_DASH_GT, + STATE(936), 1, + sym_block, + STATE(2513), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52338] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, + [69798] = 4, + ACTIONS(3984), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3544), 1, + ACTIONS(4236), 1, anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2908), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52369] = 5, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3478), 1, - anon_sym_COLON_COLON, + [69815] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52392] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - ACTIONS(3546), 1, - anon_sym_RBRACE, - ACTIONS(3548), 1, + ACTIONS(4296), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3057), 4, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - STATE(1987), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1503), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52425] = 5, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3384), 1, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, + [69830] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4563), 1, + anon_sym_SEMI, + STATE(561), 1, + sym_declaration_list, + STATE(2320), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52448] = 5, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, + [69853] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4565), 1, + anon_sym_SEMI, + STATE(621), 1, + sym_declaration_list, + STATE(2581), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52471] = 8, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3552), 1, - sym_identifier, - ACTIONS(3554), 1, - anon_sym_RBRACE, - ACTIONS(3556), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_DOT_DOT, + [69876] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4330), 1, + anon_sym_COLON, + STATE(440), 1, + sym_declaration_list, + STATE(2222), 1, + sym_trait_bounds, + STATE(2676), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1738), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1905), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52500] = 9, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, + [69899] = 4, + ACTIONS(3984), 1, anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3560), 1, + ACTIONS(4238), 1, anon_sym_for, - STATE(1285), 1, - sym_type_arguments, - STATE(1307), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 3, + ACTIONS(2908), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52531] = 5, - ACTIONS(3562), 1, - anon_sym_SEMI, - ACTIONS(3564), 1, + [69916] = 7, + ACTIONS(4166), 1, anon_sym_LBRACE, - STATE(465), 1, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4567), 1, + anon_sym_SEMI, + STATE(990), 1, sym_declaration_list, + STATE(2436), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52553] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3566), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52583] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3572), 1, - anon_sym_GT, - ACTIONS(3574), 1, - sym_metavariable, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + [69939] = 4, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, + ACTIONS(4162), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52613] = 5, - ACTIONS(3576), 1, + ACTIONS(2908), 4, anon_sym_SEMI, - ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(804), 1, - sym_declaration_list, + anon_sym_PLUS, + anon_sym_where, + [69956] = 4, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52635] = 7, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3552), 1, - sym_identifier, - ACTIONS(3558), 1, - anon_sym_DOT_DOT, - ACTIONS(3580), 1, - anon_sym_RBRACE, + ACTIONS(4569), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4032), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [69973] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, + anon_sym_SEMI, + ACTIONS(4575), 1, + anon_sym_DASH_GT, + STATE(993), 1, + sym_block, + STATE(2428), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1738), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52661] = 10, - ACTIONS(3582), 1, - anon_sym_SEMI, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, + [69996] = 7, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(371), 1, - sym_field_declaration_list, - STATE(1521), 1, - sym_type_parameters, - STATE(1847), 1, - sym_ordered_field_declaration_list, - STATE(2190), 1, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4577), 1, + anon_sym_SEMI, + STATE(537), 1, + sym_declaration_list, + STATE(2424), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52693] = 10, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, + [70019] = 7, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3592), 1, - anon_sym_SEMI, - ACTIONS(3594), 1, + ACTIONS(4501), 1, anon_sym_LBRACE, - STATE(959), 1, - sym_field_declaration_list, - STATE(1541), 1, - sym_type_parameters, - STATE(2034), 1, - sym_ordered_field_declaration_list, - STATE(2045), 1, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4579), 1, + anon_sym_SEMI, + STATE(580), 1, + sym_block, + STATE(2429), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52725] = 5, - ACTIONS(15), 1, + [70042] = 7, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3596), 1, - anon_sym_move, - STATE(61), 1, - sym_block, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4581), 1, + anon_sym_SEMI, + STATE(929), 1, + sym_declaration_list, + STATE(2521), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52747] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3598), 1, - anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + [70065] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4583), 1, + anon_sym_SEMI, + STATE(510), 1, + sym_declaration_list, + STATE(2321), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52777] = 10, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, + [70088] = 7, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3600), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_field_declaration_list, - STATE(1542), 1, - sym_type_parameters, - STATE(1833), 1, - sym_ordered_field_declaration_list, - STATE(2129), 1, + ACTIONS(4330), 1, + anon_sym_COLON, + STATE(969), 1, + sym_declaration_list, + STATE(2174), 1, + sym_trait_bounds, + STATE(2716), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52809] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3602), 1, - anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + [70111] = 4, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, + ACTIONS(4248), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52839] = 5, - ACTIONS(3564), 1, + ACTIONS(2908), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3604), 1, + anon_sym_PLUS, + anon_sym_where, + [70128] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4585), 1, anon_sym_SEMI, - STATE(283), 1, + STATE(532), 1, sym_declaration_list, + STATE(2421), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52861] = 7, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3552), 1, - sym_identifier, - ACTIONS(3558), 1, - anon_sym_DOT_DOT, - ACTIONS(3606), 1, - anon_sym_RBRACE, + [70151] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4587), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_declaration_list, + STATE(2533), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1738), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52887] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - ACTIONS(3608), 1, - anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + [70174] = 7, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4589), 1, + anon_sym_LBRACE, + STATE(603), 1, + sym_enum_variant_list, + STATE(2137), 1, + sym_type_parameters, + STATE(2619), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52917] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3610), 1, + [70197] = 7, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4591), 1, anon_sym_GT, - STATE(1730), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + ACTIONS(4593), 1, + anon_sym_COMMA, + STATE(2477), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2519), 1, + aux_sym_type_parameters_repeat1, + STATE(2531), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52947] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3612), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [70220] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4595), 1, + anon_sym_SEMI, + STATE(586), 1, + sym_block, + STATE(2260), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52977] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3614), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [70243] = 7, + ACTIONS(3992), 1, + anon_sym_EQ, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4597), 1, + anon_sym_GT, + ACTIONS(4599), 1, + anon_sym_COMMA, + STATE(2432), 1, + aux_sym_type_parameters_repeat1, + STATE(2514), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53007] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, + [70266] = 7, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4524), 1, sym_identifier, - ACTIONS(3616), 1, - anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + ACTIONS(4526), 1, + anon_sym_STAR, + STATE(2565), 1, + sym_use_list, + STATE(2900), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53037] = 7, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3618), 1, + [70289] = 4, + ACTIONS(4601), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [53063] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - ACTIONS(3620), 1, - anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + ACTIONS(2908), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [70306] = 7, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4589), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym_enum_variant_list, + STATE(2233), 1, + sym_type_parameters, + STATE(2753), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53093] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3622), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [70329] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(4603), 1, + anon_sym_SEMI, + STATE(1044), 1, + sym_block, + STATE(2573), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53123] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3624), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [70352] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4330), 1, + anon_sym_COLON, + STATE(980), 1, + sym_declaration_list, + STATE(2143), 1, + sym_trait_bounds, + STATE(2651), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53153] = 10, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, + [70375] = 7, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3594), 1, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3626), 1, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4605), 1, anon_sym_SEMI, - STATE(837), 1, - sym_field_declaration_list, - STATE(1512), 1, - sym_type_parameters, - STATE(1953), 1, - sym_ordered_field_declaration_list, - STATE(2161), 1, + STATE(501), 1, + sym_declaration_list, + STATE(2391), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53185] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3628), 1, - anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53215] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - ACTIONS(3630), 1, - anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + [70398] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_SEMI, + ACTIONS(4609), 1, + anon_sym_DASH_GT, + STATE(544), 1, + sym_block, + STATE(2435), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53245] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3632), 1, - anon_sym_RBRACE, - STATE(2085), 1, - sym_field_declaration, + [70421] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4611), 1, + anon_sym_SEMI, + STATE(645), 1, + sym_declaration_list, STATE(2318), 1, - sym_visibility_modifier, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53275] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - ACTIONS(3634), 1, - anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + [70444] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4613), 1, + anon_sym_SEMI, + STATE(963), 1, + sym_declaration_list, + STATE(2458), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53305] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3636), 1, - anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + [70467] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53335] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3638), 1, - anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + ACTIONS(3057), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4296), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4540), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [70484] = 4, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, + ACTIONS(4294), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53365] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3640), 1, + ACTIONS(2908), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70501] = 7, + ACTIONS(3992), 1, + anon_sym_EQ, + ACTIONS(3994), 1, anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + ACTIONS(3996), 1, + anon_sym_COMMA, + ACTIONS(4330), 1, + anon_sym_COLON, + STATE(2514), 1, + sym_trait_bounds, + STATE(2517), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53395] = 5, - ACTIONS(3578), 1, + [70524] = 7, + ACTIONS(4206), 1, anon_sym_LBRACE, - ACTIONS(3642), 1, - anon_sym_SEMI, - STATE(871), 1, - sym_declaration_list, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + STATE(1025), 1, + sym_field_declaration_list, + STATE(2205), 1, + sym_type_parameters, + STATE(2794), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53417] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_RBRACE, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + [70547] = 7, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4332), 1, + anon_sym_LT, + ACTIONS(4615), 1, + anon_sym_SEMI, + ACTIONS(4617), 1, + anon_sym_EQ, + STATE(2207), 1, + sym_type_parameters, + STATE(2825), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53447] = 9, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - ACTIONS(3646), 1, - anon_sym_GT, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, + [70570] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53477] = 5, - ACTIONS(15), 1, + ACTIONS(3103), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4304), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4507), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [70587] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4501), 1, anon_sym_LBRACE, - ACTIONS(3648), 1, - sym_identifier, - STATE(47), 1, + ACTIONS(4619), 1, + anon_sym_SEMI, + ACTIONS(4621), 1, + anon_sym_DASH_GT, + STATE(461), 1, sym_block, + STATE(2367), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53499] = 6, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3652), 1, - anon_sym_RBRACK, + [70610] = 7, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4226), 1, + anon_sym_LBRACE, + STATE(594), 1, + sym_field_declaration_list, + STATE(2145), 1, + sym_type_parameters, + STATE(2650), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 2, - anon_sym_SEMI, + [70633] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(3314), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53522] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3655), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(4623), 1, + anon_sym_SEMI, + STATE(644), 1, + sym_declaration_list, + STATE(2281), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + [70656] = 7, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, anon_sym_where, - [53547] = 5, - ACTIONS(3660), 1, - anon_sym_fn, - ACTIONS(3662), 1, - anon_sym_extern, + ACTIONS(4625), 1, + anon_sym_LBRACE, + STATE(958), 1, + sym_enum_variant_list, + STATE(2171), 1, + sym_type_parameters, + STATE(2699), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1464), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3657), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [53568] = 6, - ACTIONS(3314), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_COLON, - ACTIONS(3478), 1, + [70679] = 4, + ACTIONS(3984), 1, anon_sym_COLON_COLON, + ACTIONS(4172), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, - anon_sym_RPAREN, + ACTIONS(2908), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - [53591] = 8, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3667), 1, - anon_sym_RBRACE, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, + anon_sym_where, + [70696] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(4627), 1, + anon_sym_SEMI, + ACTIONS(4629), 1, + anon_sym_DASH_GT, + STATE(551), 1, + sym_block, + STATE(2327), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1930), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53618] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3675), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + [70719] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4631), 1, + anon_sym_SEMI, + STATE(591), 1, + sym_block, + STATE(2442), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + [70742] = 7, + ACTIONS(4210), 1, anon_sym_where, - [53643] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3677), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_SEMI, + ACTIONS(4635), 1, + anon_sym_DASH_GT, + STATE(1105), 1, + sym_block, + STATE(2585), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + [70765] = 7, + ACTIONS(4206), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, anon_sym_where, - [53668] = 7, - ACTIONS(3205), 1, + STATE(953), 1, + sym_field_declaration_list, + STATE(2169), 1, + sym_type_parameters, + STATE(2696), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [70788] = 6, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + ACTIONS(4637), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3679), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(4641), 1, + anon_sym_EQ, + STATE(2733), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + ACTIONS(4639), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [70809] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4512), 1, anon_sym_LBRACE, + ACTIONS(4643), 1, + anon_sym_SEMI, + STATE(988), 1, + sym_block, + STATE(2549), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [70832] = 7, + ACTIONS(2703), 1, anon_sym_PLUS, - anon_sym_where, - [53693] = 9, - ACTIONS(3578), 1, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4520), 1, + anon_sym_GT, + ACTIONS(4522), 1, + anon_sym_COMMA, + STATE(2519), 1, + aux_sym_type_parameters_repeat1, + STATE(2531), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [70855] = 7, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3681), 1, + ACTIONS(4330), 1, anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(891), 1, + STATE(1103), 1, sym_declaration_list, - STATE(1592), 1, - sym_type_parameters, - STATE(1766), 1, + STATE(2134), 1, sym_trait_bounds, - STATE(2109), 1, + STATE(2783), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53722] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3685), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + [70878] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4304), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3103), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [70893] = 7, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4332), 1, + anon_sym_LT, + ACTIONS(4645), 1, + anon_sym_SEMI, + ACTIONS(4647), 1, + anon_sym_EQ, + STATE(2226), 1, + sym_type_parameters, + STATE(2866), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53747] = 6, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3290), 1, + [70916] = 4, + ACTIONS(4649), 1, anon_sym_COLON_COLON, - ACTIONS(3368), 1, - anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [53770] = 4, - ACTIONS(3689), 1, + ACTIONS(2908), 3, + anon_sym_RPAREN, anon_sym_PLUS, - STATE(1490), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3687), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [53789] = 8, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3691), 1, - sym_identifier, - ACTIONS(3693), 1, - sym_metavariable, - STATE(1615), 1, - sym_lifetime, - STATE(1728), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1830), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53816] = 6, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3695), 1, + [70933] = 5, + ACTIONS(4649), 1, anon_sym_COLON_COLON, + ACTIONS(4653), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 3, - anon_sym_RBRACK, + ACTIONS(4651), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [53839] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - STATE(2215), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + [70952] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(4655), 1, + anon_sym_SEMI, + ACTIONS(4657), 1, + anon_sym_DASH_GT, + STATE(1086), 1, + sym_block, + STATE(2583), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53866] = 7, - ACTIONS(3205), 1, + [70975] = 6, + ACTIONS(4108), 1, + anon_sym_COLON_COLON, + ACTIONS(4637), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3697), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(4661), 1, + anon_sym_EQ, + STATE(2734), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53891] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - STATE(2226), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + ACTIONS(4659), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [70996] = 5, + ACTIONS(4653), 1, + anon_sym_COLON, + ACTIONS(4663), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53918] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4651), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [71015] = 6, + ACTIONS(1336), 1, + anon_sym_DOT_DOT, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(3514), 1, - sym_crate, - STATE(2085), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + ACTIONS(4312), 1, + anon_sym_ref, + ACTIONS(4314), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53945] = 7, - ACTIONS(2394), 1, + STATE(2755), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71036] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(3314), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_COLON, - ACTIONS(3384), 1, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(4665), 1, + anon_sym_SEMI, + STATE(1050), 1, + sym_block, + STATE(2553), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [71059] = 6, + ACTIONS(4114), 1, anon_sym_COLON_COLON, + ACTIONS(4637), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_EQ, + STATE(2733), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3652), 2, + ACTIONS(4639), 2, anon_sym_RPAREN, anon_sym_COMMA, - [53970] = 9, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, + [71080] = 7, + ACTIONS(4208), 1, anon_sym_LT, - STATE(337), 1, - sym_declaration_list, - STATE(1572), 1, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4226), 1, + anon_sym_LBRACE, + STATE(566), 1, + sym_field_declaration_list, + STATE(2225), 1, sym_type_parameters, - STATE(1701), 1, - sym_trait_bounds, - STATE(2149), 1, + STATE(2764), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53999] = 4, - ACTIONS(718), 1, - aux_sym_string_literal_token1, - STATE(1507), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3434), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54018] = 4, - ACTIONS(3701), 1, + [71103] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, anon_sym_PLUS, - STATE(1473), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4667), 1, + anon_sym_SEMI, + STATE(1078), 1, + sym_declaration_list, + STATE(2582), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3699), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + [71126] = 7, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54037] = 9, - ACTIONS(3578), 1, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(845), 1, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4669), 1, + anon_sym_SEMI, + STATE(624), 1, sym_declaration_list, - STATE(1569), 1, - sym_type_parameters, - STATE(1699), 1, - sym_trait_bounds, - STATE(2157), 1, + STATE(2278), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54066] = 4, - ACTIONS(3703), 1, + [71149] = 7, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4503), 1, anon_sym_PLUS, - STATE(1473), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4671), 1, + anon_sym_SEMI, + STATE(1072), 1, + sym_declaration_list, + STATE(2580), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3699), 6, - anon_sym_SEMI, + [71172] = 7, + ACTIONS(4166), 1, anon_sym_LBRACE, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54085] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - STATE(1850), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4673), 1, + anon_sym_SEMI, + STATE(1034), 1, + sym_declaration_list, + STATE(2343), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54112] = 4, - ACTIONS(3689), 1, + [71195] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, anon_sym_PLUS, - STATE(1473), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4675), 1, + anon_sym_SEMI, + STATE(516), 1, + sym_block, + STATE(2396), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3699), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + [71218] = 7, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54131] = 9, - ACTIONS(3564), 1, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(255), 1, - sym_declaration_list, - STATE(1578), 1, - sym_type_parameters, - STATE(1759), 1, - sym_trait_bounds, - STATE(2122), 1, + ACTIONS(4677), 1, + anon_sym_SEMI, + STATE(1006), 1, + sym_block, + STATE(2550), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54160] = 8, - ACTIONS(3705), 1, + [71241] = 6, + ACTIONS(3970), 1, + anon_sym_COLON_COLON, + ACTIONS(4637), 1, anon_sym_LPAREN, - ACTIONS(3710), 1, - anon_sym_LBRACE, - ACTIONS(3713), 1, - anon_sym_LBRACK, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2416), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(4641), 1, + anon_sym_EQ, + STATE(2733), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 2, + ACTIONS(4639), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - [54187] = 4, - ACTIONS(3718), 1, - anon_sym_PLUS, - STATE(1490), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3716), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [54206] = 5, - ACTIONS(3723), 1, - anon_sym_fn, - ACTIONS(3725), 1, - anon_sym_extern, + [71262] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(4330), 1, + anon_sym_COLON, + STATE(639), 1, + sym_declaration_list, + STATE(2133), 1, + sym_trait_bounds, + STATE(2598), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1464), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3721), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [54227] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - STATE(1923), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [71285] = 7, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4625), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_enum_variant_list, + STATE(2219), 1, + sym_type_parameters, + STATE(2767), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54254] = 8, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3727), 1, - anon_sym_RBRACE, - ACTIONS(3729), 1, - anon_sym_COMMA, + [71308] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(4679), 1, + anon_sym_SEMI, + ACTIONS(4681), 1, + anon_sym_DASH_GT, + STATE(528), 1, + sym_block, + STATE(2400), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1926), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54281] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_crate, - STATE(1990), 1, - sym_field_declaration, - STATE(2318), 1, - sym_visibility_modifier, + [71331] = 4, + ACTIONS(4663), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54308] = 7, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3731), 1, - anon_sym_for, - STATE(1276), 1, - sym_type_arguments, - STATE(1300), 1, - sym_parameters, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2908), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71348] = 7, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(4683), 1, + anon_sym_SEMI, + ACTIONS(4685), 1, + anon_sym_DASH_GT, + STATE(982), 1, + sym_block, + STATE(2542), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, + [71371] = 7, + ACTIONS(4166), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4210), 1, anon_sym_where, - [54333] = 4, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4687), 1, + anon_sym_SEMI, + STATE(1055), 1, + sym_declaration_list, + STATE(2575), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54352] = 4, - ACTIONS(874), 1, - anon_sym_LBRACE, - STATE(1374), 1, - sym_block, + [71394] = 5, + ACTIONS(1312), 1, + anon_sym_RPAREN, + ACTIONS(4689), 1, + anon_sym_COMMA, + STATE(2568), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54371] = 7, - ACTIONS(3205), 1, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_PIPE, + [71412] = 6, + ACTIONS(3885), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(3733), 1, - anon_sym_for, - STATE(1276), 1, + STATE(1689), 1, sym_type_arguments, - STATE(1300), 1, + STATE(1700), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54396] = 8, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3568), 1, - sym_identifier, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3574), 1, - sym_metavariable, - STATE(1729), 1, - sym_lifetime, - STATE(1883), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2239), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54423] = 4, - ACTIONS(3374), 1, + [71432] = 6, + ACTIONS(2864), 1, + anon_sym_LPAREN, + ACTIONS(3889), 1, anon_sym_COLON_COLON, - ACTIONS(3735), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54442] = 4, - ACTIONS(3241), 1, - anon_sym_trait, - ACTIONS(3737), 1, - anon_sym_impl, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54461] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - STATE(2112), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1174), 1, + sym_parameters, + STATE(1689), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1476), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54488] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - sym_crate, - ACTIONS(3524), 1, - sym_identifier, - STATE(2026), 1, - sym_enum_variant, - STATE(2459), 1, - sym_visibility_modifier, + [71452] = 4, + ACTIONS(4693), 1, + anon_sym_COLON_COLON, + ACTIONS(4695), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54515] = 4, - ACTIONS(2478), 1, + ACTIONS(4691), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [71468] = 4, + ACTIONS(4699), 1, anon_sym_COLON_COLON, - ACTIONS(3739), 1, - anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54534] = 9, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(376), 1, - sym_declaration_list, - STATE(1593), 1, - sym_type_parameters, - STATE(1711), 1, - sym_trait_bounds, - STATE(2191), 1, - sym_where_clause, + ACTIONS(4697), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [71484] = 5, + ACTIONS(4703), 1, + anon_sym_RPAREN, + ACTIONS(4705), 1, + anon_sym_COMMA, + STATE(2504), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54563] = 8, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3741), 1, - sym_identifier, - ACTIONS(3743), 1, - sym_metavariable, - STATE(1644), 1, - sym_lifetime, - STATE(1713), 1, - sym_constrained_type_parameter, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_PIPE, + [71502] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1940), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54590] = 2, + ACTIONS(4707), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [71514] = 4, + ACTIONS(4701), 1, + anon_sym_as, + ACTIONS(4709), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3745), 8, + ACTIONS(4697), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54605] = 9, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3683), 1, - anon_sym_LT, - STATE(945), 1, - sym_declaration_list, - STATE(1613), 1, - sym_type_parameters, - STATE(1739), 1, - sym_trait_bounds, - STATE(2041), 1, - sym_where_clause, + anon_sym_RBRACE, + anon_sym_COMMA, + [71530] = 4, + ACTIONS(4701), 1, + anon_sym_as, + ACTIONS(4711), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54634] = 8, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(3570), 1, - anon_sym_const, - ACTIONS(3691), 1, - sym_identifier, - ACTIONS(3693), 1, - sym_metavariable, - STATE(1649), 1, - sym_lifetime, - STATE(1728), 1, - sym_constrained_type_parameter, + ACTIONS(4697), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [71546] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1830), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54661] = 6, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(3552), 1, - sym_identifier, - ACTIONS(3558), 1, - anon_sym_DOT_DOT, + ACTIONS(808), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [71558] = 6, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4520), 1, + anon_sym_GT, + ACTIONS(4522), 1, + anon_sym_COMMA, + STATE(2519), 1, + aux_sym_type_parameters_repeat1, + STATE(2531), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1738), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2177), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54684] = 6, - ACTIONS(3747), 1, - anon_sym_LPAREN, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3753), 1, + [71578] = 5, + ACTIONS(4040), 1, + anon_sym_COLON, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4044), 1, anon_sym_COLON_COLON, - STATE(1819), 1, - sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3749), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [71596] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4713), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [54706] = 8, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3594), 1, - anon_sym_LBRACE, - ACTIONS(3755), 1, - anon_sym_SEMI, - STATE(936), 1, - sym_field_declaration_list, - STATE(2027), 1, - sym_ordered_field_declaration_list, - STATE(2060), 1, - sym_where_clause, + [71608] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54732] = 3, - ACTIONS(2478), 1, - anon_sym_COLON_COLON, + ACTIONS(788), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [71620] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54748] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, - anon_sym_RPAREN, - ACTIONS(3761), 1, + ACTIONS(3115), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2169), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [71632] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54774] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, + ACTIONS(3119), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3765), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [71644] = 6, + ACTIONS(4715), 1, anon_sym_RPAREN, - STATE(1523), 1, - aux_sym_macro_definition_repeat1, - STATE(2202), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(4717), 1, + anon_sym_COLON, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(4721), 1, + anon_sym_COMMA, + STATE(2498), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54800] = 7, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3767), 1, - anon_sym_RBRACE, + [71664] = 4, + ACTIONS(4723), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54824] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3769), 1, - anon_sym_RPAREN, - STATE(1519), 1, - aux_sym_macro_definition_repeat1, - STATE(2204), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(3349), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4228), 2, + anon_sym_PIPE, + anon_sym_COMMA, + [71680] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54850] = 3, - ACTIONS(3771), 1, - anon_sym_trait, + ACTIONS(4726), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [71692] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54866] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3773), 1, - anon_sym_RPAREN, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2180), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(4728), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [71704] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54892] = 2, + ACTIONS(4730), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [71716] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3775), 7, + ACTIONS(3063), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54906] = 8, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, anon_sym_where, - ACTIONS(3777), 1, - anon_sym_SEMI, - STATE(276), 1, - sym_field_declaration_list, - STATE(1840), 1, - sym_ordered_field_declaration_list, - STATE(2164), 1, - sym_where_clause, + [71728] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54932] = 7, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3779), 1, + ACTIONS(4732), 5, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [71740] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54956] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3781), 1, + ACTIONS(2860), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [71752] = 5, + ACTIONS(4734), 1, anon_sym_RPAREN, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2179), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(4736), 1, + anon_sym_COMMA, + STATE(2466), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54982] = 3, - ACTIONS(3783), 1, - sym_identifier, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_PIPE, + [71770] = 5, + ACTIONS(4738), 1, + anon_sym_RPAREN, + ACTIONS(4740), 1, + anon_sym_COMMA, + STATE(2487), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54998] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3785), 1, - anon_sym_RBRACE, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2055), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_PIPE, + [71788] = 6, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(3990), 1, + anon_sym_COLON, + STATE(1689), 1, + sym_type_arguments, + STATE(2439), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55024] = 3, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, + [71808] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55040] = 8, - ACTIONS(3757), 1, + ACTIONS(4371), 5, anon_sym_LPAREN, - ACTIONS(3761), 1, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3787), 1, anon_sym_RBRACE, - STATE(1533), 1, - aux_sym_macro_definition_repeat1, - STATE(2111), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + anon_sym_LBRACK, + [71820] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55066] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, + ACTIONS(4742), 5, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(1525), 1, - aux_sym_macro_definition_repeat1, - STATE(2121), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [71832] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55092] = 6, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3069), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3793), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3791), 2, - anon_sym_RBRACE, + anon_sym_where, + [71844] = 5, + ACTIONS(1308), 1, + anon_sym_RPAREN, + ACTIONS(4744), 1, anon_sym_COMMA, - STATE(1984), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55114] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3795), 1, - anon_sym_RBRACE, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2172), 1, - sym_macro_rule, STATE(2454), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55140] = 3, - ACTIONS(3797), 1, - sym_identifier, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55156] = 7, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3213), 1, + ACTIONS(3893), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3215), 1, - anon_sym_LPAREN, - ACTIONS(3219), 1, + [71862] = 5, + ACTIONS(4040), 1, anon_sym_COLON, - ACTIONS(3799), 1, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4064), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(4036), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [55180] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3801), 1, - anon_sym_RBRACE, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2057), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + [71880] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55206] = 2, + ACTIONS(4028), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3893), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [71894] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, + ACTIONS(4746), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [55220] = 2, + anon_sym_where, + [71906] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(760), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [71918] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, + ACTIONS(3047), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55234] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3803), 1, - anon_sym_RBRACE, - STATE(1547), 1, - aux_sym_macro_definition_repeat1, - STATE(2050), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + anon_sym_where, + [71930] = 4, + ACTIONS(4663), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55260] = 2, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4748), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [71946] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, + ACTIONS(4750), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [55274] = 2, + anon_sym_where, + [71958] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, + ACTIONS(4752), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, + anon_sym_where, + [71970] = 6, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4754), 1, anon_sym_GT, - [55288] = 2, + ACTIONS(4756), 1, + anon_sym_COMMA, + STATE(2434), 1, + aux_sym_type_parameters_repeat1, + STATE(2531), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 7, - anon_sym_SEMI, + [71990] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4758), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(213), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [72006] = 4, + ACTIONS(4649), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4748), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [55302] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3805), 1, + [72022] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4072), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72034] = 5, + ACTIONS(4760), 1, anon_sym_RPAREN, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2178), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(2487), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55328] = 8, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3594), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_SEMI, - STATE(895), 1, - sym_field_declaration_list, - STATE(1980), 1, - sym_ordered_field_declaration_list, - STATE(2106), 1, - sym_where_clause, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_PIPE, + [72052] = 4, + ACTIONS(4663), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55354] = 8, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4514), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [72068] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3131), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3588), 1, + anon_sym_COLON, + anon_sym_EQ, anon_sym_where, - ACTIONS(3809), 1, - anon_sym_SEMI, - STATE(334), 1, - sym_field_declaration_list, - STATE(1951), 1, - sym_ordered_field_declaration_list, - STATE(2158), 1, - sym_where_clause, + [72080] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55380] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3811), 1, + ACTIONS(4228), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3349), 3, anon_sym_RPAREN, - STATE(1540), 1, - aux_sym_macro_definition_repeat1, - STATE(2101), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_COMMA, + [72094] = 4, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(4766), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55406] = 2, + STATE(406), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [72110] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3813), 7, + ACTIONS(4768), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [55420] = 3, - ACTIONS(3815), 1, - sym_identifier, + anon_sym_where, + [72122] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55436] = 7, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3817), 1, - anon_sym_RBRACE, + ACTIONS(4056), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72134] = 4, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(4770), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1220), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [72150] = 5, + ACTIONS(1302), 1, + anon_sym_RPAREN, + ACTIONS(4772), 1, + anon_sym_COMMA, + STATE(2289), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55460] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3819), 1, - anon_sym_RBRACE, - STATE(1489), 1, - aux_sym_macro_definition_repeat1, - STATE(2181), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_PIPE, + [72168] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55486] = 6, - ACTIONS(3747), 1, - anon_sym_LPAREN, - ACTIONS(3751), 1, + ACTIONS(4774), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [72180] = 3, + ACTIONS(4776), 1, anon_sym_EQ, - ACTIONS(3821), 1, - anon_sym_COLON_COLON, - STATE(1819), 1, - sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3749), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2999), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [55508] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3823), 1, - anon_sym_RBRACE, - STATE(1530), 1, - aux_sym_macro_definition_repeat1, - STATE(2117), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + anon_sym_COLON_COLON, + [72194] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55534] = 8, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3825), 1, - anon_sym_RPAREN, - STATE(1514), 1, - aux_sym_macro_definition_repeat1, - STATE(2138), 1, - sym_macro_rule, - STATE(2454), 1, - sym_token_tree_pattern, + ACTIONS(4778), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [72206] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55560] = 7, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, - ACTIONS(3827), 1, + ACTIONS(4780), 5, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [72218] = 6, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1363), 1, + sym_parameters, + STATE(1689), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55584] = 3, - ACTIONS(3829), 1, - anon_sym_trait, + [72238] = 4, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(4782), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55600] = 6, - ACTIONS(3747), 1, - anon_sym_LPAREN, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3831), 1, - anon_sym_COLON_COLON, - STATE(1819), 1, - sym_meta_arguments, + STATE(1565), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [72254] = 4, + ACTIONS(3349), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3749), 3, + ACTIONS(4228), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4723), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [55622] = 6, - ACTIONS(3584), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, - anon_sym_LBRACE, - ACTIONS(3835), 1, - anon_sym_EQ, + [72270] = 4, + ACTIONS(4649), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3833), 2, - anon_sym_RBRACE, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4514), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1848), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55644] = 6, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(3747), 1, - anon_sym_LPAREN, - ACTIONS(3839), 1, + [72286] = 5, + ACTIONS(3992), 1, anon_sym_EQ, - STATE(1816), 1, - sym_meta_arguments, + ACTIONS(4330), 1, + anon_sym_COLON, + STATE(2514), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, - anon_sym_RPAREN, + ACTIONS(4784), 2, + anon_sym_GT, + anon_sym_COMMA, + [72304] = 5, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(4786), 1, anon_sym_RBRACK, + ACTIONS(4788), 1, anon_sym_COMMA, - [55666] = 3, - ACTIONS(3841), 1, - sym_identifier, + STATE(2394), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55682] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3843), 1, - anon_sym_SEMI, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, - anon_sym_DASH_GT, - STATE(339), 1, - sym_block, - STATE(1964), 1, - sym_where_clause, + [72321] = 4, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4100), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55705] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3849), 1, - anon_sym_SEMI, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3853), 1, - anon_sym_DASH_GT, - STATE(828), 1, - sym_block, - STATE(1961), 1, - sym_where_clause, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [72336] = 4, + ACTIONS(4790), 1, + anon_sym_DQUOTE, + STATE(2257), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55728] = 7, - ACTIONS(3157), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, - anon_sym_STAR, - STATE(1813), 1, - sym_use_list, - STATE(2322), 1, - sym_type_arguments, + ACTIONS(4792), 2, + sym__string_content, + sym_escape_sequence, + [72351] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55751] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3859), 1, - anon_sym_SEMI, - ACTIONS(3861), 1, - anon_sym_DASH_GT, - STATE(463), 1, - sym_block, - STATE(1947), 1, - sym_where_clause, + ACTIONS(2926), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [72362] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55774] = 5, - ACTIONS(3865), 1, - anon_sym_COLON, - ACTIONS(3867), 1, + ACTIONS(2898), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [72373] = 4, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4044), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(4036), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3863), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55793] = 7, - ACTIONS(3588), 1, + [72388] = 5, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3869), 1, - anon_sym_SEMI, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(741), 1, - sym_block, - STATE(1946), 1, + STATE(485), 1, + sym_declaration_list, + STATE(2768), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55816] = 7, - ACTIONS(3157), 1, + [72405] = 5, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, - anon_sym_STAR, - STATE(1813), 1, - sym_use_list, - STATE(2364), 1, - sym_type_arguments, + ACTIONS(4210), 1, + anon_sym_where, + STATE(1110), 1, + sym_declaration_list, + STATE(2614), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55839] = 7, - ACTIONS(3588), 1, + [72422] = 5, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3594), 1, + ACTIONS(4266), 1, anon_sym_LBRACE, - STATE(963), 1, - sym_field_declaration_list, - STATE(1757), 1, - sym_type_parameters, - STATE(2047), 1, + STATE(475), 1, + sym_declaration_list, + STATE(2771), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55862] = 7, - ACTIONS(3588), 1, + [72439] = 5, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4794), 1, + anon_sym_RPAREN, + ACTIONS(4796), 1, + anon_sym_COMMA, + STATE(2404), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [72456] = 5, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3873), 1, + ACTIONS(4589), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(459), 1, sym_enum_variant_list, - STATE(1743), 1, - sym_type_parameters, - STATE(2044), 1, + STATE(2799), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55885] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, + [72473] = 5, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3875), 1, - anon_sym_SEMI, - ACTIONS(3877), 1, - anon_sym_DASH_GT, - STATE(774), 1, - sym_block, - STATE(1952), 1, + ACTIONS(4210), 1, + anon_sym_where, + STATE(1102), 1, + sym_declaration_list, + STATE(2609), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55908] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3879), 1, - anon_sym_SEMI, - STATE(367), 1, - sym_block, - STATE(2012), 1, - sym_where_clause, + [72490] = 4, + ACTIONS(4798), 1, + anon_sym_DQUOTE, + STATE(2142), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55931] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(4800), 2, + sym__string_content, + sym_escape_sequence, + [72505] = 5, + ACTIONS(4802), 1, + anon_sym_LPAREN, + ACTIONS(4804), 1, anon_sym_LBRACE, - ACTIONS(3881), 1, - anon_sym_SEMI, - ACTIONS(3883), 1, - anon_sym_DASH_GT, - STATE(436), 1, - sym_block, - STATE(1957), 1, - sym_where_clause, + ACTIONS(4806), 1, + anon_sym_LBRACK, + STATE(1711), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [72522] = 4, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4571), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4569), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [72537] = 4, + ACTIONS(4808), 1, + anon_sym_DQUOTE, + STATE(2212), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55954] = 7, - ACTIONS(3578), 1, + ACTIONS(4810), 2, + sym__string_content, + sym_escape_sequence, + [72552] = 5, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(940), 1, + STATE(1082), 1, sym_declaration_list, - STATE(1725), 1, - sym_trait_bounds, - STATE(2058), 1, + STATE(2597), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55977] = 7, - ACTIONS(3588), 1, + [72569] = 5, + ACTIONS(4802), 1, + anon_sym_LPAREN, + ACTIONS(4804), 1, + anon_sym_LBRACE, + ACTIONS(4806), 1, + anon_sym_LBRACK, + STATE(1726), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [72586] = 5, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(4226), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3885), 1, - anon_sym_SEMI, - STATE(382), 1, - sym_block, - STATE(1853), 1, + STATE(450), 1, + sym_field_declaration_list, + STATE(2770), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56000] = 4, - ACTIONS(3887), 1, - anon_sym_RBRACK, + [72603] = 5, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(4208), 1, + anon_sym_LT, + STATE(1990), 1, + sym_parameters, + STATE(2766), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3398), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2564), 3, - anon_sym_SEMI, + [72620] = 5, + ACTIONS(4503), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - [56017] = 7, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(460), 1, - sym_declaration_list, - STATE(1709), 1, - sym_trait_bounds, - STATE(2168), 1, - sym_where_clause, + ACTIONS(4812), 1, + anon_sym_RPAREN, + ACTIONS(4814), 1, + anon_sym_COMMA, + STATE(2485), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56040] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3890), 1, - anon_sym_SEMI, - STATE(411), 1, - sym_block, - STATE(1884), 1, - sym_where_clause, + [72637] = 5, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1375), 1, + sym_parameters, + STATE(1678), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56063] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, + [72654] = 5, + ACTIONS(4816), 1, + anon_sym_LPAREN, + ACTIONS(4818), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3892), 1, - anon_sym_SEMI, - STATE(364), 1, - sym_block, - STATE(1845), 1, - sym_where_clause, + ACTIONS(4820), 1, + anon_sym_LBRACK, + STATE(2326), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56086] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, + [72671] = 5, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(3894), 1, - anon_sym_SEMI, - STATE(345), 1, - sym_block, - STATE(1834), 1, - sym_where_clause, + ACTIONS(4822), 1, + anon_sym_GT, + ACTIONS(4824), 1, + anon_sym_COMMA, + STATE(2471), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56109] = 4, + [72688] = 5, + ACTIONS(1312), 1, + anon_sym_RPAREN, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4689), 1, + anon_sym_COMMA, + STATE(2568), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 2, + [72705] = 5, + ACTIONS(2703), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3474), 2, - anon_sym_COLON, + ACTIONS(4822), 1, + anon_sym_GT, + ACTIONS(4824), 1, + anon_sym_COMMA, + STATE(2471), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [72722] = 3, + ACTIONS(4719), 1, anon_sym_PIPE, - ACTIONS(3896), 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4826), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [56126] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3899), 1, - anon_sym_SEMI, - ACTIONS(3901), 1, - anon_sym_DASH_GT, - STATE(952), 1, - sym_block, - STATE(2018), 1, - sym_where_clause, + [72735] = 4, + ACTIONS(4828), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56149] = 7, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(322), 1, - sym_declaration_list, - STATE(1774), 1, - sym_trait_bounds, - STATE(2198), 1, - sym_where_clause, + ACTIONS(4826), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [72750] = 3, + ACTIONS(4831), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56172] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3903), 1, - anon_sym_SEMI, - STATE(782), 1, - sym_block, - STATE(1955), 1, - sym_where_clause, + ACTIONS(4110), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72763] = 3, + ACTIONS(4833), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56195] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(808), 1, - sym_enum_variant_list, - STATE(1719), 1, - sym_type_parameters, - STATE(2205), 1, - sym_where_clause, + ACTIONS(4110), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72776] = 3, + ACTIONS(4835), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56218] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3905), 1, - anon_sym_SEMI, - ACTIONS(3907), 1, - anon_sym_DASH_GT, - STATE(400), 1, - sym_block, - STATE(1868), 1, - sym_where_clause, + ACTIONS(4110), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72789] = 3, + ACTIONS(4837), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56241] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(275), 1, - sym_enum_variant_list, - STATE(1712), 1, - sym_type_parameters, - STATE(2054), 1, - sym_where_clause, + ACTIONS(4104), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72802] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56264] = 5, - ACTIONS(3913), 1, + ACTIONS(4839), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [72815] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4841), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [72828] = 5, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4330), 1, anon_sym_COLON, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, + STATE(1678), 1, + sym_type_arguments, + STATE(2371), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3911), 2, + [72845] = 5, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4734), 1, anon_sym_RPAREN, + ACTIONS(4736), 1, anon_sym_COMMA, - [56283] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3917), 1, - anon_sym_SEMI, - ACTIONS(3919), 1, - anon_sym_DASH_GT, - STATE(849), 1, - sym_block, - STATE(1970), 1, - sym_where_clause, + STATE(2466), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56306] = 4, - ACTIONS(3915), 1, + [72862] = 3, + ACTIONS(4831), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4128), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72875] = 3, + ACTIONS(4833), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4128), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72888] = 3, + ACTIONS(4835), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4128), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72901] = 3, + ACTIONS(4837), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, + ACTIONS(4124), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72914] = 5, + ACTIONS(1302), 1, anon_sym_RPAREN, + ACTIONS(4503), 1, anon_sym_PLUS, + ACTIONS(4772), 1, anon_sym_COMMA, - [56323] = 4, - ACTIONS(3896), 1, - anon_sym_RBRACK, + STATE(2289), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 2, + [72931] = 4, + ACTIONS(4845), 1, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2530), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [56340] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3921), 1, - anon_sym_SEMI, - ACTIONS(3923), 1, - anon_sym_DASH_GT, - STATE(909), 1, - sym_block, - STATE(1998), 1, - sym_where_clause, + STATE(2182), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56363] = 7, - ACTIONS(3586), 1, + ACTIONS(4843), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [72946] = 5, + ACTIONS(4206), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(266), 1, + STATE(1003), 1, sym_field_declaration_list, - STATE(1744), 1, - sym_type_parameters, - STATE(2139), 1, + STATE(2629), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56386] = 7, - ACTIONS(3588), 1, + [72963] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2906), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [72974] = 5, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(4625), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3925), 1, - anon_sym_SEMI, - STATE(757), 1, - sym_block, - STATE(1950), 1, + STATE(985), 1, + sym_enum_variant_list, + STATE(2646), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56409] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, + [72991] = 5, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3927), 1, - anon_sym_SEMI, - ACTIONS(3929), 1, - anon_sym_DASH_GT, - STATE(325), 1, - sym_block, - STATE(1945), 1, + ACTIONS(4210), 1, + anon_sym_where, + STATE(977), 1, + sym_declaration_list, + STATE(2655), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56432] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, + [73008] = 5, + ACTIONS(1308), 1, + anon_sym_RPAREN, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(3931), 1, - anon_sym_SEMI, - STATE(448), 1, - sym_block, - STATE(1915), 1, - sym_where_clause, + ACTIONS(4744), 1, + anon_sym_COMMA, + STATE(2454), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56455] = 7, - ACTIONS(3578), 1, + [73025] = 5, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(833), 1, + STATE(919), 1, sym_declaration_list, - STATE(1704), 1, - sym_trait_bounds, - STATE(2142), 1, + STATE(2662), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56478] = 7, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3681), 1, + [73042] = 4, + ACTIONS(4330), 1, anon_sym_COLON, - STATE(268), 1, - sym_declaration_list, - STATE(1742), 1, + STATE(2531), 1, sym_trait_bounds, - STATE(2146), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56501] = 7, - ACTIONS(3586), 1, + ACTIONS(4847), 2, + anon_sym_GT, + anon_sym_COMMA, + [73057] = 4, + ACTIONS(4850), 1, + anon_sym_DQUOTE, + STATE(2179), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4852), 2, + sym__string_content, + sym_escape_sequence, + [73072] = 5, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4738), 1, + anon_sym_RPAREN, + ACTIONS(4740), 1, + anon_sym_COMMA, + STATE(2487), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [73089] = 5, + ACTIONS(4854), 1, + anon_sym_LPAREN, + ACTIONS(4856), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(384), 1, - sym_field_declaration_list, - STATE(1772), 1, - sym_type_parameters, - STATE(2203), 1, - sym_where_clause, + ACTIONS(4858), 1, + anon_sym_LBRACK, + STATE(910), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56524] = 4, - ACTIONS(3933), 1, - anon_sym_COLON_COLON, + [73106] = 4, + ACTIONS(4860), 1, + anon_sym_DQUOTE, + STATE(2212), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [56541] = 7, - ACTIONS(2247), 1, + ACTIONS(4810), 2, + sym__string_content, + sym_escape_sequence, + [73121] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(4862), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4866), 1, + sym_line_comment, + ACTIONS(4864), 3, anon_sym_PLUS, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3935), 1, + anon_sym_STAR, + anon_sym_QMARK, + [73136] = 5, + ACTIONS(4854), 1, + anon_sym_LPAREN, + ACTIONS(4856), 1, + anon_sym_LBRACE, + ACTIONS(4858), 1, + anon_sym_LBRACK, + STATE(909), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [73153] = 4, + ACTIONS(4868), 1, anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - STATE(1890), 1, - sym_trait_bounds, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + STATE(2256), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56564] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3939), 1, + ACTIONS(3127), 2, anon_sym_SEMI, - STATE(748), 1, - sym_block, - STATE(1949), 1, - sym_where_clause, - ACTIONS(3), 2, + anon_sym_LBRACE, + [73168] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(4866), 1, sym_line_comment, - [56587] = 5, - ACTIONS(3913), 1, + ACTIONS(4870), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4872), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [73183] = 4, + ACTIONS(4330), 1, anon_sym_COLON, - ACTIONS(3941), 1, - anon_sym_COLON_COLON, + STATE(2531), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3911), 2, - anon_sym_RPAREN, + ACTIONS(4874), 2, + anon_sym_GT, anon_sym_COMMA, - [56606] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, + [73198] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(3943), 1, - anon_sym_SEMI, - STATE(814), 1, - sym_block, - STATE(1960), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56629] = 4, + ACTIONS(4876), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [73211] = 5, + ACTIONS(2703), 1, + anon_sym_PLUS, + ACTIONS(4878), 1, + anon_sym_GT, + ACTIONS(4880), 1, + anon_sym_COMMA, + STATE(2491), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 2, + [73228] = 5, + ACTIONS(4503), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3398), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3887), 2, + ACTIONS(4703), 1, anon_sym_RPAREN, + ACTIONS(4705), 1, anon_sym_COMMA, - [56646] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(3945), 1, - anon_sym_SEMI, - STATE(881), 1, - sym_block, - STATE(1975), 1, - sym_where_clause, + STATE(2504), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56669] = 7, - ACTIONS(3330), 1, - anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3947), 1, - anon_sym_COMMA, - ACTIONS(3949), 1, + [73245] = 5, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4878), 1, anon_sym_GT, - STATE(1894), 1, - sym_trait_bounds, - STATE(2007), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4880), 1, + anon_sym_COMMA, + STATE(2491), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56692] = 7, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3951), 1, - anon_sym_SEMI, - ACTIONS(3953), 1, - anon_sym_EQ, - STATE(2338), 1, - sym_type_parameters, - STATE(2339), 1, - sym_trait_bounds, + [73262] = 5, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(4882), 1, + anon_sym_RPAREN, + ACTIONS(4884), 1, + anon_sym_COMMA, + STATE(2284), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56715] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_enum_variant_list, - STATE(1756), 1, - sym_type_parameters, - STATE(2128), 1, - sym_where_clause, - ACTIONS(3), 2, + [73279] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(4866), 1, sym_line_comment, - [56738] = 3, + ACTIONS(4886), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4888), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [73294] = 4, + ACTIONS(4890), 1, + anon_sym_DQUOTE, + STATE(2198), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3398), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2564), 4, - anon_sym_RPAREN, + ACTIONS(4892), 2, + sym__string_content, + sym_escape_sequence, + [73309] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(4866), 1, + sym_line_comment, + ACTIONS(4894), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4896), 3, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56753] = 6, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, + anon_sym_STAR, + anon_sym_QMARK, + [73324] = 5, + ACTIONS(2703), 1, + anon_sym_PLUS, + ACTIONS(4898), 1, anon_sym_GT, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4900), 1, + anon_sym_COMMA, + STATE(2497), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 2, + [73341] = 5, + ACTIONS(4503), 1, anon_sym_PLUS, - anon_sym_as, - [56774] = 6, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - ACTIONS(3665), 1, - sym_identifier, - ACTIONS(3671), 1, - anon_sym_ref, - ACTIONS(3673), 1, - sym_mutable_specifier, + ACTIONS(4898), 1, + anon_sym_GT, + ACTIONS(4900), 1, + anon_sym_COMMA, + STATE(2497), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2066), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56795] = 4, - ACTIONS(3941), 1, - anon_sym_COLON_COLON, + [73358] = 5, + ACTIONS(4715), 1, + anon_sym_RPAREN, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(4721), 1, + anon_sym_COMMA, + STATE(2498), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2394), 3, + [73375] = 5, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(4902), 1, anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4904), 1, anon_sym_COMMA, - [56812] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(3594), 1, + STATE(2493), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [73392] = 5, + ACTIONS(4906), 1, + anon_sym_LPAREN, + ACTIONS(4908), 1, anon_sym_LBRACE, - STATE(858), 1, - sym_field_declaration_list, - STATE(1702), 1, - sym_type_parameters, - STATE(2151), 1, - sym_where_clause, + ACTIONS(4910), 1, + anon_sym_LBRACK, + STATE(1421), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56835] = 3, + [73409] = 4, + ACTIONS(4912), 1, + anon_sym_DQUOTE, + STATE(2212), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2530), 4, - anon_sym_RPAREN, + ACTIONS(4810), 2, + sym__string_content, + sym_escape_sequence, + [73424] = 5, + ACTIONS(4906), 1, + anon_sym_LPAREN, + ACTIONS(4908), 1, + anon_sym_LBRACE, + ACTIONS(4910), 1, + anon_sym_LBRACK, + STATE(1412), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [73441] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4914), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_DASH_GT, - [56850] = 7, - ACTIONS(3588), 1, + [73454] = 5, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3845), 1, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3955), 1, - anon_sym_SEMI, - ACTIONS(3957), 1, - anon_sym_DASH_GT, - STATE(294), 1, - sym_block, - STATE(1861), 1, + STATE(530), 1, + sym_declaration_list, + STATE(2688), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56873] = 7, - ACTIONS(3330), 1, - anon_sym_EQ, - ACTIONS(3332), 1, - anon_sym_COMMA, - ACTIONS(3334), 1, - anon_sym_GT, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1893), 1, - aux_sym_type_parameters_repeat1, - STATE(1894), 1, - sym_trait_bounds, + [73471] = 4, + ACTIONS(4916), 1, + anon_sym_DQUOTE, + STATE(2203), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4918), 2, + sym__string_content, + sym_escape_sequence, + [73486] = 4, + ACTIONS(4920), 1, + anon_sym_DQUOTE, + STATE(2212), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4810), 2, + sym__string_content, + sym_escape_sequence, + [73501] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56896] = 7, - ACTIONS(3578), 1, + ACTIONS(2918), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [73512] = 5, + ACTIONS(4206), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(904), 1, - sym_declaration_list, - STATE(1776), 1, - sym_trait_bounds, - STATE(2096), 1, + STATE(965), 1, + sym_field_declaration_list, + STATE(2705), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56919] = 7, - ACTIONS(3590), 1, + [73529] = 5, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(4208), 1, anon_sym_LT, - ACTIONS(3681), 1, + STATE(2029), 1, + sym_parameters, + STATE(2617), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [73546] = 5, + ACTIONS(4330), 1, anon_sym_COLON, - ACTIONS(3959), 1, + ACTIONS(4922), 1, anon_sym_SEMI, - ACTIONS(3961), 1, + ACTIONS(4924), 1, anon_sym_EQ, - STATE(2380), 1, + STATE(2956), 1, sym_trait_bounds, - STATE(2436), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56942] = 7, - ACTIONS(3681), 1, + [73563] = 4, + ACTIONS(4038), 1, + anon_sym_COLON_COLON, + ACTIONS(4040), 1, anon_sym_COLON, - ACTIONS(3963), 1, - anon_sym_COMMA, - ACTIONS(3965), 1, - anon_sym_GT, - STATE(1879), 1, - aux_sym_for_lifetimes_repeat1, - STATE(1890), 1, - sym_trait_bounds, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56965] = 7, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3967), 1, - anon_sym_SEMI, - ACTIONS(3969), 1, - anon_sym_DASH_GT, - STATE(901), 1, - sym_block, - STATE(1983), 1, - sym_where_clause, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [73578] = 4, + ACTIONS(2597), 1, + anon_sym_POUND, + ACTIONS(4926), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56988] = 5, - ACTIONS(3380), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3478), 1, + STATE(1141), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [73593] = 4, + ACTIONS(4518), 1, anon_sym_COLON_COLON, + ACTIONS(4653), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [57006] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3971), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57018] = 6, - ACTIONS(3578), 1, + [73608] = 5, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(923), 1, + STATE(970), 1, sym_declaration_list, - STATE(2076), 1, + STATE(2718), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57038] = 2, + [73625] = 4, + ACTIONS(4928), 1, + anon_sym_DQUOTE, + STATE(2212), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3973), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4930), 2, + sym__string_content, + sym_escape_sequence, + [73640] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3893), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4933), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57050] = 2, + [73653] = 5, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(4208), 1, + anon_sym_LT, + STATE(2001), 1, + sym_parameters, + STATE(2760), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3975), 5, + [73670] = 5, + ACTIONS(4160), 1, + anon_sym_PIPE, + ACTIONS(4935), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + ACTIONS(4937), 1, + anon_sym_COLON, + ACTIONS(4939), 1, anon_sym_EQ, - anon_sym_COMMA, - [57062] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(873), 1, - sym_declaration_list, - STATE(2126), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57082] = 4, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, + [73687] = 5, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(4524), 1, + sym_identifier, + ACTIONS(4526), 1, + anon_sym_STAR, + STATE(2565), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3977), 2, - anon_sym_RPAREN, + [73704] = 5, + ACTIONS(4754), 1, + anon_sym_GT, + ACTIONS(4756), 1, anon_sym_COMMA, - [57098] = 2, + ACTIONS(4941), 1, + anon_sym_EQ, + STATE(2434), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3979), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [73721] = 5, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57110] = 4, - ACTIONS(3981), 1, - anon_sym_RBRACK, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(439), 1, + sym_declaration_list, + STATE(2679), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3390), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [57126] = 2, + [73738] = 5, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(4625), 1, + anon_sym_LBRACE, + STATE(999), 1, + sym_enum_variant_list, + STATE(2740), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3984), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57138] = 5, - ACTIONS(3986), 1, - anon_sym_RPAREN, - ACTIONS(3989), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_parameters_repeat1, + [73755] = 3, + ACTIONS(4943), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57156] = 2, + ACTIONS(4945), 3, + sym_self, + sym_super, + sym_crate, + [73768] = 5, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_STAR, + STATE(2569), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3992), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [73785] = 5, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57168] = 4, - ACTIONS(3996), 1, - anon_sym_as, - ACTIONS(3998), 1, - anon_sym_COLON_COLON, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(523), 1, + sym_declaration_list, + STATE(2613), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [73802] = 5, + ACTIONS(2864), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LT2, + STATE(1175), 1, + sym_parameters, + STATE(1678), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3994), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [73819] = 5, + ACTIONS(4717), 1, + anon_sym_COLON, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4953), 1, anon_sym_COMMA, - [57184] = 2, + STATE(2292), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4000), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [73836] = 5, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57196] = 2, + ACTIONS(4226), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_field_declaration_list, + STATE(2593), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4002), 5, + [73853] = 5, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4955), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + ACTIONS(4957), 1, anon_sym_EQ, - anon_sym_COMMA, - [57208] = 2, + STATE(3075), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4004), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [73870] = 5, + ACTIONS(4210), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57220] = 6, - ACTIONS(3564), 1, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(375), 1, + STATE(640), 1, sym_declaration_list, - STATE(2053), 1, + STATE(2599), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57240] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, + [73887] = 5, + ACTIONS(4503), 1, anon_sym_PLUS, - STATE(373), 1, - sym_declaration_list, - STATE(2042), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57260] = 5, - ACTIONS(4006), 1, + ACTIONS(4959), 1, anon_sym_RPAREN, - ACTIONS(4008), 1, + ACTIONS(4961), 1, anon_sym_COMMA, - STATE(1854), 1, - aux_sym_parameters_repeat1, + STATE(2405), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57278] = 2, + [73904] = 4, + ACTIONS(4042), 1, + anon_sym_BANG, + ACTIONS(4064), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4010), 5, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [73919] = 5, + ACTIONS(4160), 1, + anon_sym_PIPE, + ACTIONS(4963), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + ACTIONS(4965), 1, + anon_sym_COLON, + ACTIONS(4967), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [73936] = 5, + ACTIONS(4520), 1, + anon_sym_GT, + ACTIONS(4522), 1, anon_sym_COMMA, - [57290] = 2, + ACTIONS(4941), 1, + anon_sym_EQ, + STATE(2519), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 5, + [73953] = 5, + ACTIONS(3885), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [57302] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3733), 1, - anon_sym_for, + ACTIONS(4208), 1, + anon_sym_LT, + STATE(2064), 1, + sym_parameters, + STATE(2742), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + [73970] = 5, + ACTIONS(4210), 1, anon_sym_where, - [57318] = 6, - ACTIONS(3564), 1, + ACTIONS(4589), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(256), 1, - sym_declaration_list, - STATE(2127), 1, + STATE(635), 1, + sym_enum_variant_list, + STATE(2673), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57338] = 4, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, + [73987] = 5, + ACTIONS(4637), 1, + anon_sym_LPAREN, + ACTIONS(4969), 1, + anon_sym_RBRACK, + ACTIONS(4971), 1, + anon_sym_EQ, + STATE(2969), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3863), 2, + [74004] = 5, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_LBRACE, + ACTIONS(4977), 1, + anon_sym_LBRACK, + STATE(289), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [74021] = 5, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(4208), 1, + anon_sym_LT, + STATE(1986), 1, + sym_parameters, + STATE(2757), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [74038] = 4, + ACTIONS(4979), 1, + anon_sym_DQUOTE, + STATE(2249), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4981), 2, + sym__string_content, + sym_escape_sequence, + [74053] = 5, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(4983), 1, anon_sym_RPAREN, + ACTIONS(4985), 1, anon_sym_COMMA, - [57354] = 6, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, + STATE(2392), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [74070] = 5, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(3328), 1, - anon_sym_COLON, - STATE(1285), 1, + STATE(1678), 1, sym_type_arguments, - STATE(1852), 1, - sym_trait_bounds, + STATE(1699), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57374] = 4, - ACTIONS(2880), 1, - anon_sym_PLUS, + [74087] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3390), 2, + ACTIONS(3893), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3981), 2, + ACTIONS(4987), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57390] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, + [74100] = 5, + ACTIONS(4503), 1, anon_sym_PLUS, - STATE(911), 1, - sym_declaration_list, - STATE(2093), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57410] = 6, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(4012), 1, + ACTIONS(4989), 1, + anon_sym_RPAREN, + ACTIONS(4991), 1, anon_sym_COMMA, - ACTIONS(4014), 1, - anon_sym_GT, - STATE(1890), 1, - sym_trait_bounds, - STATE(2009), 1, - aux_sym_type_parameters_repeat1, + STATE(2441), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57430] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(300), 1, - sym_declaration_list, - STATE(2220), 1, - sym_where_clause, + [74117] = 5, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(4993), 1, + anon_sym_SEMI, + ACTIONS(4995), 1, + anon_sym_COLON, + ACTIONS(4997), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57450] = 5, - ACTIONS(3330), 1, - anon_sym_EQ, - ACTIONS(3681), 1, + [74134] = 3, + ACTIONS(4999), 1, anon_sym_COLON, - STATE(1894), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4016), 2, + ACTIONS(4160), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_GT, - [57468] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(315), 1, - sym_declaration_list, - STATE(2206), 1, - sym_where_clause, + [74147] = 4, + ACTIONS(4516), 1, + anon_sym_COLON, + ACTIONS(4518), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57488] = 6, - ACTIONS(3578), 1, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [74162] = 5, + ACTIONS(4409), 1, + anon_sym_LPAREN, + ACTIONS(4411), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(827), 1, - sym_declaration_list, - STATE(2170), 1, - sym_where_clause, + ACTIONS(4413), 1, + anon_sym_LBRACK, + STATE(1263), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57508] = 6, - ACTIONS(3681), 1, - anon_sym_COLON, - ACTIONS(3935), 1, + [74179] = 5, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5001), 1, + anon_sym_RPAREN, + ACTIONS(5003), 1, anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - STATE(1890), 1, - sym_trait_bounds, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + STATE(2379), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57528] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3697), 1, - anon_sym_for, + [74196] = 3, + ACTIONS(5005), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57544] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4018), 1, - anon_sym_if, + ACTIONS(5007), 3, + sym_self, + sym_super, + sym_crate, + [74209] = 4, + ACTIONS(4038), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(43), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [57560] = 2, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [74224] = 4, + ACTIONS(5011), 1, + anon_sym_DQUOTE, + STATE(2212), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4020), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4810), 2, + sym__string_content, + sym_escape_sequence, + [74239] = 5, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5013), 1, + anon_sym_RBRACK, + ACTIONS(5015), 1, anon_sym_COMMA, - [57572] = 4, - ACTIONS(3996), 1, - anon_sym_as, - ACTIONS(4022), 1, - anon_sym_COLON_COLON, + STATE(2383), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3994), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [57588] = 5, - ACTIONS(772), 1, + [74256] = 5, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5017), 1, anon_sym_RPAREN, - ACTIONS(4024), 1, + ACTIONS(5019), 1, anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, + STATE(2382), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57606] = 5, - ACTIONS(4026), 1, - anon_sym_RPAREN, - ACTIONS(4028), 1, - anon_sym_COMMA, - STATE(2022), 1, - aux_sym_parameters_repeat1, + [74273] = 5, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(4208), 1, + anon_sym_LT, + STATE(2036), 1, + sym_parameters, + STATE(2729), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, + [74290] = 5, + ACTIONS(4719), 1, anon_sym_PIPE, - [57624] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3685), 1, - anon_sym_for, + ACTIONS(5021), 1, + anon_sym_SEMI, + ACTIONS(5023), 1, + anon_sym_COLON, + ACTIONS(5025), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57640] = 6, - ACTIONS(3564), 1, + [74307] = 5, + ACTIONS(4409), 1, + anon_sym_LPAREN, + ACTIONS(4411), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(423), 1, - sym_declaration_list, - STATE(2105), 1, - sym_where_clause, + ACTIONS(4413), 1, + anon_sym_LBRACK, + STATE(1276), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57660] = 6, - ACTIONS(3564), 1, + [74324] = 5, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(299), 1, - sym_declaration_list, - STATE(2243), 1, - sym_where_clause, + ACTIONS(4977), 1, + anon_sym_LBRACK, + STATE(283), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57680] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(790), 1, - sym_declaration_list, - STATE(2154), 1, - sym_where_clause, + [74341] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + STATE(2256), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57700] = 6, - ACTIONS(3564), 1, + ACTIONS(5027), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(347), 1, - sym_declaration_list, - STATE(2120), 1, - sym_where_clause, + [74356] = 4, + ACTIONS(5032), 1, + anon_sym_DQUOTE, + STATE(2212), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57720] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(426), 1, - sym_declaration_list, - STATE(2123), 1, - sym_where_clause, + ACTIONS(4810), 2, + sym__string_content, + sym_escape_sequence, + [74371] = 4, + ACTIONS(4108), 1, + anon_sym_COLON_COLON, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(5034), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57740] = 5, - ACTIONS(3380), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3384), 1, - anon_sym_COLON_COLON, + [74385] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57758] = 6, - ACTIONS(3578), 1, + ACTIONS(5036), 2, + anon_sym_GT, + anon_sym_COMMA, + [74397] = 4, + ACTIONS(4501), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(789), 1, - sym_declaration_list, - STATE(2155), 1, - sym_where_clause, + ACTIONS(5038), 1, + anon_sym_SEMI, + STATE(466), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57778] = 4, - ACTIONS(644), 1, + [74411] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(4094), 1, anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_if, + STATE(1678), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(217), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [57794] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, + [74425] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, - STATE(931), 1, - sym_declaration_list, - STATE(2081), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57814] = 4, - ACTIONS(4034), 1, - anon_sym_as, - ACTIONS(4036), 1, - anon_sym_COLON_COLON, + ACTIONS(5040), 2, + anon_sym_GT, + anon_sym_COMMA, + [74437] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4032), 3, + ACTIONS(5027), 3, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_COMMA, - [57830] = 4, - ACTIONS(3312), 1, + [74447] = 3, + ACTIONS(5042), 1, anon_sym_COLON_COLON, - ACTIONS(3731), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57846] = 6, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, + ACTIONS(4028), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [74459] = 4, + ACTIONS(2872), 1, anon_sym_LT2, - STATE(925), 1, - sym_parameters, - STATE(1285), 1, + ACTIONS(5044), 1, + sym_identifier, + STATE(1155), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57866] = 3, + [74473] = 4, + ACTIONS(5046), 1, + sym_identifier, + ACTIONS(5048), 1, + anon_sym_ref, + ACTIONS(5050), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3390), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2880), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57880] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3679), 1, - anon_sym_for, + [74487] = 4, + ACTIONS(5052), 1, + sym_identifier, + ACTIONS(5054), 1, + anon_sym_await, + ACTIONS(5056), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57896] = 2, + [74501] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4038), 5, + ACTIONS(5058), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [57908] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(420), 1, - sym_declaration_list, - STATE(2232), 1, - sym_where_clause, + [74511] = 4, + ACTIONS(4192), 1, + anon_sym_RBRACE, + ACTIONS(5060), 1, + anon_sym_COMMA, + STATE(2272), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57928] = 4, - ACTIONS(3312), 1, + [74525] = 3, + ACTIONS(4571), 1, anon_sym_COLON_COLON, - ACTIONS(3677), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57944] = 2, + ACTIONS(4569), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [74537] = 3, + ACTIONS(5064), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4040), 5, - anon_sym_SEMI, + ACTIONS(5062), 2, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [57956] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(857), 1, - sym_declaration_list, - STATE(2037), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57976] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4042), 5, - anon_sym_SEMI, + [74549] = 4, + ACTIONS(5066), 1, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(5068), 1, anon_sym_COMMA, - [57988] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(4044), 1, - anon_sym_if, + STATE(2272), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(979), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58004] = 4, - ACTIONS(3312), 1, + [74563] = 3, + ACTIONS(4663), 1, anon_sym_COLON_COLON, - ACTIONS(3675), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58020] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(302), 1, - sym_declaration_list, - STATE(2224), 1, - sym_where_clause, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [74575] = 4, + ACTIONS(2872), 1, + anon_sym_LT2, + ACTIONS(5044), 1, + sym_identifier, + STATE(1178), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58040] = 6, - ACTIONS(3578), 1, + [74589] = 4, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(944), 1, + ACTIONS(5071), 1, + anon_sym_SEMI, + STATE(1030), 1, sym_declaration_list, - STATE(2040), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58060] = 6, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_COLON_COLON, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1285), 1, - sym_type_arguments, - STATE(1301), 1, - sym_parameters, + [74603] = 4, + ACTIONS(3503), 1, + anon_sym_RPAREN, + ACTIONS(5073), 1, + anon_sym_COMMA, + STATE(2356), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58080] = 4, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3655), 1, + [74617] = 4, + ACTIONS(5075), 1, anon_sym_for, + ACTIONS(5077), 1, + anon_sym_loop, + ACTIONS(5079), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2394), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58096] = 6, - ACTIONS(3578), 1, + [74631] = 4, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(860), 1, + ACTIONS(5081), 1, + anon_sym_SEMI, + STATE(470), 1, sym_declaration_list, - STATE(2132), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58116] = 4, - ACTIONS(3996), 1, - anon_sym_as, - ACTIONS(4046), 1, - anon_sym_COLON_COLON, + [74645] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3994), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5083), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [74655] = 4, + ACTIONS(5085), 1, + anon_sym_GT, + ACTIONS(5087), 1, anon_sym_COMMA, - [58132] = 6, - ACTIONS(3578), 1, + STATE(2280), 1, + aux_sym_for_lifetimes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [74669] = 4, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(874), 1, + ACTIONS(5090), 1, + anon_sym_SEMI, + STATE(472), 1, sym_declaration_list, - STATE(2125), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58152] = 4, - ACTIONS(3941), 1, - anon_sym_COLON_COLON, + [74683] = 4, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(5092), 1, + anon_sym_GT, + STATE(2739), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3977), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58168] = 5, - ACTIONS(778), 1, - anon_sym_RPAREN, - ACTIONS(4048), 1, - anon_sym_COMMA, - STATE(2011), 1, - aux_sym_parameters_repeat1, + [74697] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5094), 1, + anon_sym_SEMI, + ACTIONS(5096), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58186] = 6, - ACTIONS(4050), 1, + [74711] = 4, + ACTIONS(5098), 1, anon_sym_RPAREN, - ACTIONS(4052), 1, - anon_sym_COLON, - ACTIONS(4054), 1, + ACTIONS(5100), 1, anon_sym_COMMA, - ACTIONS(4056), 1, - anon_sym_PIPE, - STATE(1867), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2286), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58206] = 6, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, + [74725] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, - STATE(938), 1, - sym_declaration_list, - STATE(2078), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58226] = 4, - ACTIONS(3941), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3863), 2, + ACTIONS(5102), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58242] = 6, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(418), 1, - sym_declaration_list, - STATE(2235), 1, - sym_where_clause, + [74737] = 4, + ACTIONS(5104), 1, + anon_sym_RPAREN, + ACTIONS(5106), 1, + anon_sym_COMMA, + STATE(2286), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58262] = 5, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, + [74751] = 4, + ACTIONS(2872), 1, anon_sym_LT2, - STATE(928), 1, - sym_parameters, - STATE(1276), 1, + ACTIONS(5109), 1, + sym_identifier, + STATE(1371), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58279] = 4, - ACTIONS(4060), 1, - anon_sym_COMMA, - STATE(1693), 1, - aux_sym_tuple_pattern_repeat1, + [74765] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4058), 2, + ACTIONS(5111), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [74777] = 4, + ACTIONS(1318), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [58294] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_LT2, - STATE(1276), 1, - sym_type_arguments, - STATE(1309), 1, - sym_parameters, + ACTIONS(5113), 1, + anon_sym_COMMA, + STATE(2293), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58311] = 4, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, - ACTIONS(4063), 1, - anon_sym_COLON, + [74791] = 4, + ACTIONS(5115), 1, + anon_sym_for, + ACTIONS(5117), 1, + anon_sym_loop, + ACTIONS(5119), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58326] = 5, - ACTIONS(4065), 1, - anon_sym_LPAREN, - ACTIONS(4067), 1, - anon_sym_LBRACE, - ACTIONS(4069), 1, - anon_sym_LBRACK, - STATE(46), 1, - sym_token_tree, + [74805] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5121), 1, + sym_identifier, + STATE(2900), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58343] = 5, - ACTIONS(778), 1, - anon_sym_RPAREN, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4048), 1, + [74819] = 4, + ACTIONS(4953), 1, anon_sym_COMMA, - STATE(2011), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58360] = 3, - ACTIONS(4056), 1, + ACTIONS(5123), 1, anon_sym_PIPE, + STATE(2422), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4058), 3, + [74833] = 4, + ACTIONS(4987), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5125), 1, anon_sym_COMMA, - [58373] = 5, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(939), 1, - sym_declaration_list, - STATE(2059), 1, - sym_where_clause, + STATE(2293), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58390] = 5, - ACTIONS(3402), 1, - anon_sym_PIPE, - ACTIONS(4071), 1, - anon_sym_SEMI, - ACTIONS(4073), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_EQ, + [74847] = 4, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5130), 1, + anon_sym_await, + ACTIONS(5132), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58407] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(459), 1, - sym_declaration_list, - STATE(2167), 1, - sym_where_clause, + [74861] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58424] = 5, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_field_declaration_list, - STATE(2231), 1, - sym_where_clause, + ACTIONS(4987), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [74873] = 4, + ACTIONS(2872), 1, + anon_sym_LT2, + ACTIONS(5109), 1, + sym_identifier, + STATE(1393), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58441] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1616), 1, - sym_parameters, - STATE(2185), 1, - sym_type_parameters, + [74887] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5121), 1, + sym_identifier, + STATE(2917), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58458] = 5, - ACTIONS(3578), 1, + [74901] = 4, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(777), 1, + ACTIONS(5134), 1, + anon_sym_SEMI, + STATE(625), 1, sym_declaration_list, - STATE(2160), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58475] = 4, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, - ACTIONS(3739), 1, - anon_sym_BANG, + [74915] = 4, + ACTIONS(1104), 1, + anon_sym_LBRACE, + ACTIONS(5136), 1, + anon_sym_move, + STATE(401), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58490] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1557), 1, - sym_parameters, - STATE(2043), 1, - sym_type_parameters, + [74929] = 3, + ACTIONS(3555), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58507] = 5, - ACTIONS(3157), 1, - anon_sym_LBRACE, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, - anon_sym_STAR, - STATE(1813), 1, - sym_use_list, + ACTIONS(4748), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [74941] = 4, + ACTIONS(5138), 1, + anon_sym_GT, + ACTIONS(5140), 1, + anon_sym_COMMA, + STATE(2301), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58524] = 5, - ACTIONS(3402), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, + [74955] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5143), 1, anon_sym_SEMI, - ACTIONS(4079), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_EQ, + ACTIONS(5145), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58541] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(405), 1, - sym_declaration_list, - STATE(2216), 1, - sym_where_clause, + [74969] = 3, + ACTIONS(2703), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58558] = 4, - ACTIONS(4083), 1, + ACTIONS(5138), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(1714), 1, - aux_sym_where_clause_repeat1, + [74981] = 4, + ACTIONS(1024), 1, + anon_sym_RBRACK, + ACTIONS(3519), 1, + anon_sym_COMMA, + STATE(2459), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [58573] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(269), 1, - sym_declaration_list, - STATE(2153), 1, - sym_where_clause, + [74995] = 3, + ACTIONS(4038), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58590] = 5, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_enum_variant_list, - STATE(2073), 1, - sym_where_clause, + ACTIONS(4036), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [75007] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58607] = 5, - ACTIONS(4012), 1, - anon_sym_COMMA, - ACTIONS(4014), 1, + ACTIONS(5138), 2, anon_sym_GT, - ACTIONS(4085), 1, - anon_sym_EQ, - STATE(2009), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58624] = 4, - ACTIONS(4089), 1, anon_sym_COMMA, - STATE(1714), 1, - aux_sym_where_clause_repeat1, + [75019] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4087), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [58639] = 4, - ACTIONS(4094), 1, + ACTIONS(5147), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(1710), 1, - aux_sym_where_clause_repeat1, + [75031] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4092), 2, - anon_sym_SEMI, + ACTIONS(5149), 3, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + [75041] = 4, + ACTIONS(3437), 1, anon_sym_LBRACE, - [58654] = 3, - ACTIONS(4096), 1, - anon_sym_in, + ACTIONS(5151), 1, + anon_sym_COLON_COLON, + STATE(1539), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4098), 3, - sym_self, - sym_super, - sym_crate, - [58667] = 4, - ACTIONS(3), 1, + [75055] = 4, + ACTIONS(5153), 1, + anon_sym_RBRACE, + ACTIONS(5155), 1, + anon_sym_COMMA, + STATE(2310), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(986), 1, sym_line_comment, - ACTIONS(4100), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4102), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [58682] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4104), 1, - anon_sym_RPAREN, - ACTIONS(4106), 1, + [75069] = 4, + ACTIONS(5158), 1, + anon_sym_RBRACE, + ACTIONS(5160), 1, anon_sym_COMMA, - STATE(2005), 1, - aux_sym_tuple_type_repeat1, + STATE(2311), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58699] = 5, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_enum_variant_list, - STATE(2094), 1, - sym_where_clause, + [75083] = 3, + ACTIONS(5163), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58716] = 5, - ACTIONS(3871), 1, + ACTIONS(5165), 2, + anon_sym_default, + anon_sym_union, + [75095] = 4, + ACTIONS(5167), 1, anon_sym_PLUS, - ACTIONS(4108), 1, - anon_sym_RPAREN, - ACTIONS(4110), 1, - anon_sym_COMMA, - STATE(1919), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5169), 1, + anon_sym_GT, + ACTIONS(5171), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58733] = 4, - ACTIONS(3), 1, + [75109] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(986), 1, sym_line_comment, - ACTIONS(4112), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4114), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [58748] = 4, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3384), 1, - anon_sym_COLON_COLON, + ACTIONS(5173), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [75121] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5175), 1, + sym_identifier, + STATE(2900), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58763] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4006), 1, - anon_sym_RPAREN, - ACTIONS(4008), 1, + [75135] = 4, + ACTIONS(4520), 1, + anon_sym_GT, + ACTIONS(4522), 1, anon_sym_COMMA, - STATE(1854), 1, - aux_sym_parameters_repeat1, + STATE(2519), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58780] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1558), 1, - sym_parameters, - STATE(2163), 1, - sym_type_parameters, + [75149] = 4, + ACTIONS(4170), 1, + anon_sym_RBRACE, + ACTIONS(5177), 1, + anon_sym_COMMA, + STATE(2310), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58797] = 5, - ACTIONS(3578), 1, + [75163] = 4, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(915), 1, + ACTIONS(5179), 1, + anon_sym_SEMI, + STATE(497), 1, sym_declaration_list, - STATE(2090), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58814] = 4, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, - ACTIONS(3380), 1, - anon_sym_COLON, + [75177] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5175), 1, + sym_identifier, + STATE(2917), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58829] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1587), 1, - sym_parameters, - STATE(2209), 1, - sym_type_parameters, + [75191] = 4, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(5181), 1, + anon_sym_SEMI, + STATE(499), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58846] = 5, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - ACTIONS(4085), 1, - anon_sym_EQ, - STATE(1892), 1, - aux_sym_type_parameters_repeat1, + [75205] = 4, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(5183), 1, + anon_sym_SEMI, + STATE(509), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58863] = 4, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1890), 1, - sym_trait_bounds, + [75219] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5185), 1, + anon_sym_SEMI, + ACTIONS(5187), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4116), 2, + [75233] = 4, + ACTIONS(1052), 1, + anon_sym_RBRACK, + ACTIONS(3565), 1, anon_sym_COMMA, - anon_sym_GT, - [58878] = 4, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1890), 1, - sym_trait_bounds, + STATE(2459), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4118), 2, - anon_sym_COMMA, - anon_sym_GT, - [58893] = 5, - ACTIONS(4121), 1, - anon_sym_LPAREN, - ACTIONS(4123), 1, - anon_sym_LBRACE, - ACTIONS(4125), 1, - anon_sym_LBRACK, - STATE(1974), 1, - sym_token_tree, + [75247] = 4, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(5189), 1, + anon_sym_SEMI, + STATE(3077), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58910] = 3, + [75261] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4127), 2, - anon_sym_RPAREN, + ACTIONS(5191), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [58923] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4129), 1, + [75271] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5193), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4131), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_tuple_type_repeat1, + anon_sym_RBRACE, + [75281] = 4, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(5195), 1, + anon_sym_SEMI, + STATE(514), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58940] = 4, - ACTIONS(3867), 1, + [75295] = 3, + ACTIONS(4601), 1, anon_sym_COLON_COLON, - ACTIONS(3913), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58955] = 5, - ACTIONS(4121), 1, - anon_sym_LPAREN, - ACTIONS(4123), 1, - anon_sym_LBRACE, - ACTIONS(4125), 1, - anon_sym_LBRACK, - STATE(1038), 1, - sym_token_tree, + [75307] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58972] = 4, - ACTIONS(4133), 1, - anon_sym_DQUOTE, - STATE(1749), 1, - aux_sym_string_literal_repeat1, + ACTIONS(5197), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [75317] = 4, + ACTIONS(5199), 1, + anon_sym_for, + ACTIONS(5201), 1, + anon_sym_loop, + ACTIONS(5203), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4135), 2, - sym__string_content, - sym_escape_sequence, - [58987] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1590), 1, - sym_parameters, - STATE(2118), 1, - sym_type_parameters, + [75331] = 4, + ACTIONS(5205), 1, + anon_sym_for, + ACTIONS(5207), 1, + anon_sym_loop, + ACTIONS(5209), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59004] = 4, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(4137), 1, - sym_identifier, + [75345] = 4, + ACTIONS(5211), 1, + anon_sym_RBRACE, + ACTIONS(5213), 1, + anon_sym_COMMA, + STATE(2572), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1077), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [59019] = 5, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(905), 1, - sym_declaration_list, - STATE(2095), 1, - sym_where_clause, + [75359] = 4, + ACTIONS(864), 1, + anon_sym_RPAREN, + ACTIONS(5215), 1, + anon_sym_COMMA, + STATE(2334), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59036] = 5, - ACTIONS(772), 1, + [75373] = 4, + ACTIONS(3707), 1, anon_sym_RPAREN, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4024), 1, + ACTIONS(5217), 1, anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, + STATE(2334), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59053] = 5, - ACTIONS(3205), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(1560), 1, - sym_parameters, - STATE(2147), 1, - sym_type_parameters, + [75387] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59070] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(312), 1, - sym_declaration_list, - STATE(2211), 1, - sym_where_clause, + ACTIONS(5220), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [75397] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59087] = 5, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(899), 1, - sym_enum_variant_list, - STATE(2103), 1, - sym_where_clause, + ACTIONS(4142), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [75407] = 4, + ACTIONS(4953), 1, + anon_sym_COMMA, + ACTIONS(5222), 1, + anon_sym_PIPE, + STATE(2292), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59104] = 5, - ACTIONS(3586), 1, + [75421] = 4, + ACTIONS(4501), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(336), 1, - sym_field_declaration_list, - STATE(2152), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59121] = 4, - ACTIONS(4139), 1, - anon_sym_DQUOTE, - STATE(1788), 1, - aux_sym_string_literal_repeat1, + ACTIONS(5224), 1, + anon_sym_SEMI, + STATE(531), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4141), 2, - sym__string_content, - sym_escape_sequence, - [59136] = 4, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, + [75435] = 3, + ACTIONS(5228), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59151] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(986), 1, - sym_line_comment, - ACTIONS(4143), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4145), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59166] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4147), 1, - anon_sym_RPAREN, - ACTIONS(4149), 1, + ACTIONS(5226), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [75447] = 4, + ACTIONS(4754), 1, + anon_sym_GT, + ACTIONS(4756), 1, + anon_sym_COMMA, + STATE(2434), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59183] = 4, - ACTIONS(4151), 1, - anon_sym_DQUOTE, - STATE(1749), 1, - aux_sym_string_literal_repeat1, + [75461] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4153), 2, - sym__string_content, - sym_escape_sequence, - [59198] = 5, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(772), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4158), 1, - anon_sym_COMMA, - STATE(1959), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59215] = 5, - ACTIONS(4160), 1, - anon_sym_LPAREN, - ACTIONS(4162), 1, - anon_sym_LBRACE, - ACTIONS(4164), 1, - anon_sym_LBRACK, - STATE(793), 1, - sym_token_tree, + anon_sym_RBRACE, + [75471] = 3, + ACTIONS(5230), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59232] = 5, - ACTIONS(4160), 1, - anon_sym_LPAREN, - ACTIONS(4162), 1, + ACTIONS(5232), 2, + anon_sym_default, + anon_sym_union, + [75483] = 4, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(4164), 1, - anon_sym_LBRACK, - STATE(794), 1, - sym_token_tree, + ACTIONS(5234), 1, + anon_sym_SEMI, + STATE(987), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59249] = 5, - ACTIONS(4056), 1, + [75497] = 3, + ACTIONS(4719), 1, anon_sym_PIPE, - ACTIONS(4166), 1, - anon_sym_SEMI, - ACTIONS(4168), 1, - anon_sym_COLON, - ACTIONS(4170), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59266] = 4, - ACTIONS(3), 1, + ACTIONS(5236), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [75509] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(986), 1, sym_line_comment, - ACTIONS(4172), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4174), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59281] = 5, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4176), 1, - anon_sym_RBRACK, - ACTIONS(4178), 1, + ACTIONS(5238), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(1956), 1, - aux_sym_tuple_pattern_repeat1, + [75521] = 3, + ACTIONS(3555), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59298] = 5, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(3909), 1, + ACTIONS(5240), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [75533] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5242), 1, anon_sym_LBRACE, - STATE(327), 1, - sym_enum_variant_list, - STATE(2166), 1, - sym_where_clause, + STATE(1678), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59315] = 5, - ACTIONS(3588), 1, + [75547] = 4, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_field_declaration_list, - STATE(2108), 1, + ACTIONS(5244), 1, + anon_sym_SEMI, + STATE(2812), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59332] = 5, - ACTIONS(3157), 1, - anon_sym_LBRACE, - ACTIONS(4180), 1, - sym_identifier, - ACTIONS(4182), 1, - anon_sym_STAR, - STATE(1804), 1, - sym_use_list, + [75561] = 3, + ACTIONS(4649), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59349] = 5, - ACTIONS(3564), 1, + ACTIONS(3903), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [75573] = 4, + ACTIONS(2928), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(321), 1, - sym_declaration_list, - STATE(2201), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59366] = 5, - ACTIONS(2247), 1, - anon_sym_PLUS, - ACTIONS(4184), 1, - anon_sym_COMMA, - ACTIONS(4186), 1, - anon_sym_GT, - STATE(1872), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5246), 1, + anon_sym_COLON_COLON, + STATE(1205), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59383] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4184), 1, + [75587] = 4, + ACTIONS(5248), 1, + anon_sym_RBRACE, + ACTIONS(5250), 1, anon_sym_COMMA, - ACTIONS(4186), 1, - anon_sym_GT, - STATE(1872), 1, - aux_sym_type_arguments_repeat1, + STATE(2473), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59400] = 4, - ACTIONS(3382), 1, - anon_sym_BANG, - ACTIONS(3478), 1, + [75601] = 3, + ACTIONS(4518), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, + ACTIONS(3903), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59415] = 3, - ACTIONS(4188), 1, - anon_sym_COLON, + [75613] = 4, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(5252), 1, + anon_sym_SEMI, + STATE(2990), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3402), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59428] = 5, - ACTIONS(3871), 1, + [75627] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(4026), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4933), 2, anon_sym_RPAREN, - ACTIONS(4028), 1, anon_sym_COMMA, - STATE(2022), 1, - aux_sym_parameters_repeat1, + [75639] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59445] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4190), 1, + ACTIONS(5254), 3, anon_sym_RPAREN, - ACTIONS(4192), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1901), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [75649] = 4, + ACTIONS(5256), 1, + anon_sym_RPAREN, + ACTIONS(5258), 1, + anon_sym_COMMA, + STATE(2356), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59462] = 5, - ACTIONS(3578), 1, + [75663] = 4, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(836), 1, - sym_declaration_list, - STATE(2141), 1, - sym_where_clause, + ACTIONS(5261), 1, + anon_sym_move, + STATE(1252), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59479] = 4, - ACTIONS(3865), 1, - anon_sym_COLON, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + [75677] = 4, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(5263), 1, + anon_sym_SEMI, + STATE(496), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59494] = 5, - ACTIONS(4052), 1, - anon_sym_COLON, - ACTIONS(4194), 1, - anon_sym_COMMA, - ACTIONS(4196), 1, - anon_sym_PIPE, - STATE(1898), 1, - aux_sym_closure_parameters_repeat1, + [75691] = 4, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(5265), 1, + anon_sym_SEMI, + STATE(597), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59511] = 3, + [75705] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5267), 1, + sym_identifier, + STATE(2917), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59524] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [75719] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5267), 1, + sym_identifier, + STATE(2900), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4200), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59537] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [75733] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5269), 1, + sym_identifier, + STATE(2917), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4202), 3, - anon_sym_RPAREN, + [75747] = 4, + ACTIONS(5271), 1, + anon_sym_RBRACE, + ACTIONS(5273), 1, anon_sym_COMMA, - anon_sym_PIPE, - [59550] = 5, - ACTIONS(3586), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(262), 1, - sym_field_declaration_list, - STATE(2130), 1, - sym_where_clause, + STATE(2464), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59567] = 5, - ACTIONS(3211), 1, + [75761] = 4, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1276), 1, + ACTIONS(5269), 1, + sym_identifier, + STATE(2900), 1, sym_type_arguments, - STATE(1851), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59584] = 5, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(433), 1, - sym_declaration_list, - STATE(2174), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59601] = 5, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4204), 1, + [75775] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5275), 1, anon_sym_SEMI, - ACTIONS(4206), 1, - anon_sym_COLON, - ACTIONS(4208), 1, + ACTIONS(5277), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59618] = 5, - ACTIONS(3578), 1, + [75789] = 4, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, - anon_sym_where, - STATE(854), 1, + ACTIONS(5279), 1, + anon_sym_SEMI, + STATE(956), 1, sym_declaration_list, - STATE(2136), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59635] = 5, - ACTIONS(4121), 1, - anon_sym_LPAREN, - ACTIONS(4123), 1, + [75803] = 4, + ACTIONS(4501), 1, anon_sym_LBRACE, - ACTIONS(4125), 1, - anon_sym_LBRACK, - STATE(1074), 1, - sym_token_tree, + ACTIONS(5281), 1, + anon_sym_SEMI, + STATE(426), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59652] = 5, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4210), 1, + [75817] = 4, + ACTIONS(5283), 1, + anon_sym_RBRACE, + ACTIONS(5285), 1, anon_sym_COMMA, - ACTIONS(4212), 1, - anon_sym_GT, - STATE(2013), 1, - aux_sym_type_arguments_repeat1, + STATE(2368), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59669] = 5, - ACTIONS(4214), 1, - anon_sym_LPAREN, - ACTIONS(4216), 1, + [75831] = 4, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(5288), 1, + anon_sym_EQ, + STATE(3035), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [75845] = 4, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(4218), 1, - anon_sym_LBRACK, - STATE(1345), 1, - sym_token_tree, + ACTIONS(4503), 1, + anon_sym_PLUS, + STATE(1193), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59686] = 4, - ACTIONS(4220), 1, - anon_sym_DQUOTE, - STATE(1749), 1, - aux_sym_string_literal_repeat1, + [75859] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4135), 2, - sym__string_content, - sym_escape_sequence, - [59701] = 5, - ACTIONS(4214), 1, - anon_sym_LPAREN, - ACTIONS(4216), 1, + ACTIONS(5290), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4218), 1, - anon_sym_LBRACK, - STATE(1316), 1, - sym_token_tree, + anon_sym_COMMA, + [75869] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5292), 1, + sym_identifier, + STATE(2917), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59718] = 5, - ACTIONS(2247), 1, - anon_sym_PLUS, - ACTIONS(4210), 1, + [75883] = 4, + ACTIONS(5294), 1, + anon_sym_RBRACE, + ACTIONS(5296), 1, anon_sym_COMMA, - ACTIONS(4212), 1, - anon_sym_GT, - STATE(2013), 1, - aux_sym_type_arguments_repeat1, + STATE(2373), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59735] = 3, - ACTIONS(3871), 1, + [75897] = 4, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, anon_sym_PLUS, + STATE(1463), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4222), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [75911] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5292), 1, + sym_identifier, + STATE(2900), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [75925] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1088), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - [59748] = 3, - ACTIONS(3871), 1, + anon_sym_if, + [75935] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4224), 3, + ACTIONS(5299), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [59761] = 4, - ACTIONS(4226), 1, - anon_sym_DQUOTE, - STATE(1780), 1, - aux_sym_string_literal_repeat1, + [75947] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4228), 2, - sym__string_content, - sym_escape_sequence, - [59776] = 5, - ACTIONS(4050), 1, + ACTIONS(5301), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [75957] = 4, + ACTIONS(5303), 1, anon_sym_RPAREN, - ACTIONS(4054), 1, + ACTIONS(5305), 1, anon_sym_COMMA, - ACTIONS(4056), 1, - anon_sym_PIPE, - STATE(1867), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2286), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59793] = 3, - ACTIONS(4230), 1, - anon_sym_in, + [75971] = 3, + ACTIONS(5309), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4232), 3, - sym_self, - sym_super, - sym_crate, - [59806] = 4, - ACTIONS(4234), 1, - anon_sym_DQUOTE, - STATE(1749), 1, - aux_sym_string_literal_repeat1, + ACTIONS(5307), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [75983] = 4, + ACTIONS(1062), 1, + anon_sym_RBRACK, + ACTIONS(5311), 1, + anon_sym_COMMA, + STATE(2459), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4135), 2, - sym__string_content, - sym_escape_sequence, - [59821] = 4, - ACTIONS(4236), 1, - anon_sym_DQUOTE, - STATE(1736), 1, - aux_sym_string_literal_repeat1, + [75997] = 4, + ACTIONS(2675), 1, + anon_sym_RPAREN, + ACTIONS(5313), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4238), 2, - sym__string_content, - sym_escape_sequence, - [59836] = 5, - ACTIONS(4065), 1, - anon_sym_LPAREN, - ACTIONS(4067), 1, - anon_sym_LBRACE, - ACTIONS(4069), 1, - anon_sym_LBRACK, - STATE(59), 1, - sym_token_tree, + [76011] = 4, + ACTIONS(2671), 1, + anon_sym_RBRACK, + ACTIONS(5315), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59853] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [76025] = 4, + ACTIONS(4208), 1, + anon_sym_LT, + ACTIONS(5317), 1, + anon_sym_EQ, + STATE(3040), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4240), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59865] = 4, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_GT, - STATE(2046), 1, - sym_lifetime, + [76039] = 4, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(5319), 1, + anon_sym_SEMI, + STATE(576), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59879] = 3, - ACTIONS(4244), 1, + [76053] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5321), 1, sym_identifier, + STATE(2917), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4246), 2, - anon_sym_default, - anon_sym_union, - [59891] = 4, - ACTIONS(628), 1, - anon_sym_RBRACK, - ACTIONS(2945), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59905] = 4, - ACTIONS(3173), 1, - anon_sym_RBRACE, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(1934), 1, - aux_sym_use_list_repeat1, + [76067] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5321), 1, + sym_identifier, + STATE(2900), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59919] = 2, + [76081] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4250), 3, - anon_sym_SEMI, + ACTIONS(5323), 2, anon_sym_RBRACE, anon_sym_COMMA, - [59929] = 2, + [76093] = 4, + ACTIONS(4158), 1, + anon_sym_RBRACE, + ACTIONS(5325), 1, + anon_sym_COMMA, + STATE(2317), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [59939] = 2, + [76107] = 4, + ACTIONS(1050), 1, + anon_sym_RBRACK, + ACTIONS(5327), 1, + anon_sym_COMMA, + STATE(2459), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 3, + [76121] = 4, + ACTIONS(4266), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [59949] = 2, + ACTIONS(5329), 1, + anon_sym_SEMI, + STATE(558), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4252), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [76135] = 4, + ACTIONS(2689), 1, + anon_sym_RPAREN, + ACTIONS(5331), 1, anon_sym_COMMA, - [59959] = 2, + STATE(2154), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [59969] = 4, - ACTIONS(4254), 1, - sym_identifier, - ACTIONS(4256), 1, - anon_sym_ref, - ACTIONS(4258), 1, - sym_mutable_specifier, + [76149] = 4, + ACTIONS(4158), 1, + anon_sym_RBRACE, + ACTIONS(5325), 1, + anon_sym_COMMA, + STATE(2310), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59983] = 2, + [76163] = 4, + ACTIONS(2687), 1, + anon_sym_RBRACK, + ACTIONS(5333), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 3, + [76177] = 4, + ACTIONS(4266), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [59993] = 2, + ACTIONS(5335), 1, + anon_sym_SEMI, + STATE(560), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 3, + [76191] = 4, + ACTIONS(4501), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [60003] = 2, + ACTIONS(5337), 1, + anon_sym_SEMI, + STATE(567), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4260), 3, + [76205] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5339), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [60013] = 4, - ACTIONS(4262), 1, - sym_identifier, - ACTIONS(4264), 1, - anon_sym_ref, - ACTIONS(4266), 1, - sym_mutable_specifier, + ACTIONS(5341), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60027] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4268), 1, - sym_identifier, - STATE(2364), 1, - sym_type_arguments, + [76219] = 4, + ACTIONS(5343), 1, + anon_sym_RBRACE, + ACTIONS(5345), 1, + anon_sym_COMMA, + STATE(2495), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60041] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4268), 1, - sym_identifier, - STATE(2322), 1, - sym_type_arguments, + [76233] = 4, + ACTIONS(2928), 1, + anon_sym_LBRACE, + ACTIONS(5347), 1, + anon_sym_COLON_COLON, + STATE(1205), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60055] = 2, + [76247] = 4, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(5349), 1, + anon_sym_SEMI, + STATE(575), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4270), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [76261] = 4, + ACTIONS(4898), 1, + anon_sym_GT, + ACTIONS(4900), 1, anon_sym_COMMA, - [60065] = 2, + STATE(2497), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [60075] = 2, + [76275] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 3, + ACTIONS(5351), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [60085] = 2, + [76285] = 4, + ACTIONS(5353), 1, + anon_sym_RBRACE, + ACTIONS(5355), 1, + anon_sym_COMMA, + STATE(2499), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4274), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [76299] = 4, + ACTIONS(5357), 1, + anon_sym_RPAREN, + ACTIONS(5359), 1, anon_sym_COMMA, - [60095] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4276), 1, - sym_identifier, - STATE(2322), 1, - sym_type_arguments, + STATE(2286), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60109] = 2, + [76313] = 4, + ACTIONS(2818), 1, + anon_sym_RPAREN, + ACTIONS(5361), 1, + anon_sym_COMMA, + STATE(2488), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4278), 3, + [76327] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(764), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - [60119] = 4, - ACTIONS(4280), 1, - anon_sym_for, - ACTIONS(4282), 1, - anon_sym_loop, - ACTIONS(4284), 1, - anon_sym_while, + [76337] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5363), 1, + anon_sym_SEMI, + ACTIONS(5365), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60133] = 4, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(4286), 1, - anon_sym_EQ, - STATE(2448), 1, - sym_type_parameters, + [76351] = 3, + ACTIONS(5369), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60147] = 2, + ACTIONS(5367), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [76363] = 4, + ACTIONS(5371), 1, + anon_sym_RBRACE, + ACTIONS(5373), 1, + anon_sym_COMMA, + STATE(2492), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4288), 3, + [76377] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5375), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [60157] = 4, - ACTIONS(2370), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - sym_identifier, - STATE(747), 1, - sym_type_arguments, + [76387] = 4, + ACTIONS(4703), 1, + anon_sym_RPAREN, + ACTIONS(4705), 1, + anon_sym_COMMA, + STATE(2504), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60171] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3855), 1, - sym_identifier, - STATE(2322), 1, - sym_type_arguments, + [76401] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60185] = 2, + ACTIONS(5377), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [76413] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4292), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5379), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [76425] = 4, + ACTIONS(4878), 1, + anon_sym_GT, + ACTIONS(4880), 1, anon_sym_COMMA, - [60195] = 4, - ACTIONS(3211), 1, + STATE(2491), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [76439] = 4, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(4276), 1, + ACTIONS(5381), 1, sym_identifier, - STATE(2364), 1, + STATE(2900), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60209] = 4, - ACTIONS(3211), 1, + [76453] = 4, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(3855), 1, + ACTIONS(5381), 1, sym_identifier, - STATE(2364), 1, + STATE(2917), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60223] = 4, - ACTIONS(4294), 1, - sym_identifier, - ACTIONS(4296), 1, - anon_sym_await, - ACTIONS(4298), 1, - sym_integer_literal, + [76467] = 4, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(5383), 1, + anon_sym_SEMI, + STATE(589), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60237] = 4, - ACTIONS(3871), 1, + [76481] = 4, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(4300), 1, + ACTIONS(5385), 1, anon_sym_SEMI, - ACTIONS(4302), 1, - anon_sym_RBRACK, + ACTIONS(5387), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60251] = 3, - ACTIONS(4052), 1, + [76495] = 3, + ACTIONS(4717), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4304), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [60263] = 4, - ACTIONS(4304), 1, + ACTIONS(5389), 2, anon_sym_PIPE, - ACTIONS(4306), 1, anon_sym_COMMA, - STATE(1825), 1, - aux_sym_closure_parameters_repeat1, + [76507] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5391), 1, + anon_sym_SEMI, + ACTIONS(5393), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60277] = 4, - ACTIONS(279), 1, + [76521] = 4, + ACTIONS(4266), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(1006), 1, - sym_block, + ACTIONS(5395), 1, + anon_sym_SEMI, + STATE(649), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [76535] = 4, + ACTIONS(5389), 1, + anon_sym_PIPE, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2422), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60291] = 4, - ACTIONS(3606), 1, + [76549] = 4, + ACTIONS(5400), 1, anon_sym_RBRACE, - ACTIONS(4309), 1, + ACTIONS(5402), 1, anon_sym_COMMA, - STATE(1944), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2510), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60305] = 3, - ACTIONS(4311), 1, - sym_identifier, + [76563] = 4, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(5404), 1, + anon_sym_SEMI, + STATE(615), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4313), 2, - anon_sym_default, - anon_sym_union, - [60317] = 3, - ACTIONS(4317), 1, - anon_sym_COLON, + [76577] = 4, + ACTIONS(3675), 1, + anon_sym_LBRACE, + ACTIONS(5406), 1, + sym_identifier, + STATE(2335), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4315), 2, + [76591] = 4, + ACTIONS(5408), 1, anon_sym_RBRACE, + ACTIONS(5410), 1, anon_sym_COMMA, - [60329] = 4, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, + STATE(2490), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [76605] = 4, + ACTIONS(4874), 1, anon_sym_GT, - STATE(1892), 1, + ACTIONS(5412), 1, + anon_sym_COMMA, + STATE(2427), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60343] = 3, - ACTIONS(3933), 1, - anon_sym_COLON_COLON, + [76619] = 4, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(5415), 1, + anon_sym_SEMI, + STATE(916), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60355] = 4, - ACTIONS(4319), 1, - sym_identifier, - ACTIONS(4321), 1, - anon_sym_ref, - ACTIONS(4323), 1, - sym_mutable_specifier, + [76633] = 4, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(5417), 1, + anon_sym_SEMI, + STATE(598), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60369] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4325), 1, - anon_sym_SEMI, - STATE(2373), 1, - sym_where_clause, + [76647] = 3, + ACTIONS(4941), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60383] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4327), 1, - anon_sym_SEMI, - STATE(338), 1, - sym_block, + ACTIONS(4874), 2, + anon_sym_GT, + anon_sym_COMMA, + [76659] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5419), 1, + sym_identifier, + STATE(2917), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60397] = 4, - ACTIONS(4329), 1, - anon_sym_for, - ACTIONS(4331), 1, - anon_sym_loop, - ACTIONS(4333), 1, - anon_sym_while, + [76673] = 4, + ACTIONS(4258), 1, + anon_sym_GT, + ACTIONS(5421), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60411] = 3, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, + [76687] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60423] = 4, - ACTIONS(371), 1, - anon_sym_RPAREN, - ACTIONS(2955), 1, + ACTIONS(5423), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(1965), 1, - aux_sym_arguments_repeat1, + [76699] = 4, + ACTIONS(4154), 1, + anon_sym_GT, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60437] = 4, - ACTIONS(2422), 1, + [76713] = 4, + ACTIONS(4501), 1, anon_sym_LBRACE, - ACTIONS(4335), 1, - anon_sym_COLON_COLON, - STATE(1082), 1, - sym_field_initializer_list, + ACTIONS(5427), 1, + anon_sym_SEMI, + STATE(583), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60451] = 4, - ACTIONS(4337), 1, - sym_identifier, - ACTIONS(4339), 1, - anon_sym_ref, - ACTIONS(4341), 1, - sym_mutable_specifier, + [76727] = 4, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(5429), 1, + anon_sym_SEMI, + STATE(931), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60465] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4343), 1, - anon_sym_SEMI, - STATE(2306), 1, - sym_where_clause, + [76741] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60479] = 3, - ACTIONS(3871), 1, + ACTIONS(5431), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [76751] = 4, + ACTIONS(4503), 1, anon_sym_PLUS, + ACTIONS(5433), 1, + anon_sym_SEMI, + ACTIONS(5435), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4345), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60491] = 2, + [76765] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4347), 3, + ACTIONS(5437), 3, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [60501] = 4, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(4349), 1, - anon_sym_move, - STATE(1071), 1, - sym_block, + anon_sym_COMMA, + [76775] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5419), 1, + sym_identifier, + STATE(2900), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60515] = 4, - ACTIONS(4351), 1, - anon_sym_RBRACE, - ACTIONS(4353), 1, + [76789] = 4, + ACTIONS(2806), 1, + anon_sym_RPAREN, + ACTIONS(5439), 1, anon_sym_COMMA, - STATE(1921), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2488), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60529] = 4, - ACTIONS(3845), 1, + [76803] = 4, + ACTIONS(4501), 1, anon_sym_LBRACE, - ACTIONS(4355), 1, + ACTIONS(5441), 1, anon_sym_SEMI, - STATE(343), 1, + STATE(606), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60543] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4357), 1, - anon_sym_SEMI, - ACTIONS(4359), 1, - anon_sym_EQ, + [76817] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60557] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4361), 1, - anon_sym_SEMI, - STATE(2405), 1, - sym_where_clause, + ACTIONS(5443), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [76827] = 4, + ACTIONS(4738), 1, + anon_sym_RPAREN, + ACTIONS(4740), 1, + anon_sym_COMMA, + STATE(2487), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60571] = 3, - ACTIONS(4365), 1, + [76841] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5445), 1, + anon_sym_SEMI, + ACTIONS(5447), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4363), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60583] = 4, - ACTIONS(3608), 1, - anon_sym_RBRACE, - ACTIONS(4367), 1, - anon_sym_COMMA, - STATE(1979), 1, - aux_sym_enum_variant_list_repeat2, + [76855] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60597] = 4, - ACTIONS(3608), 1, + ACTIONS(5449), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [76865] = 4, + ACTIONS(5451), 1, anon_sym_RBRACE, - ACTIONS(4367), 1, + ACTIONS(5453), 1, anon_sym_COMMA, - STATE(1985), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2527), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60611] = 2, + [76879] = 4, + ACTIONS(5455), 1, + sym_identifier, + ACTIONS(5457), 1, + anon_sym_ref, + ACTIONS(5459), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 3, + [76893] = 4, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(5461), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [60621] = 2, + STATE(3021), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4371), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [60631] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4373), 1, - anon_sym_SEMI, - STATE(350), 1, - sym_block, + [76907] = 4, + ACTIONS(2703), 1, + anon_sym_PLUS, + ACTIONS(5463), 1, + sym_mutable_specifier, + ACTIONS(5465), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60645] = 4, - ACTIONS(778), 1, - anon_sym_RPAREN, - ACTIONS(4048), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, + [76921] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60659] = 4, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4375), 1, + ACTIONS(3893), 3, anon_sym_EQ_GT, - ACTIONS(4377), 1, + anon_sym_PIPE, anon_sym_if, + [76931] = 4, + ACTIONS(5467), 1, + anon_sym_GT, + ACTIONS(5469), 1, + anon_sym_COMMA, + STATE(2477), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60673] = 2, + [76945] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4379), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60683] = 4, - ACTIONS(778), 1, + ACTIONS(4262), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76955] = 4, + ACTIONS(1316), 1, anon_sym_RPAREN, - ACTIONS(4048), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - STATE(2011), 1, + STATE(2293), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60697] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, + [76969] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5473), 1, + sym_identifier, + STATE(2900), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4381), 2, - anon_sym_RBRACE, + [76983] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4222), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76993] = 4, + ACTIONS(1308), 1, + anon_sym_RPAREN, + ACTIONS(4744), 1, anon_sym_COMMA, - [60709] = 2, + STATE(2454), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4383), 3, + [77007] = 4, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(5475), 1, anon_sym_SEMI, - anon_sym_RBRACE, + STATE(973), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [77021] = 4, + ACTIONS(3649), 1, + anon_sym_RBRACK, + ACTIONS(5477), 1, anon_sym_COMMA, - [60719] = 4, - ACTIONS(2370), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - sym_identifier, - STATE(763), 1, - sym_type_arguments, + STATE(2459), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60733] = 4, - ACTIONS(3845), 1, + [77035] = 4, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(4385), 1, + ACTIONS(5480), 1, anon_sym_SEMI, - STATE(359), 1, - sym_block, + STATE(1054), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60747] = 4, - ACTIONS(4387), 1, + [77049] = 4, + ACTIONS(4182), 1, anon_sym_RBRACE, - ACTIONS(4389), 1, + ACTIONS(5482), 1, anon_sym_COMMA, - STATE(1795), 1, - aux_sym_use_list_repeat1, + STATE(2269), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60761] = 2, + [77063] = 4, + ACTIONS(346), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, + anon_sym_PLUS, + STATE(1524), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60771] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4393), 1, - anon_sym_SEMI, - ACTIONS(4395), 1, - anon_sym_EQ, + [77077] = 4, + ACTIONS(4182), 1, + anon_sym_RBRACE, + ACTIONS(5482), 1, + anon_sym_COMMA, + STATE(2272), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60785] = 2, + [77091] = 4, + ACTIONS(4184), 1, + anon_sym_RBRACE, + ACTIONS(5484), 1, + anon_sym_COMMA, + STATE(2368), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4397), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60795] = 2, + [77105] = 3, + ACTIONS(5488), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 3, - anon_sym_SEMI, + ACTIONS(5486), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60805] = 4, - ACTIONS(2235), 1, + [77117] = 4, + ACTIONS(1308), 1, anon_sym_RPAREN, - ACTIONS(4401), 1, + ACTIONS(4744), 1, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2293), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60819] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4403), 1, - anon_sym_SEMI, - STATE(366), 1, - sym_block, + [77131] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60833] = 3, - ACTIONS(4407), 1, - anon_sym_COLON, + ACTIONS(4218), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77141] = 4, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(5490), 1, + anon_sym_SEMI, + STATE(3037), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4405), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60845] = 3, - ACTIONS(3318), 1, - anon_sym_COLON_COLON, + [77155] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5492), 1, + anon_sym_SEMI, + ACTIONS(5494), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60857] = 4, - ACTIONS(3767), 1, - anon_sym_RBRACE, - ACTIONS(4409), 1, + [77169] = 4, + ACTIONS(5496), 1, + anon_sym_RPAREN, + ACTIONS(5498), 1, anon_sym_COMMA, - STATE(2021), 1, - aux_sym_struct_pattern_repeat1, + STATE(2276), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60871] = 4, - ACTIONS(904), 1, + [77183] = 4, + ACTIONS(1460), 1, anon_sym_GT, - ACTIONS(4411), 1, + ACTIONS(5500), 1, anon_sym_COMMA, - STATE(2032), 1, + STATE(2301), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60885] = 4, - ACTIONS(4413), 1, - anon_sym_for, - ACTIONS(4415), 1, - anon_sym_loop, - ACTIONS(4417), 1, - anon_sym_while, + [77197] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60899] = 4, - ACTIONS(3779), 1, + ACTIONS(4160), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77207] = 4, + ACTIONS(4270), 1, anon_sym_RBRACE, - ACTIONS(4419), 1, + ACTIONS(5502), 1, anon_sym_COMMA, - STATE(2021), 1, - aux_sym_struct_pattern_repeat1, + STATE(2368), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60913] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [77221] = 4, + ACTIONS(5504), 1, + anon_sym_RBRACE, + ACTIONS(5506), 1, + anon_sym_COMMA, + STATE(2463), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [77235] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4421), 2, + ACTIONS(5508), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [60925] = 4, - ACTIONS(644), 1, - anon_sym_LBRACE, - ACTIONS(4423), 1, - anon_sym_move, - STATE(231), 1, - sym_block, + [77245] = 4, + ACTIONS(862), 1, + anon_sym_RPAREN, + ACTIONS(3609), 1, + anon_sym_COMMA, + STATE(2334), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60939] = 4, - ACTIONS(4421), 1, - anon_sym_RPAREN, - ACTIONS(4425), 1, + [77259] = 4, + ACTIONS(5510), 1, + anon_sym_GT, + ACTIONS(5512), 1, anon_sym_COMMA, - STATE(1877), 1, - aux_sym_tuple_type_repeat1, + STATE(2280), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60953] = 4, - ACTIONS(2123), 1, + [77273] = 4, + ACTIONS(2599), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(5510), 1, anon_sym_GT, - STATE(2046), 1, + STATE(2739), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60967] = 4, - ACTIONS(4428), 1, - anon_sym_GT, - ACTIONS(4430), 1, - anon_sym_COMMA, - STATE(2035), 1, - aux_sym_for_lifetimes_repeat1, + [77287] = 4, + ACTIONS(3891), 1, + anon_sym_LT2, + ACTIONS(5473), 1, + sym_identifier, + STATE(2917), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60981] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4432), 1, - anon_sym_SEMI, - ACTIONS(4434), 1, - anon_sym_EQ, + [77301] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60995] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + ACTIONS(4186), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77311] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4180), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77321] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4436), 2, + ACTIONS(4178), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77331] = 4, + ACTIONS(4734), 1, + anon_sym_RPAREN, + ACTIONS(4736), 1, anon_sym_COMMA, - anon_sym_GT, - [61007] = 3, - ACTIONS(3941), 1, - anon_sym_COLON_COLON, + STATE(2466), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61019] = 3, - ACTIONS(4085), 1, - anon_sym_EQ, + [77345] = 4, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, + ACTIONS(3990), 1, + anon_sym_COLON, + STATE(2371), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4116), 2, + [77359] = 4, + ACTIONS(2822), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, anon_sym_COMMA, - anon_sym_GT, - [61031] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4438), 1, - anon_sym_SEMI, - STATE(378), 1, - sym_block, + STATE(2488), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61045] = 4, - ACTIONS(4116), 1, - anon_sym_GT, - ACTIONS(4440), 1, + [77373] = 4, + ACTIONS(1302), 1, + anon_sym_RPAREN, + ACTIONS(4772), 1, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, + STATE(2289), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61059] = 4, - ACTIONS(4443), 1, + [77387] = 4, + ACTIONS(1302), 1, anon_sym_RPAREN, - ACTIONS(4445), 1, + ACTIONS(4772), 1, anon_sym_COMMA, - STATE(1886), 1, - aux_sym_meta_arguments_repeat1, + STATE(2293), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61073] = 4, - ACTIONS(2422), 1, - anon_sym_LBRACE, - ACTIONS(4448), 1, - anon_sym_COLON_COLON, - STATE(1082), 1, - sym_field_initializer_list, + [77401] = 4, + ACTIONS(5516), 1, + anon_sym_RPAREN, + ACTIONS(5518), 1, + anon_sym_COMMA, + STATE(2488), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61087] = 3, - ACTIONS(3871), 1, + [77415] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4450), 2, + ACTIONS(5516), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [61099] = 2, + [77427] = 4, + ACTIONS(4483), 1, + anon_sym_RBRACE, + ACTIONS(5521), 1, + anon_sym_COMMA, + STATE(2311), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [77441] = 4, + ACTIONS(1444), 1, + anon_sym_GT, + ACTIONS(5523), 1, anon_sym_COMMA, - [61109] = 2, + STATE(2301), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4454), 3, - anon_sym_EQ, + [77455] = 4, + ACTIONS(4471), 1, + anon_sym_RBRACE, + ACTIONS(5525), 1, anon_sym_COMMA, - anon_sym_GT, - [61119] = 3, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + STATE(2311), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61131] = 4, - ACTIONS(3640), 1, - anon_sym_GT, - ACTIONS(4456), 1, + [77469] = 4, + ACTIONS(2673), 1, + anon_sym_RPAREN, + ACTIONS(5527), 1, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, + STATE(2154), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61145] = 4, - ACTIONS(3628), 1, - anon_sym_GT, - ACTIONS(4458), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, + [77483] = 3, + ACTIONS(5531), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61159] = 2, + ACTIONS(5529), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [77495] = 4, + ACTIONS(4463), 1, + anon_sym_RBRACE, + ACTIONS(5533), 1, + anon_sym_COMMA, + STATE(2311), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4460), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [61169] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4462), 1, - sym_identifier, - STATE(2364), 1, - sym_type_arguments, + [77509] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61183] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + ACTIONS(4128), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77519] = 4, + ACTIONS(1458), 1, + anon_sym_GT, + ACTIONS(5535), 1, + anon_sym_COMMA, + STATE(2301), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4464), 2, - anon_sym_RBRACE, + [77533] = 4, + ACTIONS(2693), 1, + anon_sym_RPAREN, + ACTIONS(5537), 1, anon_sym_COMMA, - [61195] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4462), 1, - sym_identifier, - STATE(2322), 1, - sym_type_arguments, + STATE(2154), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61209] = 4, - ACTIONS(4194), 1, + [77547] = 4, + ACTIONS(4461), 1, + anon_sym_RBRACE, + ACTIONS(5539), 1, anon_sym_COMMA, - ACTIONS(4466), 1, - anon_sym_PIPE, - STATE(1825), 1, - aux_sym_closure_parameters_repeat1, + STATE(2311), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61223] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(3538), 1, - anon_sym_LBRACE, - STATE(1276), 1, - sym_type_arguments, + [77561] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61237] = 4, - ACTIONS(3578), 1, - anon_sym_LBRACE, - ACTIONS(4468), 1, - anon_sym_SEMI, - STATE(834), 1, - sym_declaration_list, + ACTIONS(4296), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77571] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61251] = 4, - ACTIONS(4470), 1, - anon_sym_RPAREN, - ACTIONS(4472), 1, - anon_sym_COMMA, - STATE(1997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4152), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77581] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61265] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + ACTIONS(4188), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77591] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4474), 2, + ACTIONS(4110), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77601] = 4, + ACTIONS(1312), 1, anon_sym_RPAREN, + ACTIONS(4689), 1, anon_sym_COMMA, - [61277] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4476), 1, - anon_sym_SEMI, - ACTIONS(4478), 1, - anon_sym_EQ, + STATE(2293), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61291] = 3, - ACTIONS(4482), 1, - anon_sym_COLON, + [77615] = 4, + ACTIONS(4822), 1, + anon_sym_GT, + ACTIONS(4824), 1, + anon_sym_COMMA, + STATE(2471), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4480), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61303] = 4, - ACTIONS(4484), 1, - anon_sym_RBRACE, - ACTIONS(4486), 1, - anon_sym_COMMA, - STATE(1827), 1, - aux_sym_field_initializer_list_repeat1, + [77629] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61317] = 4, - ACTIONS(4488), 1, + ACTIONS(4228), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77639] = 4, + ACTIONS(1312), 1, + anon_sym_RPAREN, + ACTIONS(4689), 1, anon_sym_COMMA, - ACTIONS(4490), 1, - anon_sym_GT, - STATE(1879), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2568), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61331] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4492), 1, - sym_identifier, - STATE(2364), 1, - sym_type_arguments, + [77653] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61345] = 4, - ACTIONS(3211), 1, + ACTIONS(4246), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77663] = 4, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(4492), 1, + ACTIONS(4524), 1, sym_identifier, - STATE(2322), 1, + STATE(2900), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61359] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4494), 2, + [77677] = 4, + ACTIONS(4290), 1, anon_sym_RBRACE, + ACTIONS(5541), 1, anon_sym_COMMA, - [61371] = 4, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(3735), 1, - anon_sym_BANG, - ACTIONS(4496), 1, - sym_identifier, + STATE(2272), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61385] = 4, - ACTIONS(2315), 1, - anon_sym_RPAREN, - ACTIONS(4498), 1, + [77691] = 4, + ACTIONS(4290), 1, + anon_sym_RBRACE, + ACTIONS(5541), 1, anon_sym_COMMA, - STATE(1877), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61399] = 4, - ACTIONS(2370), 1, - anon_sym_LT2, - ACTIONS(4500), 1, - sym_identifier, - STATE(1209), 1, - sym_type_arguments, + STATE(2571), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61413] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4502), 1, + [77705] = 4, + ACTIONS(4501), 1, + anon_sym_LBRACE, + ACTIONS(5543), 1, anon_sym_SEMI, - ACTIONS(4504), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61427] = 4, - ACTIONS(4194), 1, - anon_sym_COMMA, - ACTIONS(4506), 1, - anon_sym_PIPE, - STATE(1898), 1, - aux_sym_closure_parameters_repeat1, + STATE(541), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61441] = 4, - ACTIONS(3845), 1, + [77719] = 4, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(4508), 1, + ACTIONS(5545), 1, anon_sym_SEMI, - STATE(392), 1, + STATE(1039), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61455] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4510), 1, - sym_identifier, - STATE(2364), 1, - sym_type_arguments, + [77733] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61469] = 4, - ACTIONS(3211), 1, + ACTIONS(5547), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [77743] = 4, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(4510), 1, + ACTIONS(4524), 1, sym_identifier, - STATE(2322), 1, + STATE(2917), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61483] = 4, - ACTIONS(2370), 1, - anon_sym_LT2, - ACTIONS(4500), 1, - sym_identifier, - STATE(1230), 1, - sym_type_arguments, + [77757] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61497] = 4, - ACTIONS(4512), 1, - anon_sym_RPAREN, - ACTIONS(4514), 1, + ACTIONS(4278), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77767] = 4, + ACTIONS(4234), 1, + anon_sym_GT, + ACTIONS(5549), 1, anon_sym_COMMA, - STATE(1997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2427), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61511] = 3, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [77781] = 4, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_SEMI, + STATE(1048), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4516), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61523] = 4, - ACTIONS(3622), 1, - anon_sym_RBRACE, - ACTIONS(4518), 1, + [77795] = 4, + ACTIONS(4156), 1, + anon_sym_GT, + ACTIONS(5553), 1, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2427), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61537] = 3, - ACTIONS(3871), 1, + [77809] = 4, + ACTIONS(4503), 1, anon_sym_PLUS, + ACTIONS(5555), 1, + anon_sym_SEMI, + ACTIONS(5557), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4127), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61549] = 4, - ACTIONS(3622), 1, - anon_sym_RBRACE, - ACTIONS(4518), 1, - anon_sym_COMMA, - STATE(1988), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61563] = 4, - ACTIONS(3564), 1, + [77823] = 4, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(4520), 1, + ACTIONS(5559), 1, anon_sym_SEMI, - STATE(259), 1, + STATE(1057), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61577] = 4, - ACTIONS(4184), 1, - anon_sym_COMMA, - ACTIONS(4186), 1, - anon_sym_GT, - STATE(1872), 1, - aux_sym_type_arguments_repeat1, + [77837] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5561), 1, + anon_sym_SEMI, + ACTIONS(5563), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61591] = 4, - ACTIONS(4522), 1, - anon_sym_RBRACE, - ACTIONS(4524), 1, + [77851] = 4, + ACTIONS(866), 1, + anon_sym_RPAREN, + ACTIONS(3593), 1, anon_sym_COMMA, - STATE(1871), 1, - aux_sym_struct_pattern_repeat1, + STATE(2334), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61605] = 3, - ACTIONS(4528), 1, - anon_sym_COLON, + [77865] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61617] = 2, + ACTIONS(4272), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77875] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5565), 1, + anon_sym_SEMI, + ACTIONS(5567), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4530), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61627] = 4, - ACTIONS(3590), 1, - anon_sym_LT, - ACTIONS(4532), 1, - anon_sym_EQ, - STATE(2389), 1, - sym_type_parameters, + [77889] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61641] = 4, - ACTIONS(4534), 1, + ACTIONS(4304), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77899] = 4, + ACTIONS(4302), 1, anon_sym_RBRACE, - ACTIONS(4536), 1, + ACTIONS(5569), 1, anon_sym_COMMA, - STATE(1874), 1, - aux_sym_struct_pattern_repeat1, + STATE(2310), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61655] = 4, - ACTIONS(3211), 1, - anon_sym_LT2, - ACTIONS(4538), 1, - sym_identifier, - STATE(2364), 1, - sym_type_arguments, + [77913] = 4, + ACTIONS(4302), 1, + anon_sym_RBRACE, + ACTIONS(5569), 1, + anon_sym_COMMA, + STATE(2579), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61669] = 4, - ACTIONS(3211), 1, + [77927] = 4, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(4540), 1, + ACTIONS(5571), 1, sym_identifier, - STATE(2322), 1, + STATE(2917), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61683] = 4, - ACTIONS(3211), 1, + [77941] = 4, + ACTIONS(3891), 1, anon_sym_LT2, - ACTIONS(4538), 1, + ACTIONS(5571), 1, sym_identifier, - STATE(2322), 1, + STATE(2900), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61697] = 4, - ACTIONS(4542), 1, - anon_sym_RBRACE, - ACTIONS(4544), 1, - anon_sym_COMMA, - STATE(1934), 1, - aux_sym_use_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61711] = 2, + [77955] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4547), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5573), 3, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [61721] = 4, - ACTIONS(3211), 1, + [77965] = 4, + ACTIONS(3235), 1, anon_sym_LT2, - ACTIONS(4540), 1, + ACTIONS(5575), 1, sym_identifier, - STATE(2364), 1, + STATE(1349), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61735] = 4, - ACTIONS(4549), 1, - anon_sym_RPAREN, - ACTIONS(4551), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61749] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4553), 1, + [77979] = 4, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(5577), 1, anon_sym_SEMI, - ACTIONS(4555), 1, - anon_sym_RBRACK, + STATE(1076), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61763] = 2, + [77993] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4557), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61773] = 4, - ACTIONS(4012), 1, - anon_sym_COMMA, - ACTIONS(4014), 1, - anon_sym_GT, - STATE(2009), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4300), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78003] = 4, + ACTIONS(3235), 1, + anon_sym_LT2, + ACTIONS(5575), 1, + sym_identifier, + STATE(1347), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61787] = 2, + [78017] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4559), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61797] = 4, - ACTIONS(3564), 1, - anon_sym_LBRACE, - ACTIONS(4561), 1, - anon_sym_SEMI, - STATE(362), 1, - sym_declaration_list, + ACTIONS(4288), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78027] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61811] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4563), 1, - anon_sym_as, - ACTIONS(4565), 1, - anon_sym_GT, + ACTIONS(4282), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78037] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61825] = 4, - ACTIONS(4567), 1, - anon_sym_RBRACE, - ACTIONS(4569), 1, - anon_sym_COMMA, - STATE(1944), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4284), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78047] = 4, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(5579), 1, + anon_sym_SEMI, + STATE(534), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61839] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4572), 1, + [78061] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5581), 1, anon_sym_SEMI, - STATE(440), 1, - sym_block, + ACTIONS(5583), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61853] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4574), 1, - anon_sym_SEMI, - STATE(736), 1, - sym_block, + [78075] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61867] = 4, - ACTIONS(3845), 1, + ACTIONS(4230), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78085] = 4, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(4576), 1, + ACTIONS(5585), 1, anon_sym_SEMI, - STATE(398), 1, + STATE(1089), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61881] = 4, - ACTIONS(3871), 1, + [78099] = 4, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(4578), 1, + ACTIONS(5587), 1, anon_sym_SEMI, - ACTIONS(4580), 1, + ACTIONS(5589), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61895] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4582), 1, - anon_sym_SEMI, - STATE(739), 1, - sym_block, + [78113] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61909] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4584), 1, - anon_sym_SEMI, - STATE(743), 1, - sym_block, + ACTIONS(4298), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78123] = 4, + ACTIONS(5591), 1, + anon_sym_EQ_GT, + ACTIONS(5593), 1, + anon_sym_PIPE, + ACTIONS(5595), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61923] = 4, - ACTIONS(3588), 1, + [78137] = 4, + ACTIONS(4210), 1, anon_sym_where, - ACTIONS(4586), 1, + ACTIONS(5597), 1, anon_sym_SEMI, - STATE(2378), 1, + STATE(3069), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61937] = 4, - ACTIONS(3851), 1, + [78151] = 4, + ACTIONS(346), 1, anon_sym_LBRACE, - ACTIONS(4588), 1, - anon_sym_SEMI, - STATE(750), 1, + ACTIONS(5599), 1, + anon_sym_move, + STATE(1579), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61951] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4590), 1, - anon_sym_SEMI, - STATE(2471), 1, - sym_where_clause, + [78165] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61965] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4592), 1, + ACTIONS(4268), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78175] = 4, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(5601), 1, anon_sym_SEMI, - ACTIONS(4594), 1, - anon_sym_EQ, + STATE(937), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61979] = 4, - ACTIONS(3851), 1, + [78189] = 4, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(4596), 1, + ACTIONS(5603), 1, anon_sym_SEMI, - STATE(755), 1, + STATE(948), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61993] = 4, - ACTIONS(2245), 1, - anon_sym_RBRACK, - ACTIONS(4598), 1, - anon_sym_COMMA, - STATE(1693), 1, - aux_sym_tuple_pattern_repeat1, + [78203] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62007] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4600), 1, + ACTIONS(4194), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78213] = 4, + ACTIONS(4210), 1, + anon_sym_where, + ACTIONS(5605), 1, anon_sym_SEMI, - STATE(413), 1, - sym_block, + STATE(2822), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62021] = 4, - ACTIONS(279), 1, + [78227] = 4, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_PLUS, - STATE(1050), 1, + ACTIONS(5607), 1, + anon_sym_SEMI, + STATE(998), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62035] = 4, - ACTIONS(2233), 1, + [78241] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4196), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78251] = 4, + ACTIONS(860), 1, anon_sym_RPAREN, - ACTIONS(4602), 1, + ACTIONS(5609), 1, anon_sym_COMMA, - STATE(1693), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2334), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62049] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4604), 1, + [78265] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5611), 1, anon_sym_SEMI, - STATE(766), 1, - sym_block, + ACTIONS(5613), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62063] = 4, - ACTIONS(3851), 1, + [78279] = 4, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(4606), 1, + ACTIONS(5615), 1, anon_sym_SEMI, - STATE(771), 1, + STATE(1013), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62077] = 4, - ACTIONS(2959), 1, - anon_sym_RPAREN, - ACTIONS(4608), 1, - anon_sym_COMMA, - STATE(1886), 1, - aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62091] = 2, + [78293] = 3, + ACTIONS(5619), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4610), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5617), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62101] = 4, - ACTIONS(3845), 1, - anon_sym_LBRACE, - ACTIONS(4612), 1, + [78305] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5621), 1, anon_sym_SEMI, - STATE(297), 1, - sym_block, + ACTIONS(5623), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62115] = 4, - ACTIONS(3029), 1, - anon_sym_RPAREN, - ACTIONS(4614), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_arguments_repeat1, + [78319] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62129] = 2, + ACTIONS(4200), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78329] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4617), 3, + ACTIONS(5625), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62139] = 3, - ACTIONS(3871), 1, + [78339] = 4, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(4503), 1, anon_sym_PLUS, + STATE(1266), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4619), 2, - anon_sym_COMMA, - anon_sym_GT, - [62151] = 4, - ACTIONS(3578), 1, + [78353] = 4, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(4621), 1, + ACTIONS(5627), 1, anon_sym_SEMI, - STATE(956), 1, - sym_declaration_list, + STATE(1043), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62165] = 4, - ACTIONS(387), 1, - anon_sym_RPAREN, - ACTIONS(4623), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_arguments_repeat1, + [78367] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62179] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4625), 1, + ACTIONS(5629), 3, anon_sym_SEMI, - STATE(785), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62193] = 4, - ACTIONS(3612), 1, anon_sym_RBRACE, - ACTIONS(4627), 1, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62207] = 4, - ACTIONS(2247), 1, - anon_sym_PLUS, - ACTIONS(4629), 1, - sym_mutable_specifier, - ACTIONS(4631), 1, - sym_self, + [78377] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62221] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4633), 1, + ACTIONS(5631), 3, anon_sym_SEMI, - ACTIONS(4635), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62235] = 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [78387] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4637), 3, + ACTIONS(5633), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - [62245] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4639), 1, - anon_sym_SEMI, - STATE(812), 1, - sym_block, + anon_sym_COMMA, + [78397] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62259] = 4, - ACTIONS(774), 1, + ACTIONS(5635), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [78407] = 4, + ACTIONS(1314), 1, anon_sym_RPAREN, - ACTIONS(4641), 1, + ACTIONS(5637), 1, anon_sym_COMMA, - STATE(2008), 1, + STATE(2293), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62273] = 4, - ACTIONS(3620), 1, - anon_sym_RBRACE, - ACTIONS(4643), 1, - anon_sym_COMMA, - STATE(1979), 1, - aux_sym_enum_variant_list_repeat2, + [78421] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62287] = 4, - ACTIONS(4006), 1, - anon_sym_RPAREN, - ACTIONS(4008), 1, + ACTIONS(5639), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1854), 1, - aux_sym_parameters_repeat1, + [78431] = 4, + ACTIONS(3990), 1, + anon_sym_COLON, + ACTIONS(4004), 1, + anon_sym_COLON_COLON, + STATE(2371), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62301] = 4, - ACTIONS(4645), 1, + [78445] = 4, + ACTIONS(4260), 1, anon_sym_RBRACE, - ACTIONS(4647), 1, + ACTIONS(5641), 1, anon_sym_COMMA, - STATE(1979), 1, + STATE(2272), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62315] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4650), 1, - anon_sym_SEMI, - STATE(2387), 1, - sym_where_clause, + [78459] = 4, + ACTIONS(3793), 1, + anon_sym_RBRACE, + ACTIONS(5643), 1, + anon_sym_COMMA, + STATE(2373), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62329] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4652), 1, + [78473] = 4, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(5645), 1, anon_sym_SEMI, - ACTIONS(4654), 1, - anon_sym_EQ, + STATE(1117), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62343] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4656), 1, + [78487] = 4, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(5647), 1, anon_sym_SEMI, - ACTIONS(4658), 1, - anon_sym_EQ, + STATE(1119), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62357] = 4, - ACTIONS(3851), 1, + [78501] = 4, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(4660), 1, + ACTIONS(5649), 1, anon_sym_SEMI, - STATE(847), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62371] = 3, - ACTIONS(4664), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4662), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62383] = 4, - ACTIONS(3634), 1, - anon_sym_RBRACE, - ACTIONS(4666), 1, - anon_sym_COMMA, - STATE(1979), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1121), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62397] = 2, + [78515] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4668), 3, + ACTIONS(5651), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62407] = 4, - ACTIONS(4670), 1, - anon_sym_RBRACE, - ACTIONS(4672), 1, - anon_sym_COMMA, - STATE(2028), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62421] = 4, - ACTIONS(3624), 1, - anon_sym_RBRACE, - ACTIONS(4674), 1, - anon_sym_COMMA, - STATE(1993), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62435] = 2, + [78525] = 4, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5653), 1, + anon_sym_SEMI, + ACTIONS(5655), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4087), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [62445] = 4, - ACTIONS(3614), 1, - anon_sym_RBRACE, - ACTIONS(4676), 1, - anon_sym_COMMA, - STATE(1971), 1, - aux_sym_field_declaration_list_repeat1, + [78539] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62459] = 4, - ACTIONS(3614), 1, + ACTIONS(4276), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78549] = 4, + ACTIONS(4256), 1, anon_sym_RBRACE, - ACTIONS(4676), 1, + ACTIONS(5657), 1, anon_sym_COMMA, - STATE(1993), 1, + STATE(2310), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62473] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4678), 1, + [78563] = 4, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(5659), 1, anon_sym_SEMI, - ACTIONS(4680), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62487] = 4, - ACTIONS(4682), 1, - anon_sym_RBRACE, - ACTIONS(4684), 1, - anon_sym_COMMA, - STATE(1993), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1126), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62501] = 4, - ACTIONS(4026), 1, - anon_sym_RPAREN, - ACTIONS(4028), 1, - anon_sym_COMMA, - STATE(2022), 1, - aux_sym_parameters_repeat1, + [78577] = 4, + ACTIONS(4266), 1, + anon_sym_LBRACE, + ACTIONS(5661), 1, + anon_sym_SEMI, + STATE(477), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62515] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [78591] = 4, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_SEMI, + STATE(1132), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62527] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [78605] = 4, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(5665), 1, + anon_sym_SEMI, + STATE(1136), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4687), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62539] = 4, - ACTIONS(4689), 1, - anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_COMMA, - STATE(1997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [78619] = 4, + ACTIONS(5667), 1, + sym_identifier, + ACTIONS(5669), 1, + anon_sym_ref, + ACTIONS(5671), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62553] = 4, - ACTIONS(3851), 1, + [78633] = 4, + ACTIONS(4512), 1, anon_sym_LBRACE, - ACTIONS(4694), 1, + ACTIONS(5673), 1, anon_sym_SEMI, - STATE(950), 1, + STATE(1087), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62567] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4696), 1, - anon_sym_SEMI, - ACTIONS(4698), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62581] = 4, - ACTIONS(4700), 1, - anon_sym_RPAREN, - ACTIONS(4702), 1, - anon_sym_COMMA, - STATE(1997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [78647] = 4, + ACTIONS(5675), 1, + sym_identifier, + ACTIONS(5677), 1, + anon_sym_ref, + ACTIONS(5679), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62595] = 4, + [78661] = 4, ACTIONS(4210), 1, - anon_sym_COMMA, - ACTIONS(4212), 1, - anon_sym_GT, - STATE(2013), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62609] = 4, - ACTIONS(3079), 1, - anon_sym_RBRACK, - ACTIONS(4704), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_array_expression_repeat1, + anon_sym_where, + ACTIONS(5681), 1, + anon_sym_SEMI, + STATE(2862), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62623] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4707), 1, + [78675] = 4, + ACTIONS(4512), 1, + anon_sym_LBRACE, + ACTIONS(5683), 1, anon_sym_SEMI, - ACTIONS(4709), 1, - anon_sym_EQ, + STATE(1068), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62637] = 4, - ACTIONS(636), 1, - anon_sym_RBRACK, - ACTIONS(4711), 1, + [78689] = 4, + ACTIONS(5685), 1, + anon_sym_RBRACE, + ACTIONS(5687), 1, anon_sym_COMMA, - STATE(2002), 1, - aux_sym_array_expression_repeat1, + STATE(2393), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62651] = 4, - ACTIONS(2321), 1, - anon_sym_RPAREN, - ACTIONS(4713), 1, - anon_sym_COMMA, - STATE(1877), 1, - aux_sym_tuple_type_repeat1, + [78703] = 4, + ACTIONS(4166), 1, + anon_sym_LBRACE, + ACTIONS(5689), 1, + anon_sym_SEMI, + STATE(1059), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62665] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4715), 1, - anon_sym_SEMI, - ACTIONS(4717), 1, - anon_sym_EQ, + [78717] = 3, + ACTIONS(5691), 1, + anon_sym_BANG, + ACTIONS(5693), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62679] = 4, - ACTIONS(3636), 1, - anon_sym_GT, - ACTIONS(4719), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, + [78728] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5695), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62693] = 4, - ACTIONS(4198), 1, - anon_sym_RPAREN, - ACTIONS(4721), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, + [78739] = 3, + ACTIONS(4226), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62707] = 4, - ACTIONS(3638), 1, - anon_sym_GT, - ACTIONS(4724), 1, - anon_sym_COMMA, - STATE(1885), 1, - aux_sym_type_parameters_repeat1, + [78750] = 3, + ACTIONS(5697), 1, + anon_sym_LBRACK, + ACTIONS(5699), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62721] = 3, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [78761] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5701), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3977), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62733] = 4, - ACTIONS(768), 1, - anon_sym_RPAREN, - ACTIONS(4726), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, + [78772] = 3, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62747] = 4, - ACTIONS(3845), 1, + [78783] = 3, + ACTIONS(4166), 1, anon_sym_LBRACE, - ACTIONS(4728), 1, - anon_sym_SEMI, - STATE(446), 1, - sym_block, + STATE(1134), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62761] = 4, - ACTIONS(902), 1, - anon_sym_GT, - ACTIONS(4730), 1, - anon_sym_COMMA, - STATE(2032), 1, - aux_sym_type_arguments_repeat1, + [78794] = 3, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(486), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62775] = 4, - ACTIONS(4732), 1, - anon_sym_RBRACE, - ACTIONS(4734), 1, - anon_sym_COMMA, - STATE(1849), 1, - aux_sym_enum_variant_list_repeat2, + [78805] = 3, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(487), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62789] = 4, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4736), 1, - anon_sym_SEMI, - ACTIONS(4738), 1, - anon_sym_EQ, + [78816] = 3, + ACTIONS(5703), 1, + anon_sym_LT, + STATE(823), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62803] = 3, - ACTIONS(4742), 1, - anon_sym_COLON, + [78827] = 3, + ACTIONS(4226), 1, + anon_sym_LBRACE, + STATE(488), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4740), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62815] = 4, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_COLON, - STATE(1851), 1, - sym_trait_bounds, + [78838] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62829] = 4, - ACTIONS(3851), 1, + ACTIONS(5705), 2, + sym_identifier, + sym_metavariable, + [78847] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4744), 1, - anon_sym_SEMI, - STATE(883), 1, + STATE(212), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62843] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, + [78858] = 3, + ACTIONS(3265), 1, + anon_sym_COLON, + ACTIONS(5167), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4746), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62855] = 4, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, + [78869] = 3, + ACTIONS(23), 1, + anon_sym_PIPE, + STATE(195), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62869] = 4, - ACTIONS(4748), 1, - anon_sym_RBRACE, - ACTIONS(4750), 1, - anon_sym_COMMA, - STATE(2021), 1, - aux_sym_struct_pattern_repeat1, + [78880] = 3, + ACTIONS(5707), 1, + sym_identifier, + ACTIONS(5709), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62883] = 4, - ACTIONS(772), 1, - anon_sym_RPAREN, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_parameters_repeat1, + [78891] = 3, + ACTIONS(3341), 1, + anon_sym_COLON, + ACTIONS(5167), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62897] = 4, - ACTIONS(3871), 1, + [78902] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, - ACTIONS(4753), 1, + ACTIONS(5711), 1, anon_sym_SEMI, - ACTIONS(4755), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62911] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [78913] = 3, + ACTIONS(4166), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4757), 2, - anon_sym_COMMA, + [78924] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(768), 2, anon_sym_GT, - [62923] = 4, - ACTIONS(4759), 1, - anon_sym_RBRACE, - ACTIONS(4761), 1, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_field_declaration_list_repeat1, + [78933] = 3, + ACTIONS(5713), 1, + anon_sym_SEMI, + ACTIONS(5715), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62937] = 4, - ACTIONS(3630), 1, - anon_sym_RBRACE, - ACTIONS(4763), 1, - anon_sym_COMMA, - STATE(1977), 1, - aux_sym_enum_variant_list_repeat2, + [78944] = 3, + ACTIONS(5667), 1, + sym_identifier, + ACTIONS(5671), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62951] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4765), 1, - anon_sym_SEMI, - STATE(2440), 1, - sym_where_clause, + [78955] = 3, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(570), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62965] = 4, - ACTIONS(3630), 1, - anon_sym_RBRACE, - ACTIONS(4763), 1, - anon_sym_COMMA, - STATE(1979), 1, - aux_sym_enum_variant_list_repeat2, + [78966] = 3, + ACTIONS(4166), 1, + anon_sym_LBRACE, + STATE(1015), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62979] = 3, - ACTIONS(2247), 1, - anon_sym_PLUS, + [78977] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5717), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4619), 2, - anon_sym_COMMA, - anon_sym_GT, - [62991] = 2, + [78988] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5719), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4767), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63001] = 4, - ACTIONS(3157), 1, - anon_sym_LBRACE, - ACTIONS(4769), 1, - sym_identifier, - STATE(1866), 1, - sym_use_list, + [78999] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2034), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63015] = 4, - ACTIONS(4619), 1, - anon_sym_GT, - ACTIONS(4771), 1, - anon_sym_COMMA, - STATE(2032), 1, - aux_sym_type_arguments_repeat1, + [79010] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5721), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63029] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, + [79021] = 3, + ACTIONS(4589), 1, + anon_sym_LBRACE, + STATE(460), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4774), 2, - anon_sym_COMMA, - anon_sym_GT, - [63041] = 4, - ACTIONS(3588), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_SEMI, - STATE(2429), 1, - sym_where_clause, + [79032] = 3, + ACTIONS(5723), 1, + anon_sym_RPAREN, + ACTIONS(5725), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63055] = 4, - ACTIONS(4778), 1, - anon_sym_COMMA, - ACTIONS(4781), 1, - anon_sym_GT, - STATE(2035), 1, - aux_sym_for_lifetimes_repeat1, + [79043] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5727), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63069] = 4, - ACTIONS(3312), 1, + [79054] = 3, + ACTIONS(5723), 1, + anon_sym_RPAREN, + ACTIONS(5729), 1, anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_COLON, - STATE(1851), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63083] = 3, - ACTIONS(3578), 1, + [79065] = 3, + ACTIONS(4166), 1, anon_sym_LBRACE, - STATE(788), 1, + STATE(1101), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63094] = 3, - ACTIONS(2362), 1, - anon_sym_LPAREN, - STATE(820), 1, - sym_parameters, + [79076] = 3, + ACTIONS(5723), 1, + anon_sym_RPAREN, + ACTIONS(5731), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63105] = 3, - ACTIONS(3590), 1, - anon_sym_LT, - STATE(674), 1, - sym_type_parameters, + [79087] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5733), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63116] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(908), 1, - sym_declaration_list, + [79098] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63127] = 3, - ACTIONS(3578), 1, + [79109] = 3, + ACTIONS(1104), 1, anon_sym_LBRACE, - STATE(906), 1, - sym_declaration_list, + STATE(412), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [79120] = 3, + ACTIONS(23), 1, + anon_sym_PIPE, + STATE(178), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63138] = 3, - ACTIONS(3564), 1, + [79131] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(441), 1, - sym_declaration_list, + STATE(1100), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63149] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1611), 1, - sym_parameters, + [79142] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5737), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63160] = 3, - ACTIONS(3873), 1, + [79153] = 3, + ACTIONS(4512), 1, anon_sym_LBRACE, - STATE(900), 1, - sym_enum_variant_list, + STATE(2376), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63171] = 3, - ACTIONS(3594), 1, + [79164] = 3, + ACTIONS(346), 1, anon_sym_LBRACE, - STATE(897), 1, - sym_field_declaration_list, + STATE(1416), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63182] = 2, + [79175] = 3, + ACTIONS(4108), 1, + anon_sym_COLON_COLON, + ACTIONS(5739), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4781), 2, - anon_sym_COMMA, - anon_sym_GT, - [63191] = 3, - ACTIONS(3594), 1, + [79186] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(893), 1, + STATE(1097), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63202] = 3, - ACTIONS(3681), 1, - anon_sym_COLON, - STATE(1851), 1, - sym_trait_bounds, + [79197] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63213] = 3, - ACTIONS(4783), 1, - anon_sym_SEMI, - ACTIONS(4785), 1, - anon_sym_as, + [79208] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5743), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63224] = 3, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_SEMI, + [79219] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63235] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4789), 1, - anon_sym_SEMI, + ACTIONS(5745), 2, + anon_sym_const, + sym_mutable_specifier, + [79228] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5747), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63246] = 2, + [79239] = 3, + ACTIONS(3229), 1, + anon_sym_LPAREN, + STATE(1380), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4619), 2, - anon_sym_COMMA, - anon_sym_GT, - [63255] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, + [79250] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5749), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63266] = 3, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(363), 1, - sym_enum_variant_list, + [79261] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5751), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63277] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4791), 1, - anon_sym_RBRACE, + [79272] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5753), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63288] = 2, + [79283] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4793), 2, - sym_identifier, - sym_metavariable, - [63297] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4795), 1, + ACTIONS(5755), 2, anon_sym_RBRACE, + anon_sym_COMMA, + [79292] = 3, + ACTIONS(1104), 1, + anon_sym_LBRACE, + STATE(409), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63308] = 3, - ACTIONS(3578), 1, + [79303] = 3, + ACTIONS(2928), 1, anon_sym_LBRACE, - STATE(916), 1, - sym_declaration_list, + STATE(1205), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63319] = 3, - ACTIONS(3578), 1, + [79314] = 3, + ACTIONS(4625), 1, anon_sym_LBRACE, - STATE(917), 1, - sym_declaration_list, + STATE(1092), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63330] = 3, - ACTIONS(3594), 1, + [79325] = 3, + ACTIONS(4226), 1, anon_sym_LBRACE, - STATE(918), 1, + STATE(456), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63341] = 3, - ACTIONS(3775), 1, - anon_sym_COLON, - ACTIONS(3871), 1, - anon_sym_PLUS, + [79336] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63352] = 3, - ACTIONS(4797), 1, + ACTIONS(5757), 2, sym_identifier, - ACTIONS(4799), 1, - sym_mutable_specifier, + sym_metavariable, + [79345] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63363] = 3, - ACTIONS(2854), 1, - anon_sym_COLON, - ACTIONS(3871), 1, - anon_sym_PLUS, + ACTIONS(5759), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [79354] = 3, + ACTIONS(4226), 1, + anon_sym_LBRACE, + STATE(451), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63374] = 3, - ACTIONS(15), 1, + [79365] = 3, + ACTIONS(4166), 1, anon_sym_LBRACE, - STATE(51), 1, - sym_block, + STATE(1081), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63385] = 3, - ACTIONS(3831), 1, - anon_sym_COLON_COLON, - ACTIONS(4801), 1, - anon_sym_RPAREN, + [79376] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5761), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63396] = 2, + [79387] = 3, + ACTIONS(5763), 1, + anon_sym_LPAREN, + ACTIONS(5765), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4748), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63405] = 3, - ACTIONS(3821), 1, - anon_sym_COLON_COLON, - ACTIONS(4801), 1, - anon_sym_RPAREN, + [79398] = 3, + ACTIONS(5767), 1, + anon_sym_LPAREN, + ACTIONS(5769), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63416] = 3, - ACTIONS(3753), 1, - anon_sym_COLON_COLON, - ACTIONS(4801), 1, - anon_sym_RPAREN, + [79409] = 3, + ACTIONS(4166), 1, + anon_sym_LBRACE, + STATE(1079), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63427] = 3, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 1, - anon_sym_RPAREN, + [79420] = 3, + ACTIONS(5771), 1, + anon_sym_SEMI, + ACTIONS(5773), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63438] = 3, - ACTIONS(4254), 1, - sym_identifier, - ACTIONS(4258), 1, - sym_mutable_specifier, + [79431] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63449] = 3, - ACTIONS(2370), 1, - anon_sym_LT2, - STATE(997), 1, - sym_type_arguments, + ACTIONS(5256), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [79440] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5775), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [79451] = 3, + ACTIONS(288), 1, + anon_sym_LBRACE, + STATE(1253), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63460] = 3, - ACTIONS(4056), 1, + [79462] = 3, + ACTIONS(4719), 1, anon_sym_PIPE, - ACTIONS(4805), 1, + ACTIONS(5777), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63471] = 3, - ACTIONS(3909), 1, + [79473] = 3, + ACTIONS(288), 1, anon_sym_LBRACE, - STATE(289), 1, - sym_enum_variant_list, + STATE(1255), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63482] = 3, - ACTIONS(2362), 1, - anon_sym_LPAREN, - STATE(932), 1, - sym_parameters, + [79484] = 3, + ACTIONS(4166), 1, + anon_sym_LBRACE, + STATE(1069), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63493] = 2, + [79495] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3977), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63502] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_declaration_list, + ACTIONS(5779), 2, + sym_identifier, + sym_metavariable, + [79504] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63513] = 3, - ACTIONS(4056), 1, + ACTIONS(5781), 2, + sym_float_literal, + sym_integer_literal, + [79513] = 3, + ACTIONS(4719), 1, anon_sym_PIPE, - ACTIONS(4807), 1, + ACTIONS(5783), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63524] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(876), 1, - sym_declaration_list, + [79524] = 3, + ACTIONS(3229), 1, + anon_sym_LPAREN, + STATE(1368), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63535] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4809), 1, - anon_sym_EQ, + [79535] = 3, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(2739), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63546] = 3, - ACTIONS(4056), 1, + [79546] = 3, + ACTIONS(4719), 1, anon_sym_PIPE, - ACTIONS(4811), 1, - anon_sym_EQ, + ACTIONS(5785), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63557] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(869), 1, - sym_declaration_list, + [79557] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63568] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4813), 1, - anon_sym_in, + ACTIONS(4933), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [79566] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63579] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4815), 1, - anon_sym_EQ, + ACTIONS(5787), 2, + sym_identifier, + sym_metavariable, + [79575] = 3, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63590] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4817), 1, - anon_sym_in, + [79586] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4514), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [79595] = 3, + ACTIONS(4589), 1, + anon_sym_LBRACE, + STATE(547), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63601] = 2, + [79606] = 3, + ACTIONS(1104), 1, + anon_sym_LBRACE, + STATE(397), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4682), 2, + [79617] = 3, + ACTIONS(5713), 1, + anon_sym_SEMI, + ACTIONS(5793), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [63610] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63619] = 2, + [79628] = 3, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(522), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4819), 2, - sym_identifier, - sym_metavariable, - [63628] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4821), 1, - anon_sym_EQ, + [79639] = 3, + ACTIONS(5713), 1, + anon_sym_SEMI, + ACTIONS(5795), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63639] = 3, - ACTIONS(2728), 1, - anon_sym_COLON, - ACTIONS(3871), 1, - anon_sym_PLUS, + [79650] = 3, + ACTIONS(5713), 1, + anon_sym_SEMI, + ACTIONS(5797), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63650] = 3, - ACTIONS(3578), 1, + [79661] = 3, + ACTIONS(4266), 1, anon_sym_LBRACE, - STATE(863), 1, + STATE(521), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63661] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4823), 1, + [79672] = 3, + ACTIONS(5713), 1, anon_sym_SEMI, + ACTIONS(5799), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63672] = 3, - ACTIONS(2724), 1, + [79683] = 3, + ACTIONS(4330), 1, anon_sym_COLON, - ACTIONS(3871), 1, + STATE(2371), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [79694] = 3, + ACTIONS(4503), 1, anon_sym_PLUS, + ACTIONS(5801), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63683] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_declaration_list, + [79705] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63694] = 3, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_enum_variant_list, + ACTIONS(5803), 2, + anon_sym_const, + sym_mutable_specifier, + [79714] = 3, + ACTIONS(5713), 1, + anon_sym_SEMI, + ACTIONS(5805), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63705] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(856), 1, - sym_declaration_list, + [79725] = 3, + ACTIONS(3229), 1, + anon_sym_LPAREN, + STATE(1387), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63716] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(855), 1, - sym_declaration_list, + [79736] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(1695), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63727] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4825), 1, - anon_sym_EQ, + [79747] = 3, + ACTIONS(4208), 1, + anon_sym_LT, + STATE(767), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63738] = 3, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(1906), 1, - sym_lifetime, + [79758] = 3, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(512), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63749] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4827), 1, - anon_sym_EQ, + [79769] = 3, + ACTIONS(4004), 1, + anon_sym_COLON_COLON, + ACTIONS(4042), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63760] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4829), 1, - anon_sym_GT, + [79780] = 3, + ACTIONS(288), 1, + anon_sym_LBRACE, + STATE(1254), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63771] = 3, - ACTIONS(3805), 1, - anon_sym_RPAREN, - ACTIONS(4787), 1, - anon_sym_SEMI, + [79791] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(308), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63782] = 2, + [79802] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5807), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4304), 2, - anon_sym_COMMA, + [79813] = 3, + ACTIONS(23), 1, anon_sym_PIPE, - [63791] = 3, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(844), 1, - sym_enum_variant_list, + STATE(191), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63802] = 2, + [79824] = 3, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4831), 2, - sym_identifier, - sym_metavariable, - [63811] = 3, - ACTIONS(3564), 1, + [79835] = 3, + ACTIONS(3437), 1, anon_sym_LBRACE, - STATE(421), 1, - sym_declaration_list, + STATE(1539), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 3, - ACTIONS(3594), 1, + [79846] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(841), 1, + STATE(1002), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63833] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4833), 1, - anon_sym_SEMI, + [79857] = 3, + ACTIONS(1422), 1, + anon_sym_LBRACE, + STATE(1836), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63844] = 3, - ACTIONS(3594), 1, + [79868] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(839), 1, + STATE(994), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63855] = 3, - ACTIONS(3578), 1, + [79879] = 3, + ACTIONS(4625), 1, anon_sym_LBRACE, - STATE(838), 1, - sym_declaration_list, + STATE(983), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [79890] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5813), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63866] = 2, + [79901] = 3, + ACTIONS(4166), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4835), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63875] = 3, - ACTIONS(3801), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_SEMI, + [79912] = 3, + ACTIONS(1104), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63886] = 2, + [79923] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4645), 2, + ACTIONS(5153), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63895] = 3, - ACTIONS(2642), 1, - anon_sym_COLON, - ACTIONS(3871), 1, - anon_sym_PLUS, + [79932] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63906] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4837), 1, - anon_sym_in, + ACTIONS(5815), 2, + sym_float_literal, + sym_integer_literal, + [79941] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63917] = 3, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, + [79952] = 3, + ACTIONS(5817), 1, anon_sym_BANG, + ACTIONS(5819), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63928] = 2, + [79963] = 3, + ACTIONS(5046), 1, + sym_identifier, + ACTIONS(5050), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4843), 2, - sym_identifier, - sym_metavariable, - [63937] = 3, - ACTIONS(3795), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_SEMI, + [79974] = 3, + ACTIONS(3581), 1, + anon_sym_COLON_COLON, + ACTIONS(4349), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63948] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1568), 1, - sym_parameters, + [79985] = 3, + ACTIONS(3887), 1, + anon_sym_BANG, + ACTIONS(5821), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63959] = 3, - ACTIONS(3205), 1, + [79996] = 3, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(1311), 1, + STATE(1694), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63970] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(298), 1, - sym_declaration_list, + [80007] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5823), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63981] = 3, - ACTIONS(3785), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, + [80018] = 3, + ACTIONS(4503), 1, + anon_sym_PLUS, + ACTIONS(5825), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63992] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(317), 1, - sym_declaration_list, + [80029] = 3, + ACTIONS(4717), 1, + anon_sym_COLON, + ACTIONS(4719), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64003] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_declaration_list, + [80040] = 3, + ACTIONS(3165), 1, + anon_sym_COLON, + ACTIONS(5167), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64014] = 3, - ACTIONS(4337), 1, - sym_identifier, - ACTIONS(4341), 1, - sym_mutable_specifier, + [80051] = 3, + ACTIONS(346), 1, + anon_sym_LBRACE, + STATE(1425), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64025] = 3, - ACTIONS(3578), 1, + [80062] = 3, + ACTIONS(4166), 1, anon_sym_LBRACE, - STATE(806), 1, + STATE(920), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64036] = 3, - ACTIONS(3578), 1, + [80073] = 3, + ACTIONS(1104), 1, anon_sym_LBRACE, - STATE(805), 1, - sym_declaration_list, + STATE(404), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64047] = 3, - ACTIONS(3564), 1, + [80084] = 3, + ACTIONS(4166), 1, anon_sym_LBRACE, - STATE(316), 1, + STATE(921), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64058] = 3, - ACTIONS(3909), 1, + [80095] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(326), 1, - sym_enum_variant_list, + STATE(922), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64069] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(329), 1, - sym_field_declaration_list, + [80106] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64080] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(314), 1, - sym_field_declaration_list, + ACTIONS(5827), 2, + anon_sym_const, + sym_mutable_specifier, + [80115] = 3, + ACTIONS(2864), 1, + anon_sym_LPAREN, + STATE(1159), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64091] = 3, - ACTIONS(279), 1, + [80126] = 3, + ACTIONS(346), 1, anon_sym_LBRACE, - STATE(1032), 1, + STATE(1482), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64102] = 3, - ACTIONS(3578), 1, + [80137] = 3, + ACTIONS(288), 1, anon_sym_LBRACE, - STATE(792), 1, - sym_declaration_list, + STATE(1278), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64113] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4845), 1, - anon_sym_EQ, + [80148] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64124] = 3, - ACTIONS(4052), 1, + ACTIONS(5829), 2, + sym_identifier, + sym_metavariable, + [80157] = 3, + ACTIONS(4493), 1, anon_sym_COLON, - ACTIONS(4056), 1, - anon_sym_PIPE, + ACTIONS(5167), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64135] = 3, - ACTIONS(4847), 1, - anon_sym_LBRACK, - ACTIONS(4849), 1, - anon_sym_BANG, + [80168] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64146] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(787), 1, - sym_declaration_list, + ACTIONS(5831), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [80177] = 3, + ACTIONS(5725), 1, + anon_sym_COLON_COLON, + ACTIONS(5833), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64157] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4851), 1, - anon_sym_SEMI, + [80188] = 3, + ACTIONS(5729), 1, + anon_sym_COLON_COLON, + ACTIONS(5833), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64168] = 3, - ACTIONS(3759), 1, + [80199] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(1988), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [80210] = 3, + ACTIONS(5731), 1, + anon_sym_COLON_COLON, + ACTIONS(5833), 1, anon_sym_RPAREN, - ACTIONS(4787), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64179] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(335), 1, - sym_field_declaration_list, + [80221] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64190] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4853), 1, - anon_sym_SEMI, + ACTIONS(5066), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [80230] = 3, + ACTIONS(4108), 1, + anon_sym_COLON_COLON, + ACTIONS(5835), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64201] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(779), 1, - sym_declaration_list, + [80241] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64212] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(778), 1, - sym_declaration_list, + ACTIONS(5837), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [80250] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64223] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(86), 1, - sym_closure_parameters, + ACTIONS(5839), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [80259] = 3, + ACTIONS(2872), 1, + anon_sym_LT2, + STATE(1199), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64234] = 3, - ACTIONS(4855), 1, + [80270] = 3, + ACTIONS(5713), 1, anon_sym_SEMI, - ACTIONS(4857), 1, - anon_sym_as, + ACTIONS(5841), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64245] = 3, - ACTIONS(4859), 1, + [80281] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4874), 2, + anon_sym_GT, + anon_sym_COMMA, + [80290] = 3, + ACTIONS(5713), 1, anon_sym_SEMI, - ACTIONS(4861), 1, - anon_sym_as, + ACTIONS(5843), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [80301] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64256] = 3, - ACTIONS(3564), 1, + ACTIONS(5085), 2, + anon_sym_GT, + anon_sym_COMMA, + [80310] = 3, + ACTIONS(4625), 1, anon_sym_LBRACE, - STATE(311), 1, - sym_declaration_list, + STATE(939), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [80321] = 3, + ACTIONS(346), 1, + anon_sym_LBRACE, + STATE(1530), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64267] = 3, - ACTIONS(3205), 1, + [80332] = 3, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(1581), 1, + STATE(2046), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64278] = 3, - ACTIONS(4056), 1, + [80343] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5389), 2, anon_sym_PIPE, - ACTIONS(4863), 1, - anon_sym_in, + anon_sym_COMMA, + [80352] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64289] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(455), 1, - sym_declaration_list, + ACTIONS(4748), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [80361] = 3, + ACTIONS(3235), 1, + anon_sym_LT2, + STATE(1535), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64300] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(65), 1, - sym_block, + [80372] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64311] = 3, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_field_declaration_list, + ACTIONS(4987), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [80381] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64322] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(453), 1, - sym_field_declaration_list, + ACTIONS(5138), 2, + anon_sym_GT, + anon_sym_COMMA, + [80390] = 3, + ACTIONS(2864), 1, + anon_sym_LPAREN, + STATE(1162), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64333] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(310), 1, - sym_declaration_list, + [80401] = 3, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + STATE(2452), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64344] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(760), 1, - sym_declaration_list, + [80412] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(1691), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64355] = 3, - ACTIONS(3578), 1, - anon_sym_LBRACE, - STATE(759), 1, - sym_declaration_list, + [80423] = 3, + ACTIONS(4407), 1, + anon_sym_RPAREN, + ACTIONS(5713), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64366] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4865), 1, + [80434] = 3, + ACTIONS(4437), 1, + anon_sym_RPAREN, + ACTIONS(5713), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64377] = 3, - ACTIONS(3578), 1, + [80445] = 3, + ACTIONS(4589), 1, anon_sym_LBRACE, - STATE(937), 1, - sym_declaration_list, + STATE(638), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64388] = 3, - ACTIONS(3586), 1, - anon_sym_LBRACE, - STATE(451), 1, - sym_field_declaration_list, + [80456] = 3, + ACTIONS(5845), 1, + sym_identifier, + ACTIONS(5847), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64399] = 3, - ACTIONS(4867), 1, - anon_sym_LT, - STATE(609), 1, - sym_type_parameters, + [80467] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64410] = 3, - ACTIONS(3578), 1, + ACTIONS(5158), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [80476] = 3, + ACTIONS(346), 1, anon_sym_LBRACE, - STATE(752), 1, - sym_declaration_list, + STATE(1442), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64421] = 3, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_field_declaration_list, + [80487] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2020), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64432] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4869), 1, - anon_sym_SEMI, + [80498] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5849), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [80509] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64443] = 3, - ACTIONS(3205), 1, + ACTIONS(5283), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [80518] = 3, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(1566), 1, + STATE(1991), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64454] = 3, - ACTIONS(3586), 1, + [80529] = 3, + ACTIONS(4226), 1, anon_sym_LBRACE, - STATE(309), 1, + STATE(632), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64465] = 3, - ACTIONS(2422), 1, + [80540] = 3, + ACTIONS(4266), 1, anon_sym_LBRACE, - STATE(1082), 1, - sym_field_initializer_list, + STATE(642), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64476] = 3, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(444), 1, - sym_enum_variant_list, + [80551] = 3, + ACTIONS(2864), 1, + anon_sym_LPAREN, + STATE(1173), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64487] = 3, - ACTIONS(3564), 1, + [80562] = 3, + ACTIONS(4226), 1, anon_sym_LBRACE, - STATE(408), 1, - sym_declaration_list, + STATE(628), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64498] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_declaration_list, + [80573] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5851), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64509] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4871), 1, - anon_sym_RPAREN, + [80584] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2062), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64520] = 3, - ACTIONS(3578), 1, + [80595] = 3, + ACTIONS(4625), 1, anon_sym_LBRACE, - STATE(924), 1, - sym_declaration_list, + STATE(1000), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64531] = 3, - ACTIONS(644), 1, + [80606] = 3, + ACTIONS(4266), 1, anon_sym_LBRACE, - STATE(229), 1, - sym_block, + STATE(495), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64542] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4873), 1, - anon_sym_RBRACE, + [80617] = 3, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64553] = 3, - ACTIONS(644), 1, + [80628] = 3, + ACTIONS(4226), 1, anon_sym_LBRACE, - STATE(235), 1, - sym_block, + STATE(437), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64564] = 3, - ACTIONS(3564), 1, + [80639] = 3, + ACTIONS(4266), 1, anon_sym_LBRACE, - STATE(415), 1, + STATE(543), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64575] = 3, - ACTIONS(2362), 1, - anon_sym_LPAREN, - STATE(922), 1, - sym_parameters, + [80650] = 3, + ACTIONS(4485), 1, + anon_sym_RBRACE, + ACTIONS(5713), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64586] = 3, - ACTIONS(644), 1, - anon_sym_LBRACE, - STATE(226), 1, - sym_block, + [80661] = 3, + ACTIONS(3269), 1, + anon_sym_COLON, + ACTIONS(5167), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64597] = 2, + [80672] = 3, + ACTIONS(4266), 1, + anon_sym_LBRACE, + STATE(539), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4567), 2, + [80683] = 3, + ACTIONS(4401), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [64606] = 3, - ACTIONS(4787), 1, + ACTIONS(5713), 1, anon_sym_SEMI, - ACTIONS(4875), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64617] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4877), 1, + [80694] = 3, + ACTIONS(4427), 1, anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64628] = 3, - ACTIONS(4787), 1, + ACTIONS(5713), 1, anon_sym_SEMI, - ACTIONS(4879), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64639] = 3, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(4881), 1, + [80705] = 3, + ACTIONS(4425), 1, anon_sym_RBRACE, + ACTIONS(5713), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64650] = 3, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4885), 1, - anon_sym_LBRACE, + [80716] = 3, + ACTIONS(4719), 1, + anon_sym_PIPE, + ACTIONS(5853), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64661] = 2, + [80727] = 3, + ACTIONS(4435), 1, + anon_sym_RBRACE, + ACTIONS(5713), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4887), 2, - sym_identifier, - sym_metavariable, - [64670] = 3, - ACTIONS(4889), 1, - anon_sym_LPAREN, - ACTIONS(4891), 1, - anon_sym_LBRACE, + [80738] = 3, + ACTIONS(2977), 1, + anon_sym_COLON_COLON, + ACTIONS(4328), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64681] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1584), 1, - sym_parameters, + [80749] = 3, + ACTIONS(5855), 1, + anon_sym_SEMI, + ACTIONS(5857), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64692] = 2, + [80760] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2157), 2, - anon_sym_COMMA, - anon_sym_GT, - [64701] = 3, - ACTIONS(279), 1, + ACTIONS(5859), 2, + anon_sym_const, + sym_mutable_specifier, + [80769] = 3, + ACTIONS(4166), 1, anon_sym_LBRACE, - STATE(1072), 1, - sym_block, + STATE(1111), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64712] = 2, + [80780] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4542), 2, + ACTIONS(5294), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64721] = 3, - ACTIONS(279), 1, + [80789] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(1084), 1, - sym_block, + STATE(978), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64732] = 3, - ACTIONS(3586), 1, + [80800] = 3, + ACTIONS(4226), 1, anon_sym_LBRACE, - STATE(279), 1, + STATE(434), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64743] = 3, - ACTIONS(3564), 1, + [80811] = 3, + ACTIONS(288), 1, anon_sym_LBRACE, - STATE(270), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64754] = 2, + STATE(1189), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4893), 2, - sym_identifier, - sym_metavariable, - [64763] = 3, - ACTIONS(3831), 1, - anon_sym_COLON_COLON, - ACTIONS(4895), 1, + [80822] = 3, + ACTIONS(4447), 1, anon_sym_RPAREN, + ACTIONS(5713), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64774] = 3, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(4897), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64785] = 3, - ACTIONS(3821), 1, - anon_sym_COLON_COLON, - ACTIONS(4895), 1, - anon_sym_RPAREN, + [80833] = 3, + ACTIONS(5861), 1, + anon_sym_LPAREN, + ACTIONS(5863), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64796] = 3, - ACTIONS(644), 1, + [80844] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(213), 1, + STATE(261), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64807] = 3, - ACTIONS(3753), 1, - anon_sym_COLON_COLON, - ACTIONS(4895), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64818] = 3, - ACTIONS(3564), 1, + [80855] = 3, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(5867), 1, anon_sym_LBRACE, - STATE(430), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64829] = 3, - ACTIONS(4899), 1, - sym_identifier, - ACTIONS(4901), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64840] = 3, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - ACTIONS(4903), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64851] = 3, - ACTIONS(3564), 1, + [80866] = 3, + ACTIONS(4166), 1, anon_sym_LBRACE, - STATE(427), 1, + STATE(971), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64862] = 3, - ACTIONS(3781), 1, - anon_sym_RPAREN, - ACTIONS(4787), 1, - anon_sym_SEMI, + [80877] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64873] = 3, - ACTIONS(3586), 1, + ACTIONS(5869), 2, + sym_identifier, + sym_metavariable, + [80886] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(263), 1, + STATE(966), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64884] = 3, - ACTIONS(3773), 1, - anon_sym_RPAREN, - ACTIONS(4787), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64895] = 3, - ACTIONS(3873), 1, - anon_sym_LBRACE, - STATE(879), 1, - sym_enum_variant_list, + [80897] = 3, + ACTIONS(4024), 1, + anon_sym_BANG, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64906] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(425), 1, - sym_declaration_list, + [80908] = 3, + ACTIONS(4024), 1, + anon_sym_BANG, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64917] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(66), 1, - sym_block, + [80919] = 3, + ACTIONS(5871), 1, + sym_identifier, + ACTIONS(5873), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64928] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1295), 1, - sym_parameters, + [80930] = 3, + ACTIONS(5875), 1, + anon_sym_SEMI, + ACTIONS(5877), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64939] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1577), 1, - sym_parameters, + [80941] = 3, + ACTIONS(4589), 1, + anon_sym_LBRACE, + STATE(614), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64950] = 3, - ACTIONS(3871), 1, - anon_sym_PLUS, - ACTIONS(4905), 1, - anon_sym_SEMI, + [80952] = 2, + ACTIONS(5044), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64961] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(416), 1, - sym_declaration_list, + [80960] = 2, + ACTIONS(5879), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64972] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1085), 1, - sym_block, + [80968] = 2, + ACTIONS(5881), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64983] = 3, - ACTIONS(4907), 1, + [80976] = 2, + ACTIONS(5883), 1, sym_identifier, - ACTIONS(4909), 1, - sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64994] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(83), 1, - sym_closure_parameters, + [80984] = 2, + ACTIONS(5885), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65005] = 2, + [80992] = 2, + ACTIONS(5887), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4911), 2, + [81000] = 2, + ACTIONS(5271), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [65014] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65025] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4913), 1, - anon_sym_EQ, + [81008] = 2, + ACTIONS(5267), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65036] = 2, + [81016] = 2, + ACTIONS(5889), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4127), 2, + [81024] = 2, + ACTIONS(3611), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [65045] = 3, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4915), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65056] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65067] = 2, + [81032] = 2, + ACTIONS(5891), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4917), 2, - anon_sym_const, - sym_mutable_specifier, - [65076] = 3, - ACTIONS(3368), 1, - anon_sym_BANG, - ACTIONS(4919), 1, - anon_sym_COLON_COLON, + [81040] = 2, + ACTIONS(5893), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65087] = 3, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, - ACTIONS(4921), 1, - anon_sym_BANG, + [81048] = 2, + ACTIONS(5895), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65098] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_declaration_list, + [81056] = 2, + ACTIONS(5897), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65109] = 2, + [81064] = 2, + ACTIONS(5899), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4923), 2, - anon_sym_const, - sym_mutable_specifier, - [65118] = 2, + [81072] = 2, + ACTIONS(5901), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4925), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65127] = 3, - ACTIONS(2478), 1, - anon_sym_COLON_COLON, - ACTIONS(3739), 1, - anon_sym_BANG, + [81080] = 2, + ACTIONS(5903), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65138] = 2, + [81088] = 2, + ACTIONS(5905), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3863), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65147] = 3, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, - ACTIONS(3382), 1, - anon_sym_BANG, + [81096] = 2, + ACTIONS(5907), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65158] = 2, + [81104] = 2, + ACTIONS(5909), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4443), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65167] = 3, - ACTIONS(3594), 1, - anon_sym_LBRACE, - STATE(912), 1, - sym_field_declaration_list, + [81112] = 2, + ACTIONS(5911), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65178] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_declaration_list, + [81120] = 2, + ACTIONS(4108), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65189] = 3, - ACTIONS(3205), 1, - anon_sym_LPAREN, - STATE(1304), 1, - sym_parameters, + [81128] = 2, + ACTIONS(5913), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65200] = 3, - ACTIONS(644), 1, - anon_sym_LBRACE, - STATE(224), 1, - sym_block, + [81136] = 2, + ACTIONS(5915), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65211] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_declaration_list, + [81144] = 2, + ACTIONS(3583), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65222] = 3, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4929), 1, - anon_sym_LBRACE, + [81152] = 2, + ACTIONS(5917), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65233] = 3, - ACTIONS(4931), 1, - anon_sym_LPAREN, - ACTIONS(4933), 1, - anon_sym_LBRACE, + [81160] = 2, + ACTIONS(3970), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65244] = 3, - ACTIONS(4935), 1, - anon_sym_SEMI, - ACTIONS(4937), 1, - anon_sym_as, + [81168] = 2, + ACTIONS(3605), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65255] = 2, + [81176] = 2, + ACTIONS(5919), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4116), 2, - anon_sym_COMMA, - anon_sym_GT, - [65264] = 3, - ACTIONS(3366), 1, - anon_sym_COLON_COLON, - ACTIONS(4921), 1, - anon_sym_BANG, + [81184] = 2, + ACTIONS(5921), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65275] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1075), 1, - sym_block, + [81192] = 2, + ACTIONS(4435), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65286] = 3, - ACTIONS(874), 1, - anon_sym_LBRACE, - STATE(1374), 1, - sym_block, + [81200] = 2, + ACTIONS(5248), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65297] = 3, - ACTIONS(3564), 1, - anon_sym_LBRACE, - STATE(301), 1, - sym_declaration_list, + [81208] = 2, + ACTIONS(5923), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65308] = 2, + [81216] = 2, + ACTIONS(3555), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4939), 2, - sym_float_literal, - sym_integer_literal, - [65317] = 2, + [81224] = 2, + ACTIONS(5925), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4941), 2, - anon_sym_const, - sym_mutable_specifier, - [65326] = 3, - ACTIONS(2123), 1, - anon_sym_SQUOTE, - STATE(2046), 1, - sym_lifetime, + [81232] = 2, + ACTIONS(5292), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65337] = 2, - ACTIONS(2261), 1, - anon_sym_PLUS, + [81240] = 2, + ACTIONS(5927), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65345] = 2, - ACTIONS(4943), 1, - anon_sym_COLON, + [81248] = 2, + ACTIONS(5929), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65353] = 2, - ACTIONS(4534), 1, - anon_sym_RBRACE, + [81256] = 2, + ACTIONS(4425), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65361] = 2, - ACTIONS(4945), 1, + [81264] = 2, + ACTIONS(5931), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65369] = 2, - ACTIONS(4947), 1, - sym_identifier, + [81272] = 2, + ACTIONS(5933), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65377] = 2, - ACTIONS(4510), 1, - sym_identifier, + [81280] = 2, + ACTIONS(4401), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65385] = 2, - ACTIONS(4949), 1, - sym_identifier, + [81288] = 2, + ACTIONS(4485), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65393] = 2, - ACTIONS(4951), 1, + [81296] = 2, + ACTIONS(5935), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65401] = 2, - ACTIONS(4953), 1, - anon_sym_RBRACK, + [81304] = 2, + ACTIONS(5937), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65409] = 2, - ACTIONS(4268), 1, - sym_identifier, + [81312] = 2, + ACTIONS(5939), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65417] = 2, - ACTIONS(4955), 1, - anon_sym_LT, + [81320] = 2, + ACTIONS(5941), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65425] = 2, - ACTIONS(4957), 1, - anon_sym_RBRACE, + [81328] = 2, + ACTIONS(5943), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65433] = 2, - ACTIONS(4959), 1, + [81336] = 2, + ACTIONS(5945), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65441] = 2, - ACTIONS(4961), 1, - anon_sym_EQ_GT, + [81344] = 2, + ACTIONS(5947), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65449] = 2, - ACTIONS(4963), 1, - anon_sym_EQ_GT, + [81352] = 2, + ACTIONS(5949), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65457] = 2, - ACTIONS(4965), 1, + [81360] = 2, + ACTIONS(5951), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65465] = 2, - ACTIONS(4500), 1, + [81368] = 2, + ACTIONS(5953), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65473] = 2, - ACTIONS(4967), 1, + [81376] = 2, + ACTIONS(5955), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65481] = 2, - ACTIONS(4492), 1, + [81384] = 2, + ACTIONS(5957), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65489] = 2, - ACTIONS(4969), 1, + [81392] = 2, + ACTIONS(5959), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65497] = 2, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, + [81400] = 2, + ACTIONS(5961), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65505] = 2, - ACTIONS(4971), 1, - anon_sym_RBRACK, + [81408] = 2, + ACTIONS(5963), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65513] = 2, - ACTIONS(4973), 1, - anon_sym_COLON, + [81416] = 2, + ACTIONS(5321), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65521] = 2, - ACTIONS(4975), 1, - anon_sym_SEMI, + [81424] = 2, + ACTIONS(5965), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65529] = 2, - ACTIONS(4484), 1, + [81432] = 2, + ACTIONS(5211), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65537] = 2, - ACTIONS(4977), 1, + [81440] = 2, + ACTIONS(5967), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65545] = 2, - ACTIONS(4979), 1, - sym_identifier, + [81448] = 2, + ACTIONS(5969), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65553] = 2, - ACTIONS(4462), 1, + [81456] = 2, + ACTIONS(5971), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65561] = 2, - ACTIONS(4981), 1, - sym_identifier, + [81464] = 2, + ACTIONS(776), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65569] = 2, - ACTIONS(4983), 1, - sym_identifier, + [81472] = 2, + ACTIONS(2977), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65577] = 2, - ACTIONS(4985), 1, - anon_sym_COLON_COLON, + [81480] = 2, + ACTIONS(5973), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65585] = 2, - ACTIONS(3312), 1, + [81488] = 2, + ACTIONS(5693), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65593] = 2, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + [81496] = 2, + ACTIONS(5975), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65601] = 2, - ACTIONS(4987), 1, - sym_identifier, + [81504] = 2, + ACTIONS(4715), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65609] = 2, - ACTIONS(4989), 1, - sym_identifier, + [81512] = 2, + ACTIONS(5977), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65617] = 2, - ACTIONS(4991), 1, - sym_identifier, + [81520] = 2, + ACTIONS(4902), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65625] = 2, - ACTIONS(4993), 1, - sym_identifier, + [81528] = 2, + ACTIONS(5343), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65633] = 2, - ACTIONS(4995), 1, - anon_sym_COLON_COLON, + [81536] = 2, + ACTIONS(5979), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65641] = 2, - ACTIONS(4997), 1, - sym_identifier, + [81544] = 2, + ACTIONS(5981), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65649] = 2, - ACTIONS(3111), 1, - anon_sym_COLON_COLON, + [81552] = 2, + ACTIONS(5713), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65657] = 2, - ACTIONS(3292), 1, - anon_sym_COLON_COLON, + [81560] = 2, + ACTIONS(5983), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65665] = 2, - ACTIONS(4999), 1, - sym_identifier, + [81568] = 2, + ACTIONS(5985), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65673] = 2, - ACTIONS(2995), 1, - anon_sym_COLON_COLON, + [81576] = 2, + ACTIONS(5987), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65681] = 2, - ACTIONS(5001), 1, - anon_sym_COLON_COLON, + [81584] = 2, + ACTIONS(5989), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65689] = 2, - ACTIONS(5003), 1, + [81592] = 2, + ACTIONS(5991), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65697] = 2, - ACTIONS(5005), 1, - anon_sym_fn, + [81600] = 2, + ACTIONS(5353), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65705] = 2, - ACTIONS(5007), 1, - anon_sym_RBRACK, + [81608] = 2, + ACTIONS(5371), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65713] = 2, - ACTIONS(4769), 1, + [81616] = 2, + ACTIONS(5175), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65721] = 2, - ACTIONS(5009), 1, + [81624] = 2, + ACTIONS(5993), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65729] = 2, - ACTIONS(5011), 1, + [81632] = 2, + ACTIONS(5995), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65737] = 2, - ACTIONS(5013), 1, - sym_identifier, + [81640] = 2, + ACTIONS(5997), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65745] = 2, - ACTIONS(5015), 1, + [81648] = 2, + ACTIONS(5999), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65753] = 2, - ACTIONS(5017), 1, - sym_identifier, + [81656] = 2, + ACTIONS(6001), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65761] = 2, - ACTIONS(5019), 1, + [81664] = 2, + ACTIONS(6003), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65769] = 2, - ACTIONS(5021), 1, - sym_identifier, + [81672] = 2, + ACTIONS(4703), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65777] = 2, - ACTIONS(5023), 1, - sym_identifier, + [81680] = 2, + ACTIONS(6005), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65785] = 2, - ACTIONS(5025), 1, - anon_sym_COLON, + [81688] = 2, + ACTIONS(5406), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65793] = 2, - ACTIONS(5027), 1, - sym_identifier, + [81696] = 2, + ACTIONS(4786), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65801] = 2, - ACTIONS(5029), 1, - sym_identifier, + [81704] = 2, + ACTIONS(4983), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65809] = 2, - ACTIONS(5031), 1, - anon_sym_SEMI, + [81712] = 2, + ACTIONS(6007), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65817] = 2, - ACTIONS(5033), 1, - sym_identifier, + [81720] = 2, + ACTIONS(6009), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65825] = 2, - ACTIONS(5035), 1, - anon_sym_fn, + [81728] = 2, + ACTIONS(6011), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65833] = 2, - ACTIONS(5037), 1, - sym_identifier, + [81736] = 2, + ACTIONS(5821), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65841] = 2, - ACTIONS(5039), 1, - sym_identifier, + [81744] = 2, + ACTIONS(4004), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65849] = 2, - ACTIONS(2478), 1, + [81752] = 2, + ACTIONS(2995), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65857] = 2, - ACTIONS(5041), 1, - anon_sym_RPAREN, + [81760] = 2, + ACTIONS(1024), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65865] = 2, - ACTIONS(4919), 1, - anon_sym_COLON_COLON, + [81768] = 2, + ACTIONS(6013), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65873] = 2, - ACTIONS(5043), 1, + [81776] = 2, + ACTIONS(6015), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65881] = 2, - ACTIONS(5045), 1, - anon_sym_fn, + [81784] = 2, + ACTIONS(6017), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65889] = 2, - ACTIONS(5047), 1, + [81792] = 2, + ACTIONS(6019), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65897] = 2, - ACTIONS(5049), 1, - anon_sym_EQ_GT, + [81800] = 2, + ACTIONS(6021), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65905] = 2, - ACTIONS(5051), 1, + [81808] = 2, + ACTIONS(5121), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65913] = 2, - ACTIONS(5053), 1, - sym_self, + [81816] = 2, + ACTIONS(6023), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65921] = 2, - ACTIONS(5055), 1, - anon_sym_COLON, + [81824] = 2, + ACTIONS(5473), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65929] = 2, - ACTIONS(4387), 1, - anon_sym_RBRACE, + [81832] = 2, + ACTIONS(6025), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65937] = 2, - ACTIONS(2472), 1, - anon_sym_COLON_COLON, + [81840] = 2, + ACTIONS(5109), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65945] = 2, - ACTIONS(5057), 1, - anon_sym_RBRACE, + [81848] = 2, + ACTIONS(6027), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65953] = 2, - ACTIONS(5059), 1, + [81856] = 2, + ACTIONS(6029), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65961] = 2, - ACTIONS(5061), 1, + [81864] = 2, + ACTIONS(6031), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65969] = 2, - ACTIONS(5063), 1, - sym_identifier, + [81872] = 2, + ACTIONS(5400), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65977] = 2, - ACTIONS(2951), 1, - anon_sym_RPAREN, + [81880] = 2, + ACTIONS(5013), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65985] = 2, - ACTIONS(5065), 1, - anon_sym_RBRACE, + [81888] = 2, + ACTIONS(3097), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65993] = 2, - ACTIONS(5067), 1, - sym_identifier, + [81896] = 2, + ACTIONS(6033), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66001] = 2, - ACTIONS(5069), 1, + [81904] = 2, + ACTIONS(5408), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66009] = 2, - ACTIONS(5071), 1, - sym_identifier, + [81912] = 2, + ACTIONS(6035), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66017] = 2, - ACTIONS(2247), 1, - anon_sym_PLUS, + [81920] = 2, + ACTIONS(6037), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66025] = 2, - ACTIONS(5073), 1, - sym_identifier, + [81928] = 2, + ACTIONS(1052), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66033] = 2, - ACTIONS(4290), 1, - sym_identifier, + [81936] = 2, + ACTIONS(6039), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66041] = 2, - ACTIONS(5075), 1, - anon_sym_RBRACK, + [81944] = 2, + ACTIONS(6041), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66049] = 2, - ACTIONS(4540), 1, + [81952] = 2, + ACTIONS(6043), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66057] = 2, - ACTIONS(5077), 1, + [81960] = 2, + ACTIONS(5419), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66065] = 2, - ACTIONS(5079), 1, - anon_sym_EQ, + [81968] = 2, + ACTIONS(6045), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66073] = 2, - ACTIONS(5081), 1, - anon_sym_SEMI, + [81976] = 2, + ACTIONS(6047), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66081] = 2, - ACTIONS(5083), 1, + [81984] = 2, + ACTIONS(4524), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66089] = 2, - ACTIONS(363), 1, - anon_sym_RBRACK, + [81992] = 2, + ACTIONS(6049), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66097] = 2, - ACTIONS(5085), 1, - anon_sym_COLON, + [82000] = 2, + ACTIONS(6051), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66105] = 2, - ACTIONS(4538), 1, + [82008] = 2, + ACTIONS(6053), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66113] = 2, - ACTIONS(5087), 1, - anon_sym_RPAREN, + [82016] = 2, + ACTIONS(6055), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66121] = 2, - ACTIONS(4351), 1, - anon_sym_RBRACE, + [82024] = 2, + ACTIONS(6057), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66129] = 2, - ACTIONS(5089), 1, - anon_sym_LBRACK, + [82032] = 2, + ACTIONS(6059), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [82040] = 2, + ACTIONS(4738), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66137] = 2, - ACTIONS(5091), 1, + [82048] = 2, + ACTIONS(6061), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66145] = 2, - ACTIONS(5093), 1, - anon_sym_COLON, + [82056] = 2, + ACTIONS(6063), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66153] = 2, - ACTIONS(5095), 1, - anon_sym_COLON, + [82064] = 2, + ACTIONS(5451), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66161] = 2, - ACTIONS(5097), 1, - sym_identifier, + [82072] = 2, + ACTIONS(6065), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66169] = 2, - ACTIONS(5099), 1, + [82080] = 2, + ACTIONS(5269), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66177] = 2, - ACTIONS(4050), 1, + [82088] = 2, + ACTIONS(5017), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66185] = 2, - ACTIONS(5101), 1, - sym_identifier, + [82096] = 2, + ACTIONS(2719), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66193] = 2, - ACTIONS(5103), 1, - anon_sym_SEMI, + [82104] = 2, + ACTIONS(6067), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66201] = 2, - ACTIONS(4549), 1, - anon_sym_RPAREN, + [82112] = 2, + ACTIONS(6069), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66209] = 2, - ACTIONS(5105), 1, + [82120] = 2, + ACTIONS(6071), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66217] = 2, - ACTIONS(4565), 1, - anon_sym_GT, + [82128] = 2, + ACTIONS(6073), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66225] = 2, - ACTIONS(4522), 1, - anon_sym_RBRACE, + [82136] = 2, + ACTIONS(6075), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66233] = 2, - ACTIONS(5107), 1, + [82144] = 2, + ACTIONS(6077), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66241] = 2, - ACTIONS(5109), 1, - anon_sym_SEMI, + [82152] = 2, + ACTIONS(3597), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66249] = 2, - ACTIONS(4881), 1, - anon_sym_SEMI, + [82160] = 2, + ACTIONS(4833), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66257] = 2, - ACTIONS(5111), 1, + [82168] = 2, + ACTIONS(6079), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66265] = 2, - ACTIONS(5113), 1, - anon_sym_RBRACK, + [82176] = 2, + ACTIONS(6081), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66273] = 2, - ACTIONS(2464), 1, + [82184] = 2, + ACTIONS(2983), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66281] = 2, - ACTIONS(5115), 1, - anon_sym_SEMI, + [82192] = 2, + ACTIONS(6083), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66289] = 2, - ACTIONS(4873), 1, + [82200] = 2, + ACTIONS(6085), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66297] = 2, - ACTIONS(5117), 1, + [82208] = 2, + ACTIONS(6087), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [82216] = 2, + ACTIONS(6089), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66305] = 2, - ACTIONS(5119), 1, - sym_identifier, + [82224] = 2, + ACTIONS(6091), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66313] = 2, - ACTIONS(5121), 1, - anon_sym_RPAREN, + [82232] = 2, + ACTIONS(4947), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66321] = 2, - ACTIONS(3821), 1, - anon_sym_COLON_COLON, + [82240] = 2, + ACTIONS(6093), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66329] = 2, - ACTIONS(5123), 1, - sym_identifier, + [82248] = 2, + ACTIONS(6095), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66337] = 2, - ACTIONS(5125), 1, - anon_sym_COLON, + [82256] = 2, + ACTIONS(844), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66345] = 2, - ACTIONS(5127), 1, - anon_sym_SEMI, + [82264] = 2, + ACTIONS(6097), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66353] = 2, - ACTIONS(5129), 1, - anon_sym_LPAREN, + [82272] = 2, + ACTIONS(3581), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66361] = 2, - ACTIONS(2179), 1, - anon_sym_EQ_GT, + [82280] = 2, + ACTIONS(5496), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66369] = 2, - ACTIONS(3257), 1, - anon_sym_fn, + [82288] = 2, + ACTIONS(5819), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66377] = 2, - ACTIONS(5131), 1, - ts_builtin_sym_end, + [82296] = 2, + ACTIONS(6099), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66385] = 2, - ACTIONS(5133), 1, - anon_sym_SEMI, + [82304] = 2, + ACTIONS(6101), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66393] = 2, - ACTIONS(2866), 1, - anon_sym_COLON_COLON, + [82312] = 2, + ACTIONS(6103), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66401] = 2, - ACTIONS(5135), 1, - anon_sym_SEMI, + [82320] = 2, + ACTIONS(5504), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66409] = 2, - ACTIONS(5137), 1, + [82328] = 2, + ACTIONS(3551), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66417] = 2, - ACTIONS(5139), 1, - sym_identifier, + [82336] = 2, + ACTIONS(6105), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66425] = 2, - ACTIONS(5141), 1, - anon_sym_RBRACK, + [82344] = 2, + ACTIONS(6107), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66433] = 2, - ACTIONS(5143), 1, - anon_sym_SEMI, + [82352] = 2, + ACTIONS(6109), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66441] = 2, - ACTIONS(3795), 1, - anon_sym_SEMI, + [82360] = 2, + ACTIONS(6111), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66449] = 2, - ACTIONS(5145), 1, + [82368] = 2, + ACTIONS(6113), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66457] = 2, - ACTIONS(5147), 1, - anon_sym_SEMI, + [82376] = 2, + ACTIONS(2703), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66465] = 2, - ACTIONS(5149), 1, - anon_sym_SEMI, + [82384] = 2, + ACTIONS(5169), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66473] = 2, - ACTIONS(5151), 1, - anon_sym_EQ, + [82392] = 2, + ACTIONS(6115), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66481] = 2, - ACTIONS(5153), 1, + [82400] = 2, + ACTIONS(6117), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66489] = 2, - ACTIONS(2480), 1, - anon_sym_COLON_COLON, + [82408] = 2, + ACTIONS(6119), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66497] = 2, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, + [82416] = 2, + ACTIONS(6121), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66505] = 2, - ACTIONS(628), 1, - anon_sym_RBRACK, + [82424] = 2, + ACTIONS(6123), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66513] = 2, - ACTIONS(5157), 1, - sym_identifier, + [82432] = 2, + ACTIONS(6125), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66521] = 2, - ACTIONS(2175), 1, - anon_sym_EQ_GT, + [82440] = 2, + ACTIONS(6127), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66529] = 2, - ACTIONS(5159), 1, - anon_sym_fn, + [82448] = 2, + ACTIONS(4649), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66537] = 2, - ACTIONS(5161), 1, - sym_identifier, + [82456] = 2, + ACTIONS(6129), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66545] = 2, - ACTIONS(5163), 1, - anon_sym_COLON, + [82464] = 2, + ACTIONS(5805), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66553] = 2, - ACTIONS(3785), 1, + [82472] = 2, + ACTIONS(6131), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66561] = 2, - ACTIONS(5165), 1, + [82480] = 2, + ACTIONS(6133), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66569] = 2, - ACTIONS(5167), 1, - sym_identifier, + [82488] = 2, + ACTIONS(5799), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66577] = 2, - ACTIONS(5169), 1, - anon_sym_LBRACK, + [82496] = 2, + ACTIONS(4734), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66585] = 2, - ACTIONS(5171), 1, + [82504] = 2, + ACTIONS(6135), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66593] = 2, - ACTIONS(5173), 1, - anon_sym_SEMI, + [82512] = 2, + ACTIONS(6137), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66601] = 2, - ACTIONS(5175), 1, - anon_sym_SEMI, + [82520] = 2, + ACTIONS(3984), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66609] = 2, - ACTIONS(5177), 1, - anon_sym_RPAREN, + [82528] = 2, + ACTIONS(4518), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66617] = 2, - ACTIONS(3941), 1, + [82536] = 2, + ACTIONS(5042), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66625] = 2, - ACTIONS(5179), 1, + [82544] = 2, + ACTIONS(6139), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66633] = 2, - ACTIONS(5181), 1, - sym_identifier, + [82552] = 2, + ACTIONS(5797), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66641] = 2, - ACTIONS(3915), 1, + [82560] = 2, + ACTIONS(4663), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66649] = 2, - ACTIONS(5183), 1, + [82568] = 2, + ACTIONS(6141), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66657] = 2, - ACTIONS(5185), 1, - anon_sym_fn, + [82576] = 2, + ACTIONS(4601), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66665] = 2, - ACTIONS(3933), 1, + [82584] = 2, + ACTIONS(6143), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66673] = 2, - ACTIONS(5187), 1, + [82592] = 2, + ACTIONS(3573), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66681] = 2, - ACTIONS(4897), 1, + [82600] = 2, + ACTIONS(6145), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66689] = 2, - ACTIONS(4787), 1, + [82608] = 2, + ACTIONS(6147), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66697] = 2, - ACTIONS(3801), 1, + [82616] = 2, + ACTIONS(6149), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [82624] = 2, + ACTIONS(5793), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66705] = 2, - ACTIONS(3855), 1, - sym_identifier, + [82632] = 2, + ACTIONS(6151), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66713] = 2, - ACTIONS(5189), 1, + [82640] = 2, + ACTIONS(6153), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66721] = 2, - ACTIONS(5191), 1, + [82648] = 2, + ACTIONS(6155), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66729] = 2, - ACTIONS(5193), 1, - anon_sym_COLON, + [82656] = 2, + ACTIONS(6157), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66737] = 2, - ACTIONS(5195), 1, - anon_sym_SEMI, + [82664] = 2, + ACTIONS(6159), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66745] = 2, - ACTIONS(5197), 1, - anon_sym_SEMI, + [82672] = 2, + ACTIONS(6161), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66753] = 2, - ACTIONS(5199), 1, - sym_identifier, + [82680] = 2, + ACTIONS(6163), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66761] = 2, - ACTIONS(3298), 1, - anon_sym_COLON_COLON, + [82688] = 2, + ACTIONS(792), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66769] = 2, - ACTIONS(5201), 1, - anon_sym_COLON, + [82696] = 2, + ACTIONS(6165), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66777] = 2, - ACTIONS(5203), 1, - anon_sym_LBRACK, + [82704] = 2, + ACTIONS(6167), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66785] = 2, - ACTIONS(5205), 1, - anon_sym_SEMI, + [82712] = 2, + ACTIONS(6169), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66793] = 2, - ACTIONS(5207), 1, + [82720] = 2, + ACTIONS(6171), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66801] = 2, - ACTIONS(3819), 1, - anon_sym_SEMI, + [82728] = 2, + ACTIONS(856), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66809] = 2, - ACTIONS(5209), 1, - anon_sym_COLON_COLON, + [82736] = 2, + ACTIONS(6173), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66817] = 2, - ACTIONS(5211), 1, + [82744] = 2, + ACTIONS(6175), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66825] = 2, - ACTIONS(5213), 1, - anon_sym_RBRACK, + [82752] = 2, + ACTIONS(5571), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66833] = 2, - ACTIONS(5215), 1, - anon_sym_SEMI, + [82760] = 2, + ACTIONS(6177), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66841] = 2, - ACTIONS(5217), 1, - anon_sym_COLON, + [82768] = 2, + ACTIONS(6179), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66849] = 2, - ACTIONS(5219), 1, - anon_sym_EQ, + [82776] = 2, + ACTIONS(6181), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66857] = 2, - ACTIONS(4670), 1, - anon_sym_RBRACE, + [82784] = 2, + ACTIONS(6183), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66865] = 2, - ACTIONS(5221), 1, - anon_sym_COLON, + [82792] = 2, + ACTIONS(5381), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66873] = 2, - ACTIONS(4006), 1, - anon_sym_RPAREN, + [82800] = 2, + ACTIONS(6185), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66881] = 2, - ACTIONS(5223), 1, - anon_sym_SEMI, + [82808] = 2, + ACTIONS(5575), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66889] = 2, - ACTIONS(5225), 1, + [82816] = 2, + ACTIONS(6187), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66897] = 2, - ACTIONS(5227), 1, - sym_identifier, + [82824] = 2, + ACTIONS(6189), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66905] = 2, - ACTIONS(5229), 1, - anon_sym_SEMI, + [82832] = 2, + ACTIONS(6191), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66913] = 2, - ACTIONS(5231), 1, + [82840] = 2, + ACTIONS(6193), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66921] = 2, - ACTIONS(4180), 1, - sym_identifier, + [82848] = 2, + ACTIONS(6195), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66929] = 2, - ACTIONS(5233), 1, + [82856] = 2, + ACTIONS(6197), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66937] = 2, - ACTIONS(4276), 1, - sym_identifier, + [82864] = 2, + ACTIONS(5729), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66945] = 2, - ACTIONS(5235), 1, + [82872] = 2, + ACTIONS(6199), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66953] = 2, - ACTIONS(4026), 1, - anon_sym_RPAREN, + [82880] = 2, + ACTIONS(2755), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66961] = 2, - ACTIONS(5237), 1, + [82888] = 2, + ACTIONS(6201), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66969] = 2, - ACTIONS(5239), 1, - anon_sym_RBRACE, + [82896] = 2, + ACTIONS(6203), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66977] = 2, - ACTIONS(5241), 1, + [82904] = 2, + ACTIONS(6205), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66985] = 2, - ACTIONS(5243), 1, + [82912] = 2, + ACTIONS(6207), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66993] = 2, - ACTIONS(5245), 1, - anon_sym_EQ_GT, + [82920] = 2, + ACTIONS(6209), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67001] = 2, - ACTIONS(5247), 1, - anon_sym_LPAREN, + [82928] = 2, + ACTIONS(6211), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67009] = 2, - ACTIONS(4732), 1, - anon_sym_RBRACE, + [82936] = 2, + ACTIONS(6213), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67017] = 2, - ACTIONS(2993), 1, + [82944] = 2, + ACTIONS(6215), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67025] = 2, - ACTIONS(5249), 1, - anon_sym_RPAREN, + [82952] = 2, + ACTIONS(6217), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67033] = 2, - ACTIONS(5251), 1, + [82960] = 2, + ACTIONS(6219), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [82968] = 2, + ACTIONS(6221), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67041] = 2, - ACTIONS(5253), 1, + [82976] = 2, + ACTIONS(6223), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67049] = 2, - ACTIONS(3233), 1, + [82984] = 2, + ACTIONS(6225), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [82992] = 2, + ACTIONS(6227), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [83000] = 2, + ACTIONS(6229), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [83008] = 2, + ACTIONS(3913), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67057] = 2, - ACTIONS(5255), 1, - sym_identifier, + [83016] = 2, + ACTIONS(6231), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67065] = 2, - ACTIONS(5257), 1, - anon_sym_RBRACE, + [83024] = 2, + ACTIONS(3937), 1, + anon_sym_fn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [83032] = 2, + ACTIONS(6233), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67073] = 2, - ACTIONS(5259), 1, + [83040] = 2, + ACTIONS(6235), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67081] = 2, - ACTIONS(5261), 1, + [83048] = 2, + ACTIONS(6237), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67089] = 2, - ACTIONS(4759), 1, + [83056] = 2, + ACTIONS(3253), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [83064] = 2, + ACTIONS(5685), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67097] = 2, - ACTIONS(4176), 1, - anon_sym_RBRACK, + [83072] = 2, + ACTIONS(6239), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67105] = 2, - ACTIONS(5263), 1, + [83080] = 2, + ACTIONS(6241), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67113] = 2, - ACTIONS(5265), 1, + [83088] = 2, + ACTIONS(6243), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67121] = 2, - ACTIONS(5267), 1, + [83096] = 2, + ACTIONS(6245), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67129] = 2, - ACTIONS(5269), 1, + [83104] = 2, + ACTIONS(6247), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67137] = 2, - ACTIONS(5271), 1, + [83112] = 2, + ACTIONS(6249), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67145] = 2, - ACTIONS(5273), 1, + [83120] = 2, + ACTIONS(6251), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67153] = 2, - ACTIONS(5275), 1, + [83128] = 2, + ACTIONS(6253), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67161] = 2, - ACTIONS(4156), 1, - anon_sym_RPAREN, + [83136] = 2, + ACTIONS(6255), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [83144] = 2, + ACTIONS(6257), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67169] = 2, - ACTIONS(4795), 1, + [83152] = 2, + ACTIONS(6259), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67177] = 2, - ACTIONS(5277), 1, + [83160] = 2, + ACTIONS(6261), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67185] = 2, - ACTIONS(5279), 1, + [83168] = 2, + ACTIONS(6263), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [83176] = 2, + ACTIONS(6265), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [83184] = 2, + ACTIONS(6267), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67193] = 2, - ACTIONS(4791), 1, + [83192] = 2, + ACTIONS(6269), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [83200] = 2, + ACTIONS(6271), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + [83208] = 2, + ACTIONS(6273), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(594)] = 0, - [SMALL_STATE(595)] = 129, - [SMALL_STATE(596)] = 258, - [SMALL_STATE(597)] = 387, - [SMALL_STATE(598)] = 516, - [SMALL_STATE(599)] = 645, - [SMALL_STATE(600)] = 774, - [SMALL_STATE(601)] = 903, - [SMALL_STATE(602)] = 1032, - [SMALL_STATE(603)] = 1161, - [SMALL_STATE(604)] = 1290, - [SMALL_STATE(605)] = 1419, - [SMALL_STATE(606)] = 1548, - [SMALL_STATE(607)] = 1677, - [SMALL_STATE(608)] = 1806, - [SMALL_STATE(609)] = 1935, - [SMALL_STATE(610)] = 2064, - [SMALL_STATE(611)] = 2193, - [SMALL_STATE(612)] = 2322, - [SMALL_STATE(613)] = 2451, - [SMALL_STATE(614)] = 2580, - [SMALL_STATE(615)] = 2709, - [SMALL_STATE(616)] = 2838, - [SMALL_STATE(617)] = 2967, - [SMALL_STATE(618)] = 3096, - [SMALL_STATE(619)] = 3225, - [SMALL_STATE(620)] = 3354, - [SMALL_STATE(621)] = 3483, - [SMALL_STATE(622)] = 3612, - [SMALL_STATE(623)] = 3741, - [SMALL_STATE(624)] = 3870, - [SMALL_STATE(625)] = 3999, - [SMALL_STATE(626)] = 4128, - [SMALL_STATE(627)] = 4257, - [SMALL_STATE(628)] = 4386, - [SMALL_STATE(629)] = 4515, - [SMALL_STATE(630)] = 4644, - [SMALL_STATE(631)] = 4773, - [SMALL_STATE(632)] = 4902, - [SMALL_STATE(633)] = 5031, - [SMALL_STATE(634)] = 5160, - [SMALL_STATE(635)] = 5289, - [SMALL_STATE(636)] = 5418, - [SMALL_STATE(637)] = 5547, - [SMALL_STATE(638)] = 5676, - [SMALL_STATE(639)] = 5805, - [SMALL_STATE(640)] = 5934, - [SMALL_STATE(641)] = 6063, - [SMALL_STATE(642)] = 6192, - [SMALL_STATE(643)] = 6321, - [SMALL_STATE(644)] = 6450, - [SMALL_STATE(645)] = 6579, - [SMALL_STATE(646)] = 6708, - [SMALL_STATE(647)] = 6837, - [SMALL_STATE(648)] = 6966, - [SMALL_STATE(649)] = 7095, - [SMALL_STATE(650)] = 7224, - [SMALL_STATE(651)] = 7353, - [SMALL_STATE(652)] = 7482, - [SMALL_STATE(653)] = 7611, - [SMALL_STATE(654)] = 7740, - [SMALL_STATE(655)] = 7869, - [SMALL_STATE(656)] = 7998, - [SMALL_STATE(657)] = 8127, - [SMALL_STATE(658)] = 8256, - [SMALL_STATE(659)] = 8385, - [SMALL_STATE(660)] = 8514, - [SMALL_STATE(661)] = 8643, - [SMALL_STATE(662)] = 8772, - [SMALL_STATE(663)] = 8901, - [SMALL_STATE(664)] = 9030, - [SMALL_STATE(665)] = 9159, - [SMALL_STATE(666)] = 9290, - [SMALL_STATE(667)] = 9419, - [SMALL_STATE(668)] = 9548, - [SMALL_STATE(669)] = 9677, - [SMALL_STATE(670)] = 9806, - [SMALL_STATE(671)] = 9935, - [SMALL_STATE(672)] = 10064, - [SMALL_STATE(673)] = 10193, - [SMALL_STATE(674)] = 10322, - [SMALL_STATE(675)] = 10451, - [SMALL_STATE(676)] = 10580, - [SMALL_STATE(677)] = 10709, - [SMALL_STATE(678)] = 10838, - [SMALL_STATE(679)] = 10967, - [SMALL_STATE(680)] = 11096, - [SMALL_STATE(681)] = 11225, - [SMALL_STATE(682)] = 11354, - [SMALL_STATE(683)] = 11483, - [SMALL_STATE(684)] = 11612, - [SMALL_STATE(685)] = 11741, - [SMALL_STATE(686)] = 11870, - [SMALL_STATE(687)] = 11999, - [SMALL_STATE(688)] = 12128, - [SMALL_STATE(689)] = 12257, - [SMALL_STATE(690)] = 12386, - [SMALL_STATE(691)] = 12515, - [SMALL_STATE(692)] = 12644, - [SMALL_STATE(693)] = 12773, - [SMALL_STATE(694)] = 12902, - [SMALL_STATE(695)] = 13031, - [SMALL_STATE(696)] = 13160, - [SMALL_STATE(697)] = 13289, - [SMALL_STATE(698)] = 13418, - [SMALL_STATE(699)] = 13547, - [SMALL_STATE(700)] = 13676, - [SMALL_STATE(701)] = 13805, - [SMALL_STATE(702)] = 13934, - [SMALL_STATE(703)] = 14004, - [SMALL_STATE(704)] = 14069, - [SMALL_STATE(705)] = 14134, - [SMALL_STATE(706)] = 14199, - [SMALL_STATE(707)] = 14264, - [SMALL_STATE(708)] = 14326, - [SMALL_STATE(709)] = 14396, - [SMALL_STATE(710)] = 14463, - [SMALL_STATE(711)] = 14530, - [SMALL_STATE(712)] = 14594, - [SMALL_STATE(713)] = 14656, - [SMALL_STATE(714)] = 14712, - [SMALL_STATE(715)] = 14768, - [SMALL_STATE(716)] = 14832, - [SMALL_STATE(717)] = 14892, - [SMALL_STATE(718)] = 14948, - [SMALL_STATE(719)] = 15008, - [SMALL_STATE(720)] = 15068, - [SMALL_STATE(721)] = 15132, - [SMALL_STATE(722)] = 15196, - [SMALL_STATE(723)] = 15252, - [SMALL_STATE(724)] = 15308, - [SMALL_STATE(725)] = 15368, - [SMALL_STATE(726)] = 15427, - [SMALL_STATE(727)] = 15486, - [SMALL_STATE(728)] = 15543, - [SMALL_STATE(729)] = 15600, - [SMALL_STATE(730)] = 15657, - [SMALL_STATE(731)] = 15714, - [SMALL_STATE(732)] = 15769, - [SMALL_STATE(733)] = 15828, - [SMALL_STATE(734)] = 15882, - [SMALL_STATE(735)] = 15936, - [SMALL_STATE(736)] = 15990, - [SMALL_STATE(737)] = 16044, - [SMALL_STATE(738)] = 16098, - [SMALL_STATE(739)] = 16152, - [SMALL_STATE(740)] = 16206, - [SMALL_STATE(741)] = 16260, - [SMALL_STATE(742)] = 16314, - [SMALL_STATE(743)] = 16368, - [SMALL_STATE(744)] = 16422, - [SMALL_STATE(745)] = 16476, - [SMALL_STATE(746)] = 16530, - [SMALL_STATE(747)] = 16584, - [SMALL_STATE(748)] = 16640, - [SMALL_STATE(749)] = 16694, - [SMALL_STATE(750)] = 16748, - [SMALL_STATE(751)] = 16802, - [SMALL_STATE(752)] = 16856, - [SMALL_STATE(753)] = 16910, - [SMALL_STATE(754)] = 16964, - [SMALL_STATE(755)] = 17018, - [SMALL_STATE(756)] = 17072, - [SMALL_STATE(757)] = 17126, - [SMALL_STATE(758)] = 17180, - [SMALL_STATE(759)] = 17234, - [SMALL_STATE(760)] = 17288, - [SMALL_STATE(761)] = 17342, - [SMALL_STATE(762)] = 17398, - [SMALL_STATE(763)] = 17452, - [SMALL_STATE(764)] = 17508, - [SMALL_STATE(765)] = 17562, - [SMALL_STATE(766)] = 17616, - [SMALL_STATE(767)] = 17670, - [SMALL_STATE(768)] = 17724, - [SMALL_STATE(769)] = 17778, - [SMALL_STATE(770)] = 17832, - [SMALL_STATE(771)] = 17886, - [SMALL_STATE(772)] = 17940, - [SMALL_STATE(773)] = 17994, - [SMALL_STATE(774)] = 18048, - [SMALL_STATE(775)] = 18102, - [SMALL_STATE(776)] = 18156, - [SMALL_STATE(777)] = 18210, - [SMALL_STATE(778)] = 18264, - [SMALL_STATE(779)] = 18318, - [SMALL_STATE(780)] = 18372, - [SMALL_STATE(781)] = 18426, - [SMALL_STATE(782)] = 18480, - [SMALL_STATE(783)] = 18534, - [SMALL_STATE(784)] = 18588, - [SMALL_STATE(785)] = 18642, - [SMALL_STATE(786)] = 18696, - [SMALL_STATE(787)] = 18750, - [SMALL_STATE(788)] = 18804, - [SMALL_STATE(789)] = 18858, - [SMALL_STATE(790)] = 18912, - [SMALL_STATE(791)] = 18966, - [SMALL_STATE(792)] = 19020, - [SMALL_STATE(793)] = 19074, - [SMALL_STATE(794)] = 19128, - [SMALL_STATE(795)] = 19182, - [SMALL_STATE(796)] = 19236, - [SMALL_STATE(797)] = 19290, - [SMALL_STATE(798)] = 19346, - [SMALL_STATE(799)] = 19402, - [SMALL_STATE(800)] = 19458, - [SMALL_STATE(801)] = 19512, - [SMALL_STATE(802)] = 19566, - [SMALL_STATE(803)] = 19620, - [SMALL_STATE(804)] = 19674, - [SMALL_STATE(805)] = 19728, - [SMALL_STATE(806)] = 19782, - [SMALL_STATE(807)] = 19836, - [SMALL_STATE(808)] = 19890, - [SMALL_STATE(809)] = 19944, - [SMALL_STATE(810)] = 19998, - [SMALL_STATE(811)] = 20052, - [SMALL_STATE(812)] = 20108, - [SMALL_STATE(813)] = 20162, - [SMALL_STATE(814)] = 20216, - [SMALL_STATE(815)] = 20270, - [SMALL_STATE(816)] = 20324, - [SMALL_STATE(817)] = 20378, - [SMALL_STATE(818)] = 20432, - [SMALL_STATE(819)] = 20486, - [SMALL_STATE(820)] = 20540, - [SMALL_STATE(821)] = 20596, - [SMALL_STATE(822)] = 20650, - [SMALL_STATE(823)] = 20706, - [SMALL_STATE(824)] = 20764, - [SMALL_STATE(825)] = 20818, - [SMALL_STATE(826)] = 20874, - [SMALL_STATE(827)] = 20930, - [SMALL_STATE(828)] = 20984, - [SMALL_STATE(829)] = 21038, - [SMALL_STATE(830)] = 21094, - [SMALL_STATE(831)] = 21148, - [SMALL_STATE(832)] = 21202, - [SMALL_STATE(833)] = 21256, - [SMALL_STATE(834)] = 21310, - [SMALL_STATE(835)] = 21364, - [SMALL_STATE(836)] = 21418, - [SMALL_STATE(837)] = 21472, - [SMALL_STATE(838)] = 21526, - [SMALL_STATE(839)] = 21580, - [SMALL_STATE(840)] = 21634, - [SMALL_STATE(841)] = 21688, - [SMALL_STATE(842)] = 21742, - [SMALL_STATE(843)] = 21796, - [SMALL_STATE(844)] = 21850, - [SMALL_STATE(845)] = 21904, - [SMALL_STATE(846)] = 21958, - [SMALL_STATE(847)] = 22012, - [SMALL_STATE(848)] = 22066, - [SMALL_STATE(849)] = 22120, - [SMALL_STATE(850)] = 22174, - [SMALL_STATE(851)] = 22228, - [SMALL_STATE(852)] = 22282, - [SMALL_STATE(853)] = 22336, - [SMALL_STATE(854)] = 22390, - [SMALL_STATE(855)] = 22444, - [SMALL_STATE(856)] = 22498, - [SMALL_STATE(857)] = 22552, - [SMALL_STATE(858)] = 22606, - [SMALL_STATE(859)] = 22660, - [SMALL_STATE(860)] = 22714, - [SMALL_STATE(861)] = 22768, - [SMALL_STATE(862)] = 22822, - [SMALL_STATE(863)] = 22876, - [SMALL_STATE(864)] = 22930, - [SMALL_STATE(865)] = 22984, - [SMALL_STATE(866)] = 23038, - [SMALL_STATE(867)] = 23092, - [SMALL_STATE(868)] = 23146, - [SMALL_STATE(869)] = 23200, - [SMALL_STATE(870)] = 23254, - [SMALL_STATE(871)] = 23308, - [SMALL_STATE(872)] = 23362, - [SMALL_STATE(873)] = 23416, - [SMALL_STATE(874)] = 23470, - [SMALL_STATE(875)] = 23524, - [SMALL_STATE(876)] = 23578, - [SMALL_STATE(877)] = 23632, - [SMALL_STATE(878)] = 23686, - [SMALL_STATE(879)] = 23740, - [SMALL_STATE(880)] = 23794, - [SMALL_STATE(881)] = 23848, - [SMALL_STATE(882)] = 23902, - [SMALL_STATE(883)] = 23956, - [SMALL_STATE(884)] = 24010, - [SMALL_STATE(885)] = 24064, - [SMALL_STATE(886)] = 24118, - [SMALL_STATE(887)] = 24172, - [SMALL_STATE(888)] = 24226, - [SMALL_STATE(889)] = 24280, - [SMALL_STATE(890)] = 24334, - [SMALL_STATE(891)] = 24388, - [SMALL_STATE(892)] = 24442, - [SMALL_STATE(893)] = 24496, - [SMALL_STATE(894)] = 24550, - [SMALL_STATE(895)] = 24604, - [SMALL_STATE(896)] = 24658, - [SMALL_STATE(897)] = 24712, - [SMALL_STATE(898)] = 24766, - [SMALL_STATE(899)] = 24820, - [SMALL_STATE(900)] = 24874, - [SMALL_STATE(901)] = 24928, - [SMALL_STATE(902)] = 24982, - [SMALL_STATE(903)] = 25036, - [SMALL_STATE(904)] = 25090, - [SMALL_STATE(905)] = 25144, - [SMALL_STATE(906)] = 25198, - [SMALL_STATE(907)] = 25252, - [SMALL_STATE(908)] = 25306, - [SMALL_STATE(909)] = 25360, - [SMALL_STATE(910)] = 25414, - [SMALL_STATE(911)] = 25472, - [SMALL_STATE(912)] = 25526, - [SMALL_STATE(913)] = 25580, - [SMALL_STATE(914)] = 25634, - [SMALL_STATE(915)] = 25688, - [SMALL_STATE(916)] = 25742, - [SMALL_STATE(917)] = 25796, - [SMALL_STATE(918)] = 25850, - [SMALL_STATE(919)] = 25904, - [SMALL_STATE(920)] = 25958, - [SMALL_STATE(921)] = 26012, - [SMALL_STATE(922)] = 26066, - [SMALL_STATE(923)] = 26122, - [SMALL_STATE(924)] = 26176, - [SMALL_STATE(925)] = 26230, - [SMALL_STATE(926)] = 26286, - [SMALL_STATE(927)] = 26340, - [SMALL_STATE(928)] = 26394, - [SMALL_STATE(929)] = 26450, - [SMALL_STATE(930)] = 26504, - [SMALL_STATE(931)] = 26558, - [SMALL_STATE(932)] = 26612, - [SMALL_STATE(933)] = 26668, - [SMALL_STATE(934)] = 26722, - [SMALL_STATE(935)] = 26776, - [SMALL_STATE(936)] = 26830, - [SMALL_STATE(937)] = 26884, - [SMALL_STATE(938)] = 26938, - [SMALL_STATE(939)] = 26992, - [SMALL_STATE(940)] = 27046, - [SMALL_STATE(941)] = 27100, - [SMALL_STATE(942)] = 27154, - [SMALL_STATE(943)] = 27208, - [SMALL_STATE(944)] = 27262, - [SMALL_STATE(945)] = 27316, - [SMALL_STATE(946)] = 27370, - [SMALL_STATE(947)] = 27424, - [SMALL_STATE(948)] = 27478, - [SMALL_STATE(949)] = 27532, - [SMALL_STATE(950)] = 27586, - [SMALL_STATE(951)] = 27640, - [SMALL_STATE(952)] = 27694, - [SMALL_STATE(953)] = 27748, - [SMALL_STATE(954)] = 27802, - [SMALL_STATE(955)] = 27856, - [SMALL_STATE(956)] = 27910, - [SMALL_STATE(957)] = 27964, - [SMALL_STATE(958)] = 28018, - [SMALL_STATE(959)] = 28072, - [SMALL_STATE(960)] = 28126, - [SMALL_STATE(961)] = 28180, - [SMALL_STATE(962)] = 28234, - [SMALL_STATE(963)] = 28288, - [SMALL_STATE(964)] = 28342, - [SMALL_STATE(965)] = 28396, - [SMALL_STATE(966)] = 28449, - [SMALL_STATE(967)] = 28502, - [SMALL_STATE(968)] = 28555, - [SMALL_STATE(969)] = 28638, - [SMALL_STATE(970)] = 28713, - [SMALL_STATE(971)] = 28794, - [SMALL_STATE(972)] = 28867, - [SMALL_STATE(973)] = 28936, - [SMALL_STATE(974)] = 28989, - [SMALL_STATE(975)] = 29042, - [SMALL_STATE(976)] = 29095, - [SMALL_STATE(977)] = 29180, - [SMALL_STATE(978)] = 29233, - [SMALL_STATE(979)] = 29318, - [SMALL_STATE(980)] = 29371, - [SMALL_STATE(981)] = 29424, - [SMALL_STATE(982)] = 29479, - [SMALL_STATE(983)] = 29532, - [SMALL_STATE(984)] = 29599, - [SMALL_STATE(985)] = 29652, - [SMALL_STATE(986)] = 29717, - [SMALL_STATE(987)] = 29770, - [SMALL_STATE(988)] = 29823, - [SMALL_STATE(989)] = 29876, - [SMALL_STATE(990)] = 29929, - [SMALL_STATE(991)] = 29982, - [SMALL_STATE(992)] = 30035, - [SMALL_STATE(993)] = 30088, - [SMALL_STATE(994)] = 30141, - [SMALL_STATE(995)] = 30226, - [SMALL_STATE(996)] = 30303, - [SMALL_STATE(997)] = 30356, - [SMALL_STATE(998)] = 30409, - [SMALL_STATE(999)] = 30462, - [SMALL_STATE(1000)] = 30533, - [SMALL_STATE(1001)] = 30586, - [SMALL_STATE(1002)] = 30639, - [SMALL_STATE(1003)] = 30704, - [SMALL_STATE(1004)] = 30763, - [SMALL_STATE(1005)] = 30816, - [SMALL_STATE(1006)] = 30869, - [SMALL_STATE(1007)] = 30922, - [SMALL_STATE(1008)] = 30975, - [SMALL_STATE(1009)] = 31028, - [SMALL_STATE(1010)] = 31081, - [SMALL_STATE(1011)] = 31134, - [SMALL_STATE(1012)] = 31187, - [SMALL_STATE(1013)] = 31240, - [SMALL_STATE(1014)] = 31293, - [SMALL_STATE(1015)] = 31348, - [SMALL_STATE(1016)] = 31401, - [SMALL_STATE(1017)] = 31454, - [SMALL_STATE(1018)] = 31507, - [SMALL_STATE(1019)] = 31560, - [SMALL_STATE(1020)] = 31613, - [SMALL_STATE(1021)] = 31666, - [SMALL_STATE(1022)] = 31719, - [SMALL_STATE(1023)] = 31772, - [SMALL_STATE(1024)] = 31825, - [SMALL_STATE(1025)] = 31878, - [SMALL_STATE(1026)] = 31931, - [SMALL_STATE(1027)] = 31984, - [SMALL_STATE(1028)] = 32037, - [SMALL_STATE(1029)] = 32090, - [SMALL_STATE(1030)] = 32181, - [SMALL_STATE(1031)] = 32234, - [SMALL_STATE(1032)] = 32287, - [SMALL_STATE(1033)] = 32340, - [SMALL_STATE(1034)] = 32405, - [SMALL_STATE(1035)] = 32458, - [SMALL_STATE(1036)] = 32543, - [SMALL_STATE(1037)] = 32596, - [SMALL_STATE(1038)] = 32649, - [SMALL_STATE(1039)] = 32702, - [SMALL_STATE(1040)] = 32755, - [SMALL_STATE(1041)] = 32808, - [SMALL_STATE(1042)] = 32861, - [SMALL_STATE(1043)] = 32946, - [SMALL_STATE(1044)] = 32999, - [SMALL_STATE(1045)] = 33052, - [SMALL_STATE(1046)] = 33105, - [SMALL_STATE(1047)] = 33194, - [SMALL_STATE(1048)] = 33259, - [SMALL_STATE(1049)] = 33312, - [SMALL_STATE(1050)] = 33365, - [SMALL_STATE(1051)] = 33418, - [SMALL_STATE(1052)] = 33471, - [SMALL_STATE(1053)] = 33526, - [SMALL_STATE(1054)] = 33579, - [SMALL_STATE(1055)] = 33632, - [SMALL_STATE(1056)] = 33685, - [SMALL_STATE(1057)] = 33738, - [SMALL_STATE(1058)] = 33791, - [SMALL_STATE(1059)] = 33844, - [SMALL_STATE(1060)] = 33897, - [SMALL_STATE(1061)] = 33950, - [SMALL_STATE(1062)] = 34003, - [SMALL_STATE(1063)] = 34056, - [SMALL_STATE(1064)] = 34109, - [SMALL_STATE(1065)] = 34164, - [SMALL_STATE(1066)] = 34217, - [SMALL_STATE(1067)] = 34270, - [SMALL_STATE(1068)] = 34323, - [SMALL_STATE(1069)] = 34376, - [SMALL_STATE(1070)] = 34429, - [SMALL_STATE(1071)] = 34520, - [SMALL_STATE(1072)] = 34573, - [SMALL_STATE(1073)] = 34626, - [SMALL_STATE(1074)] = 34679, - [SMALL_STATE(1075)] = 34732, - [SMALL_STATE(1076)] = 34785, - [SMALL_STATE(1077)] = 34838, - [SMALL_STATE(1078)] = 34895, - [SMALL_STATE(1079)] = 34948, - [SMALL_STATE(1080)] = 35037, - [SMALL_STATE(1081)] = 35090, - [SMALL_STATE(1082)] = 35143, - [SMALL_STATE(1083)] = 35196, - [SMALL_STATE(1084)] = 35249, - [SMALL_STATE(1085)] = 35302, - [SMALL_STATE(1086)] = 35355, - [SMALL_STATE(1087)] = 35415, - [SMALL_STATE(1088)] = 35467, - [SMALL_STATE(1089)] = 35519, - [SMALL_STATE(1090)] = 35606, - [SMALL_STATE(1091)] = 35701, - [SMALL_STATE(1092)] = 35788, - [SMALL_STATE(1093)] = 35839, - [SMALL_STATE(1094)] = 35926, - [SMALL_STATE(1095)] = 35977, - [SMALL_STATE(1096)] = 36056, - [SMALL_STATE(1097)] = 36151, - [SMALL_STATE(1098)] = 36236, - [SMALL_STATE(1099)] = 36321, - [SMALL_STATE(1100)] = 36378, - [SMALL_STATE(1101)] = 36465, - [SMALL_STATE(1102)] = 36519, - [SMALL_STATE(1103)] = 36611, - [SMALL_STATE(1104)] = 36703, - [SMALL_STATE(1105)] = 36759, - [SMALL_STATE(1106)] = 36835, - [SMALL_STATE(1107)] = 36911, - [SMALL_STATE(1108)] = 36987, - [SMALL_STATE(1109)] = 37063, - [SMALL_STATE(1110)] = 37112, - [SMALL_STATE(1111)] = 37201, - [SMALL_STATE(1112)] = 37274, - [SMALL_STATE(1113)] = 37363, - [SMALL_STATE(1114)] = 37412, - [SMALL_STATE(1115)] = 37501, - [SMALL_STATE(1116)] = 37552, - [SMALL_STATE(1117)] = 37641, - [SMALL_STATE(1118)] = 37728, - [SMALL_STATE(1119)] = 37815, - [SMALL_STATE(1120)] = 37904, - [SMALL_STATE(1121)] = 37991, - [SMALL_STATE(1122)] = 38080, - [SMALL_STATE(1123)] = 38169, - [SMALL_STATE(1124)] = 38258, - [SMALL_STATE(1125)] = 38347, - [SMALL_STATE(1126)] = 38396, - [SMALL_STATE(1127)] = 38445, - [SMALL_STATE(1128)] = 38534, - [SMALL_STATE(1129)] = 38583, - [SMALL_STATE(1130)] = 38672, - [SMALL_STATE(1131)] = 38761, - [SMALL_STATE(1132)] = 38850, - [SMALL_STATE(1133)] = 38939, - [SMALL_STATE(1134)] = 38992, - [SMALL_STATE(1135)] = 39041, - [SMALL_STATE(1136)] = 39090, - [SMALL_STATE(1137)] = 39179, - [SMALL_STATE(1138)] = 39268, - [SMALL_STATE(1139)] = 39355, - [SMALL_STATE(1140)] = 39444, - [SMALL_STATE(1141)] = 39533, - [SMALL_STATE(1142)] = 39620, - [SMALL_STATE(1143)] = 39709, - [SMALL_STATE(1144)] = 39796, - [SMALL_STATE(1145)] = 39885, - [SMALL_STATE(1146)] = 39974, - [SMALL_STATE(1147)] = 40063, - [SMALL_STATE(1148)] = 40152, - [SMALL_STATE(1149)] = 40239, - [SMALL_STATE(1150)] = 40328, - [SMALL_STATE(1151)] = 40417, - [SMALL_STATE(1152)] = 40506, - [SMALL_STATE(1153)] = 40595, - [SMALL_STATE(1154)] = 40682, - [SMALL_STATE(1155)] = 40771, - [SMALL_STATE(1156)] = 40860, - [SMALL_STATE(1157)] = 40949, - [SMALL_STATE(1158)] = 40998, - [SMALL_STATE(1159)] = 41087, - [SMALL_STATE(1160)] = 41174, - [SMALL_STATE(1161)] = 41225, - [SMALL_STATE(1162)] = 41314, - [SMALL_STATE(1163)] = 41403, - [SMALL_STATE(1164)] = 41490, - [SMALL_STATE(1165)] = 41579, - [SMALL_STATE(1166)] = 41668, - [SMALL_STATE(1167)] = 41757, - [SMALL_STATE(1168)] = 41810, - [SMALL_STATE(1169)] = 41899, - [SMALL_STATE(1170)] = 41988, - [SMALL_STATE(1171)] = 42077, - [SMALL_STATE(1172)] = 42166, - [SMALL_STATE(1173)] = 42255, - [SMALL_STATE(1174)] = 42304, - [SMALL_STATE(1175)] = 42393, - [SMALL_STATE(1176)] = 42482, - [SMALL_STATE(1177)] = 42571, - [SMALL_STATE(1178)] = 42660, - [SMALL_STATE(1179)] = 42738, - [SMALL_STATE(1180)] = 42816, - [SMALL_STATE(1181)] = 42902, - [SMALL_STATE(1182)] = 42988, - [SMALL_STATE(1183)] = 43074, - [SMALL_STATE(1184)] = 43160, - [SMALL_STATE(1185)] = 43246, - [SMALL_STATE(1186)] = 43332, - [SMALL_STATE(1187)] = 43418, - [SMALL_STATE(1188)] = 43468, - [SMALL_STATE(1189)] = 43548, - [SMALL_STATE(1190)] = 43634, - [SMALL_STATE(1191)] = 43720, - [SMALL_STATE(1192)] = 43806, - [SMALL_STATE(1193)] = 43892, - [SMALL_STATE(1194)] = 43978, - [SMALL_STATE(1195)] = 44028, - [SMALL_STATE(1196)] = 44114, - [SMALL_STATE(1197)] = 44200, - [SMALL_STATE(1198)] = 44260, - [SMALL_STATE(1199)] = 44346, - [SMALL_STATE(1200)] = 44432, - [SMALL_STATE(1201)] = 44518, - [SMALL_STATE(1202)] = 44598, - [SMALL_STATE(1203)] = 44658, - [SMALL_STATE(1204)] = 44712, - [SMALL_STATE(1205)] = 44798, - [SMALL_STATE(1206)] = 44884, - [SMALL_STATE(1207)] = 44970, - [SMALL_STATE(1208)] = 45056, - [SMALL_STATE(1209)] = 45142, - [SMALL_STATE(1210)] = 45192, - [SMALL_STATE(1211)] = 45278, - [SMALL_STATE(1212)] = 45356, - [SMALL_STATE(1213)] = 45442, - [SMALL_STATE(1214)] = 45528, - [SMALL_STATE(1215)] = 45614, - [SMALL_STATE(1216)] = 45676, - [SMALL_STATE(1217)] = 45736, - [SMALL_STATE(1218)] = 45816, - [SMALL_STATE(1219)] = 45888, - [SMALL_STATE(1220)] = 45954, - [SMALL_STATE(1221)] = 46030, - [SMALL_STATE(1222)] = 46110, - [SMALL_STATE(1223)] = 46170, - [SMALL_STATE(1224)] = 46256, - [SMALL_STATE(1225)] = 46342, - [SMALL_STATE(1226)] = 46412, - [SMALL_STATE(1227)] = 46480, - [SMALL_STATE(1228)] = 46544, - [SMALL_STATE(1229)] = 46630, - [SMALL_STATE(1230)] = 46710, - [SMALL_STATE(1231)] = 46760, - [SMALL_STATE(1232)] = 46846, - [SMALL_STATE(1233)] = 46932, - [SMALL_STATE(1234)] = 47018, - [SMALL_STATE(1235)] = 47104, - [SMALL_STATE(1236)] = 47175, - [SMALL_STATE(1237)] = 47243, - [SMALL_STATE(1238)] = 47311, - [SMALL_STATE(1239)] = 47376, - [SMALL_STATE(1240)] = 47441, - [SMALL_STATE(1241)] = 47506, - [SMALL_STATE(1242)] = 47571, - [SMALL_STATE(1243)] = 47636, - [SMALL_STATE(1244)] = 47676, - [SMALL_STATE(1245)] = 47716, - [SMALL_STATE(1246)] = 47756, - [SMALL_STATE(1247)] = 47811, - [SMALL_STATE(1248)] = 47866, - [SMALL_STATE(1249)] = 47921, - [SMALL_STATE(1250)] = 47976, - [SMALL_STATE(1251)] = 48031, - [SMALL_STATE(1252)] = 48086, - [SMALL_STATE(1253)] = 48141, - [SMALL_STATE(1254)] = 48193, - [SMALL_STATE(1255)] = 48245, - [SMALL_STATE(1256)] = 48275, - [SMALL_STATE(1257)] = 48305, - [SMALL_STATE(1258)] = 48345, - [SMALL_STATE(1259)] = 48387, - [SMALL_STATE(1260)] = 48416, - [SMALL_STATE(1261)] = 48445, - [SMALL_STATE(1262)] = 48474, - [SMALL_STATE(1263)] = 48503, - [SMALL_STATE(1264)] = 48532, - [SMALL_STATE(1265)] = 48569, - [SMALL_STATE(1266)] = 48598, - [SMALL_STATE(1267)] = 48627, - [SMALL_STATE(1268)] = 48656, - [SMALL_STATE(1269)] = 48693, - [SMALL_STATE(1270)] = 48725, - [SMALL_STATE(1271)] = 48779, - [SMALL_STATE(1272)] = 48811, - [SMALL_STATE(1273)] = 48843, - [SMALL_STATE(1274)] = 48897, - [SMALL_STATE(1275)] = 48920, - [SMALL_STATE(1276)] = 48945, - [SMALL_STATE(1277)] = 48969, - [SMALL_STATE(1278)] = 48993, - [SMALL_STATE(1279)] = 49037, - [SMALL_STATE(1280)] = 49061, - [SMALL_STATE(1281)] = 49105, - [SMALL_STATE(1282)] = 49127, - [SMALL_STATE(1283)] = 49149, - [SMALL_STATE(1284)] = 49179, - [SMALL_STATE(1285)] = 49203, - [SMALL_STATE(1286)] = 49227, - [SMALL_STATE(1287)] = 49251, - [SMALL_STATE(1288)] = 49275, - [SMALL_STATE(1289)] = 49299, - [SMALL_STATE(1290)] = 49323, - [SMALL_STATE(1291)] = 49345, - [SMALL_STATE(1292)] = 49391, - [SMALL_STATE(1293)] = 49413, - [SMALL_STATE(1294)] = 49437, - [SMALL_STATE(1295)] = 49462, - [SMALL_STATE(1296)] = 49485, - [SMALL_STATE(1297)] = 49506, - [SMALL_STATE(1298)] = 49527, - [SMALL_STATE(1299)] = 49552, - [SMALL_STATE(1300)] = 49573, - [SMALL_STATE(1301)] = 49596, - [SMALL_STATE(1302)] = 49619, - [SMALL_STATE(1303)] = 49642, - [SMALL_STATE(1304)] = 49663, - [SMALL_STATE(1305)] = 49686, - [SMALL_STATE(1306)] = 49711, - [SMALL_STATE(1307)] = 49738, - [SMALL_STATE(1308)] = 49761, - [SMALL_STATE(1309)] = 49786, - [SMALL_STATE(1310)] = 49809, - [SMALL_STATE(1311)] = 49834, - [SMALL_STATE(1312)] = 49857, - [SMALL_STATE(1313)] = 49882, - [SMALL_STATE(1314)] = 49903, - [SMALL_STATE(1315)] = 49948, - [SMALL_STATE(1316)] = 49968, - [SMALL_STATE(1317)] = 49988, - [SMALL_STATE(1318)] = 50010, - [SMALL_STATE(1319)] = 50030, - [SMALL_STATE(1320)] = 50050, - [SMALL_STATE(1321)] = 50070, - [SMALL_STATE(1322)] = 50090, - [SMALL_STATE(1323)] = 50110, - [SMALL_STATE(1324)] = 50130, - [SMALL_STATE(1325)] = 50150, - [SMALL_STATE(1326)] = 50170, - [SMALL_STATE(1327)] = 50194, - [SMALL_STATE(1328)] = 50216, - [SMALL_STATE(1329)] = 50236, - [SMALL_STATE(1330)] = 50256, - [SMALL_STATE(1331)] = 50276, - [SMALL_STATE(1332)] = 50298, - [SMALL_STATE(1333)] = 50318, - [SMALL_STATE(1334)] = 50338, - [SMALL_STATE(1335)] = 50358, - [SMALL_STATE(1336)] = 50378, - [SMALL_STATE(1337)] = 50398, - [SMALL_STATE(1338)] = 50418, - [SMALL_STATE(1339)] = 50438, - [SMALL_STATE(1340)] = 50458, - [SMALL_STATE(1341)] = 50478, - [SMALL_STATE(1342)] = 50498, - [SMALL_STATE(1343)] = 50518, - [SMALL_STATE(1344)] = 50538, - [SMALL_STATE(1345)] = 50558, - [SMALL_STATE(1346)] = 50578, - [SMALL_STATE(1347)] = 50601, - [SMALL_STATE(1348)] = 50624, - [SMALL_STATE(1349)] = 50645, - [SMALL_STATE(1350)] = 50670, - [SMALL_STATE(1351)] = 50693, - [SMALL_STATE(1352)] = 50714, - [SMALL_STATE(1353)] = 50739, - [SMALL_STATE(1354)] = 50764, - [SMALL_STATE(1355)] = 50789, - [SMALL_STATE(1356)] = 50812, - [SMALL_STATE(1357)] = 50835, - [SMALL_STATE(1358)] = 50858, - [SMALL_STATE(1359)] = 50881, - [SMALL_STATE(1360)] = 50906, - [SMALL_STATE(1361)] = 50941, - [SMALL_STATE(1362)] = 50962, - [SMALL_STATE(1363)] = 50987, - [SMALL_STATE(1364)] = 51010, - [SMALL_STATE(1365)] = 51033, - [SMALL_STATE(1366)] = 51056, - [SMALL_STATE(1367)] = 51081, - [SMALL_STATE(1368)] = 51104, - [SMALL_STATE(1369)] = 51129, - [SMALL_STATE(1370)] = 51152, - [SMALL_STATE(1371)] = 51178, - [SMALL_STATE(1372)] = 51198, - [SMALL_STATE(1373)] = 51218, - [SMALL_STATE(1374)] = 51238, - [SMALL_STATE(1375)] = 51258, - [SMALL_STATE(1376)] = 51278, - [SMALL_STATE(1377)] = 51298, - [SMALL_STATE(1378)] = 51318, - [SMALL_STATE(1379)] = 51338, - [SMALL_STATE(1380)] = 51358, - [SMALL_STATE(1381)] = 51378, - [SMALL_STATE(1382)] = 51398, - [SMALL_STATE(1383)] = 51418, - [SMALL_STATE(1384)] = 51438, - [SMALL_STATE(1385)] = 51458, - [SMALL_STATE(1386)] = 51482, - [SMALL_STATE(1387)] = 51502, - [SMALL_STATE(1388)] = 51522, - [SMALL_STATE(1389)] = 51542, - [SMALL_STATE(1390)] = 51562, - [SMALL_STATE(1391)] = 51582, - [SMALL_STATE(1392)] = 51602, - [SMALL_STATE(1393)] = 51622, - [SMALL_STATE(1394)] = 51642, - [SMALL_STATE(1395)] = 51662, - [SMALL_STATE(1396)] = 51682, - [SMALL_STATE(1397)] = 51702, - [SMALL_STATE(1398)] = 51722, - [SMALL_STATE(1399)] = 51748, - [SMALL_STATE(1400)] = 51768, - [SMALL_STATE(1401)] = 51788, - [SMALL_STATE(1402)] = 51812, - [SMALL_STATE(1403)] = 51836, - [SMALL_STATE(1404)] = 51856, - [SMALL_STATE(1405)] = 51876, - [SMALL_STATE(1406)] = 51900, - [SMALL_STATE(1407)] = 51920, - [SMALL_STATE(1408)] = 51951, - [SMALL_STATE(1409)] = 51984, - [SMALL_STATE(1410)] = 52015, - [SMALL_STATE(1411)] = 52046, - [SMALL_STATE(1412)] = 52079, - [SMALL_STATE(1413)] = 52112, - [SMALL_STATE(1414)] = 52137, - [SMALL_STATE(1415)] = 52168, - [SMALL_STATE(1416)] = 52193, - [SMALL_STATE(1417)] = 52218, - [SMALL_STATE(1418)] = 52249, - [SMALL_STATE(1419)] = 52276, - [SMALL_STATE(1420)] = 52307, - [SMALL_STATE(1421)] = 52338, - [SMALL_STATE(1422)] = 52369, - [SMALL_STATE(1423)] = 52392, - [SMALL_STATE(1424)] = 52425, - [SMALL_STATE(1425)] = 52448, - [SMALL_STATE(1426)] = 52471, - [SMALL_STATE(1427)] = 52500, - [SMALL_STATE(1428)] = 52531, - [SMALL_STATE(1429)] = 52553, - [SMALL_STATE(1430)] = 52583, - [SMALL_STATE(1431)] = 52613, - [SMALL_STATE(1432)] = 52635, - [SMALL_STATE(1433)] = 52661, - [SMALL_STATE(1434)] = 52693, - [SMALL_STATE(1435)] = 52725, - [SMALL_STATE(1436)] = 52747, - [SMALL_STATE(1437)] = 52777, - [SMALL_STATE(1438)] = 52809, - [SMALL_STATE(1439)] = 52839, - [SMALL_STATE(1440)] = 52861, - [SMALL_STATE(1441)] = 52887, - [SMALL_STATE(1442)] = 52917, - [SMALL_STATE(1443)] = 52947, - [SMALL_STATE(1444)] = 52977, - [SMALL_STATE(1445)] = 53007, - [SMALL_STATE(1446)] = 53037, - [SMALL_STATE(1447)] = 53063, - [SMALL_STATE(1448)] = 53093, - [SMALL_STATE(1449)] = 53123, - [SMALL_STATE(1450)] = 53153, - [SMALL_STATE(1451)] = 53185, - [SMALL_STATE(1452)] = 53215, - [SMALL_STATE(1453)] = 53245, - [SMALL_STATE(1454)] = 53275, - [SMALL_STATE(1455)] = 53305, - [SMALL_STATE(1456)] = 53335, - [SMALL_STATE(1457)] = 53365, - [SMALL_STATE(1458)] = 53395, - [SMALL_STATE(1459)] = 53417, - [SMALL_STATE(1460)] = 53447, - [SMALL_STATE(1461)] = 53477, - [SMALL_STATE(1462)] = 53499, - [SMALL_STATE(1463)] = 53522, - [SMALL_STATE(1464)] = 53547, - [SMALL_STATE(1465)] = 53568, - [SMALL_STATE(1466)] = 53591, - [SMALL_STATE(1467)] = 53618, - [SMALL_STATE(1468)] = 53643, - [SMALL_STATE(1469)] = 53668, - [SMALL_STATE(1470)] = 53693, - [SMALL_STATE(1471)] = 53722, - [SMALL_STATE(1472)] = 53747, - [SMALL_STATE(1473)] = 53770, - [SMALL_STATE(1474)] = 53789, - [SMALL_STATE(1475)] = 53816, - [SMALL_STATE(1476)] = 53839, - [SMALL_STATE(1477)] = 53866, - [SMALL_STATE(1478)] = 53891, - [SMALL_STATE(1479)] = 53918, - [SMALL_STATE(1480)] = 53945, - [SMALL_STATE(1481)] = 53970, - [SMALL_STATE(1482)] = 53999, - [SMALL_STATE(1483)] = 54018, - [SMALL_STATE(1484)] = 54037, - [SMALL_STATE(1485)] = 54066, - [SMALL_STATE(1486)] = 54085, - [SMALL_STATE(1487)] = 54112, - [SMALL_STATE(1488)] = 54131, - [SMALL_STATE(1489)] = 54160, - [SMALL_STATE(1490)] = 54187, - [SMALL_STATE(1491)] = 54206, - [SMALL_STATE(1492)] = 54227, - [SMALL_STATE(1493)] = 54254, - [SMALL_STATE(1494)] = 54281, - [SMALL_STATE(1495)] = 54308, - [SMALL_STATE(1496)] = 54333, - [SMALL_STATE(1497)] = 54352, - [SMALL_STATE(1498)] = 54371, - [SMALL_STATE(1499)] = 54396, - [SMALL_STATE(1500)] = 54423, - [SMALL_STATE(1501)] = 54442, - [SMALL_STATE(1502)] = 54461, - [SMALL_STATE(1503)] = 54488, - [SMALL_STATE(1504)] = 54515, - [SMALL_STATE(1505)] = 54534, - [SMALL_STATE(1506)] = 54563, - [SMALL_STATE(1507)] = 54590, - [SMALL_STATE(1508)] = 54605, - [SMALL_STATE(1509)] = 54634, - [SMALL_STATE(1510)] = 54661, - [SMALL_STATE(1511)] = 54684, - [SMALL_STATE(1512)] = 54706, - [SMALL_STATE(1513)] = 54732, - [SMALL_STATE(1514)] = 54748, - [SMALL_STATE(1515)] = 54774, - [SMALL_STATE(1516)] = 54800, - [SMALL_STATE(1517)] = 54824, - [SMALL_STATE(1518)] = 54850, - [SMALL_STATE(1519)] = 54866, - [SMALL_STATE(1520)] = 54892, - [SMALL_STATE(1521)] = 54906, - [SMALL_STATE(1522)] = 54932, - [SMALL_STATE(1523)] = 54956, - [SMALL_STATE(1524)] = 54982, - [SMALL_STATE(1525)] = 54998, - [SMALL_STATE(1526)] = 55024, - [SMALL_STATE(1527)] = 55040, - [SMALL_STATE(1528)] = 55066, - [SMALL_STATE(1529)] = 55092, - [SMALL_STATE(1530)] = 55114, - [SMALL_STATE(1531)] = 55140, - [SMALL_STATE(1532)] = 55156, - [SMALL_STATE(1533)] = 55180, - [SMALL_STATE(1534)] = 55206, - [SMALL_STATE(1535)] = 55220, - [SMALL_STATE(1536)] = 55234, - [SMALL_STATE(1537)] = 55260, - [SMALL_STATE(1538)] = 55274, - [SMALL_STATE(1539)] = 55288, - [SMALL_STATE(1540)] = 55302, - [SMALL_STATE(1541)] = 55328, - [SMALL_STATE(1542)] = 55354, - [SMALL_STATE(1543)] = 55380, - [SMALL_STATE(1544)] = 55406, - [SMALL_STATE(1545)] = 55420, - [SMALL_STATE(1546)] = 55436, - [SMALL_STATE(1547)] = 55460, - [SMALL_STATE(1548)] = 55486, - [SMALL_STATE(1549)] = 55508, - [SMALL_STATE(1550)] = 55534, - [SMALL_STATE(1551)] = 55560, - [SMALL_STATE(1552)] = 55584, - [SMALL_STATE(1553)] = 55600, - [SMALL_STATE(1554)] = 55622, - [SMALL_STATE(1555)] = 55644, - [SMALL_STATE(1556)] = 55666, - [SMALL_STATE(1557)] = 55682, - [SMALL_STATE(1558)] = 55705, - [SMALL_STATE(1559)] = 55728, - [SMALL_STATE(1560)] = 55751, - [SMALL_STATE(1561)] = 55774, - [SMALL_STATE(1562)] = 55793, - [SMALL_STATE(1563)] = 55816, - [SMALL_STATE(1564)] = 55839, - [SMALL_STATE(1565)] = 55862, - [SMALL_STATE(1566)] = 55885, - [SMALL_STATE(1567)] = 55908, - [SMALL_STATE(1568)] = 55931, - [SMALL_STATE(1569)] = 55954, - [SMALL_STATE(1570)] = 55977, - [SMALL_STATE(1571)] = 56000, - [SMALL_STATE(1572)] = 56017, - [SMALL_STATE(1573)] = 56040, - [SMALL_STATE(1574)] = 56063, - [SMALL_STATE(1575)] = 56086, - [SMALL_STATE(1576)] = 56109, - [SMALL_STATE(1577)] = 56126, - [SMALL_STATE(1578)] = 56149, - [SMALL_STATE(1579)] = 56172, - [SMALL_STATE(1580)] = 56195, - [SMALL_STATE(1581)] = 56218, - [SMALL_STATE(1582)] = 56241, - [SMALL_STATE(1583)] = 56264, - [SMALL_STATE(1584)] = 56283, - [SMALL_STATE(1585)] = 56306, - [SMALL_STATE(1586)] = 56323, - [SMALL_STATE(1587)] = 56340, - [SMALL_STATE(1588)] = 56363, - [SMALL_STATE(1589)] = 56386, - [SMALL_STATE(1590)] = 56409, - [SMALL_STATE(1591)] = 56432, - [SMALL_STATE(1592)] = 56455, - [SMALL_STATE(1593)] = 56478, - [SMALL_STATE(1594)] = 56501, - [SMALL_STATE(1595)] = 56524, - [SMALL_STATE(1596)] = 56541, - [SMALL_STATE(1597)] = 56564, - [SMALL_STATE(1598)] = 56587, - [SMALL_STATE(1599)] = 56606, - [SMALL_STATE(1600)] = 56629, - [SMALL_STATE(1601)] = 56646, - [SMALL_STATE(1602)] = 56669, - [SMALL_STATE(1603)] = 56692, - [SMALL_STATE(1604)] = 56715, - [SMALL_STATE(1605)] = 56738, - [SMALL_STATE(1606)] = 56753, - [SMALL_STATE(1607)] = 56774, - [SMALL_STATE(1608)] = 56795, - [SMALL_STATE(1609)] = 56812, - [SMALL_STATE(1610)] = 56835, - [SMALL_STATE(1611)] = 56850, - [SMALL_STATE(1612)] = 56873, - [SMALL_STATE(1613)] = 56896, - [SMALL_STATE(1614)] = 56919, - [SMALL_STATE(1615)] = 56942, - [SMALL_STATE(1616)] = 56965, - [SMALL_STATE(1617)] = 56988, - [SMALL_STATE(1618)] = 57006, - [SMALL_STATE(1619)] = 57018, - [SMALL_STATE(1620)] = 57038, - [SMALL_STATE(1621)] = 57050, - [SMALL_STATE(1622)] = 57062, - [SMALL_STATE(1623)] = 57082, - [SMALL_STATE(1624)] = 57098, - [SMALL_STATE(1625)] = 57110, - [SMALL_STATE(1626)] = 57126, - [SMALL_STATE(1627)] = 57138, - [SMALL_STATE(1628)] = 57156, - [SMALL_STATE(1629)] = 57168, - [SMALL_STATE(1630)] = 57184, - [SMALL_STATE(1631)] = 57196, - [SMALL_STATE(1632)] = 57208, - [SMALL_STATE(1633)] = 57220, - [SMALL_STATE(1634)] = 57240, - [SMALL_STATE(1635)] = 57260, - [SMALL_STATE(1636)] = 57278, - [SMALL_STATE(1637)] = 57290, - [SMALL_STATE(1638)] = 57302, - [SMALL_STATE(1639)] = 57318, - [SMALL_STATE(1640)] = 57338, - [SMALL_STATE(1641)] = 57354, - [SMALL_STATE(1642)] = 57374, - [SMALL_STATE(1643)] = 57390, - [SMALL_STATE(1644)] = 57410, - [SMALL_STATE(1645)] = 57430, - [SMALL_STATE(1646)] = 57450, - [SMALL_STATE(1647)] = 57468, - [SMALL_STATE(1648)] = 57488, - [SMALL_STATE(1649)] = 57508, - [SMALL_STATE(1650)] = 57528, - [SMALL_STATE(1651)] = 57544, - [SMALL_STATE(1652)] = 57560, - [SMALL_STATE(1653)] = 57572, - [SMALL_STATE(1654)] = 57588, - [SMALL_STATE(1655)] = 57606, - [SMALL_STATE(1656)] = 57624, - [SMALL_STATE(1657)] = 57640, - [SMALL_STATE(1658)] = 57660, - [SMALL_STATE(1659)] = 57680, - [SMALL_STATE(1660)] = 57700, - [SMALL_STATE(1661)] = 57720, - [SMALL_STATE(1662)] = 57740, - [SMALL_STATE(1663)] = 57758, - [SMALL_STATE(1664)] = 57778, - [SMALL_STATE(1665)] = 57794, - [SMALL_STATE(1666)] = 57814, - [SMALL_STATE(1667)] = 57830, - [SMALL_STATE(1668)] = 57846, - [SMALL_STATE(1669)] = 57866, - [SMALL_STATE(1670)] = 57880, - [SMALL_STATE(1671)] = 57896, - [SMALL_STATE(1672)] = 57908, - [SMALL_STATE(1673)] = 57928, - [SMALL_STATE(1674)] = 57944, - [SMALL_STATE(1675)] = 57956, - [SMALL_STATE(1676)] = 57976, - [SMALL_STATE(1677)] = 57988, - [SMALL_STATE(1678)] = 58004, - [SMALL_STATE(1679)] = 58020, - [SMALL_STATE(1680)] = 58040, - [SMALL_STATE(1681)] = 58060, - [SMALL_STATE(1682)] = 58080, - [SMALL_STATE(1683)] = 58096, - [SMALL_STATE(1684)] = 58116, - [SMALL_STATE(1685)] = 58132, - [SMALL_STATE(1686)] = 58152, - [SMALL_STATE(1687)] = 58168, - [SMALL_STATE(1688)] = 58186, - [SMALL_STATE(1689)] = 58206, - [SMALL_STATE(1690)] = 58226, - [SMALL_STATE(1691)] = 58242, - [SMALL_STATE(1692)] = 58262, - [SMALL_STATE(1693)] = 58279, - [SMALL_STATE(1694)] = 58294, - [SMALL_STATE(1695)] = 58311, - [SMALL_STATE(1696)] = 58326, - [SMALL_STATE(1697)] = 58343, - [SMALL_STATE(1698)] = 58360, - [SMALL_STATE(1699)] = 58373, - [SMALL_STATE(1700)] = 58390, - [SMALL_STATE(1701)] = 58407, - [SMALL_STATE(1702)] = 58424, - [SMALL_STATE(1703)] = 58441, - [SMALL_STATE(1704)] = 58458, - [SMALL_STATE(1705)] = 58475, - [SMALL_STATE(1706)] = 58490, - [SMALL_STATE(1707)] = 58507, - [SMALL_STATE(1708)] = 58524, - [SMALL_STATE(1709)] = 58541, - [SMALL_STATE(1710)] = 58558, - [SMALL_STATE(1711)] = 58573, - [SMALL_STATE(1712)] = 58590, - [SMALL_STATE(1713)] = 58607, - [SMALL_STATE(1714)] = 58624, - [SMALL_STATE(1715)] = 58639, - [SMALL_STATE(1716)] = 58654, - [SMALL_STATE(1717)] = 58667, - [SMALL_STATE(1718)] = 58682, - [SMALL_STATE(1719)] = 58699, - [SMALL_STATE(1720)] = 58716, - [SMALL_STATE(1721)] = 58733, - [SMALL_STATE(1722)] = 58748, - [SMALL_STATE(1723)] = 58763, - [SMALL_STATE(1724)] = 58780, - [SMALL_STATE(1725)] = 58797, - [SMALL_STATE(1726)] = 58814, - [SMALL_STATE(1727)] = 58829, - [SMALL_STATE(1728)] = 58846, - [SMALL_STATE(1729)] = 58863, - [SMALL_STATE(1730)] = 58878, - [SMALL_STATE(1731)] = 58893, - [SMALL_STATE(1732)] = 58910, - [SMALL_STATE(1733)] = 58923, - [SMALL_STATE(1734)] = 58940, - [SMALL_STATE(1735)] = 58955, - [SMALL_STATE(1736)] = 58972, - [SMALL_STATE(1737)] = 58987, - [SMALL_STATE(1738)] = 59004, - [SMALL_STATE(1739)] = 59019, - [SMALL_STATE(1740)] = 59036, - [SMALL_STATE(1741)] = 59053, - [SMALL_STATE(1742)] = 59070, - [SMALL_STATE(1743)] = 59087, - [SMALL_STATE(1744)] = 59104, - [SMALL_STATE(1745)] = 59121, - [SMALL_STATE(1746)] = 59136, - [SMALL_STATE(1747)] = 59151, - [SMALL_STATE(1748)] = 59166, - [SMALL_STATE(1749)] = 59183, - [SMALL_STATE(1750)] = 59198, - [SMALL_STATE(1751)] = 59215, - [SMALL_STATE(1752)] = 59232, - [SMALL_STATE(1753)] = 59249, - [SMALL_STATE(1754)] = 59266, - [SMALL_STATE(1755)] = 59281, - [SMALL_STATE(1756)] = 59298, - [SMALL_STATE(1757)] = 59315, - [SMALL_STATE(1758)] = 59332, - [SMALL_STATE(1759)] = 59349, - [SMALL_STATE(1760)] = 59366, - [SMALL_STATE(1761)] = 59383, - [SMALL_STATE(1762)] = 59400, - [SMALL_STATE(1763)] = 59415, - [SMALL_STATE(1764)] = 59428, - [SMALL_STATE(1765)] = 59445, - [SMALL_STATE(1766)] = 59462, - [SMALL_STATE(1767)] = 59479, - [SMALL_STATE(1768)] = 59494, - [SMALL_STATE(1769)] = 59511, - [SMALL_STATE(1770)] = 59524, - [SMALL_STATE(1771)] = 59537, - [SMALL_STATE(1772)] = 59550, - [SMALL_STATE(1773)] = 59567, - [SMALL_STATE(1774)] = 59584, - [SMALL_STATE(1775)] = 59601, - [SMALL_STATE(1776)] = 59618, - [SMALL_STATE(1777)] = 59635, - [SMALL_STATE(1778)] = 59652, - [SMALL_STATE(1779)] = 59669, - [SMALL_STATE(1780)] = 59686, - [SMALL_STATE(1781)] = 59701, - [SMALL_STATE(1782)] = 59718, - [SMALL_STATE(1783)] = 59735, - [SMALL_STATE(1784)] = 59748, - [SMALL_STATE(1785)] = 59761, - [SMALL_STATE(1786)] = 59776, - [SMALL_STATE(1787)] = 59793, - [SMALL_STATE(1788)] = 59806, - [SMALL_STATE(1789)] = 59821, - [SMALL_STATE(1790)] = 59836, - [SMALL_STATE(1791)] = 59853, - [SMALL_STATE(1792)] = 59865, - [SMALL_STATE(1793)] = 59879, - [SMALL_STATE(1794)] = 59891, - [SMALL_STATE(1795)] = 59905, - [SMALL_STATE(1796)] = 59919, - [SMALL_STATE(1797)] = 59929, - [SMALL_STATE(1798)] = 59939, - [SMALL_STATE(1799)] = 59949, - [SMALL_STATE(1800)] = 59959, - [SMALL_STATE(1801)] = 59969, - [SMALL_STATE(1802)] = 59983, - [SMALL_STATE(1803)] = 59993, - [SMALL_STATE(1804)] = 60003, - [SMALL_STATE(1805)] = 60013, - [SMALL_STATE(1806)] = 60027, - [SMALL_STATE(1807)] = 60041, - [SMALL_STATE(1808)] = 60055, - [SMALL_STATE(1809)] = 60065, - [SMALL_STATE(1810)] = 60075, - [SMALL_STATE(1811)] = 60085, - [SMALL_STATE(1812)] = 60095, - [SMALL_STATE(1813)] = 60109, - [SMALL_STATE(1814)] = 60119, - [SMALL_STATE(1815)] = 60133, - [SMALL_STATE(1816)] = 60147, - [SMALL_STATE(1817)] = 60157, - [SMALL_STATE(1818)] = 60171, - [SMALL_STATE(1819)] = 60185, - [SMALL_STATE(1820)] = 60195, - [SMALL_STATE(1821)] = 60209, - [SMALL_STATE(1822)] = 60223, - [SMALL_STATE(1823)] = 60237, - [SMALL_STATE(1824)] = 60251, - [SMALL_STATE(1825)] = 60263, - [SMALL_STATE(1826)] = 60277, - [SMALL_STATE(1827)] = 60291, - [SMALL_STATE(1828)] = 60305, - [SMALL_STATE(1829)] = 60317, - [SMALL_STATE(1830)] = 60329, - [SMALL_STATE(1831)] = 60343, - [SMALL_STATE(1832)] = 60355, - [SMALL_STATE(1833)] = 60369, - [SMALL_STATE(1834)] = 60383, - [SMALL_STATE(1835)] = 60397, - [SMALL_STATE(1836)] = 60411, - [SMALL_STATE(1837)] = 60423, - [SMALL_STATE(1838)] = 60437, - [SMALL_STATE(1839)] = 60451, - [SMALL_STATE(1840)] = 60465, - [SMALL_STATE(1841)] = 60479, - [SMALL_STATE(1842)] = 60491, - [SMALL_STATE(1843)] = 60501, - [SMALL_STATE(1844)] = 60515, - [SMALL_STATE(1845)] = 60529, - [SMALL_STATE(1846)] = 60543, - [SMALL_STATE(1847)] = 60557, - [SMALL_STATE(1848)] = 60571, - [SMALL_STATE(1849)] = 60583, - [SMALL_STATE(1850)] = 60597, - [SMALL_STATE(1851)] = 60611, - [SMALL_STATE(1852)] = 60621, - [SMALL_STATE(1853)] = 60631, - [SMALL_STATE(1854)] = 60645, - [SMALL_STATE(1855)] = 60659, - [SMALL_STATE(1856)] = 60673, - [SMALL_STATE(1857)] = 60683, - [SMALL_STATE(1858)] = 60697, - [SMALL_STATE(1859)] = 60709, - [SMALL_STATE(1860)] = 60719, - [SMALL_STATE(1861)] = 60733, - [SMALL_STATE(1862)] = 60747, - [SMALL_STATE(1863)] = 60761, - [SMALL_STATE(1864)] = 60771, - [SMALL_STATE(1865)] = 60785, - [SMALL_STATE(1866)] = 60795, - [SMALL_STATE(1867)] = 60805, - [SMALL_STATE(1868)] = 60819, - [SMALL_STATE(1869)] = 60833, - [SMALL_STATE(1870)] = 60845, - [SMALL_STATE(1871)] = 60857, - [SMALL_STATE(1872)] = 60871, - [SMALL_STATE(1873)] = 60885, - [SMALL_STATE(1874)] = 60899, - [SMALL_STATE(1875)] = 60913, - [SMALL_STATE(1876)] = 60925, - [SMALL_STATE(1877)] = 60939, - [SMALL_STATE(1878)] = 60953, - [SMALL_STATE(1879)] = 60967, - [SMALL_STATE(1880)] = 60981, - [SMALL_STATE(1881)] = 60995, - [SMALL_STATE(1882)] = 61007, - [SMALL_STATE(1883)] = 61019, - [SMALL_STATE(1884)] = 61031, - [SMALL_STATE(1885)] = 61045, - [SMALL_STATE(1886)] = 61059, - [SMALL_STATE(1887)] = 61073, - [SMALL_STATE(1888)] = 61087, - [SMALL_STATE(1889)] = 61099, - [SMALL_STATE(1890)] = 61109, - [SMALL_STATE(1891)] = 61119, - [SMALL_STATE(1892)] = 61131, - [SMALL_STATE(1893)] = 61145, - [SMALL_STATE(1894)] = 61159, - [SMALL_STATE(1895)] = 61169, - [SMALL_STATE(1896)] = 61183, - [SMALL_STATE(1897)] = 61195, - [SMALL_STATE(1898)] = 61209, - [SMALL_STATE(1899)] = 61223, - [SMALL_STATE(1900)] = 61237, - [SMALL_STATE(1901)] = 61251, - [SMALL_STATE(1902)] = 61265, - [SMALL_STATE(1903)] = 61277, - [SMALL_STATE(1904)] = 61291, - [SMALL_STATE(1905)] = 61303, - [SMALL_STATE(1906)] = 61317, - [SMALL_STATE(1907)] = 61331, - [SMALL_STATE(1908)] = 61345, - [SMALL_STATE(1909)] = 61359, - [SMALL_STATE(1910)] = 61371, - [SMALL_STATE(1911)] = 61385, - [SMALL_STATE(1912)] = 61399, - [SMALL_STATE(1913)] = 61413, - [SMALL_STATE(1914)] = 61427, - [SMALL_STATE(1915)] = 61441, - [SMALL_STATE(1916)] = 61455, - [SMALL_STATE(1917)] = 61469, - [SMALL_STATE(1918)] = 61483, - [SMALL_STATE(1919)] = 61497, - [SMALL_STATE(1920)] = 61511, - [SMALL_STATE(1921)] = 61523, - [SMALL_STATE(1922)] = 61537, - [SMALL_STATE(1923)] = 61549, - [SMALL_STATE(1924)] = 61563, - [SMALL_STATE(1925)] = 61577, - [SMALL_STATE(1926)] = 61591, - [SMALL_STATE(1927)] = 61605, - [SMALL_STATE(1928)] = 61617, - [SMALL_STATE(1929)] = 61627, - [SMALL_STATE(1930)] = 61641, - [SMALL_STATE(1931)] = 61655, - [SMALL_STATE(1932)] = 61669, - [SMALL_STATE(1933)] = 61683, - [SMALL_STATE(1934)] = 61697, - [SMALL_STATE(1935)] = 61711, - [SMALL_STATE(1936)] = 61721, - [SMALL_STATE(1937)] = 61735, - [SMALL_STATE(1938)] = 61749, - [SMALL_STATE(1939)] = 61763, - [SMALL_STATE(1940)] = 61773, - [SMALL_STATE(1941)] = 61787, - [SMALL_STATE(1942)] = 61797, - [SMALL_STATE(1943)] = 61811, - [SMALL_STATE(1944)] = 61825, - [SMALL_STATE(1945)] = 61839, - [SMALL_STATE(1946)] = 61853, - [SMALL_STATE(1947)] = 61867, - [SMALL_STATE(1948)] = 61881, - [SMALL_STATE(1949)] = 61895, - [SMALL_STATE(1950)] = 61909, - [SMALL_STATE(1951)] = 61923, - [SMALL_STATE(1952)] = 61937, - [SMALL_STATE(1953)] = 61951, - [SMALL_STATE(1954)] = 61965, - [SMALL_STATE(1955)] = 61979, - [SMALL_STATE(1956)] = 61993, - [SMALL_STATE(1957)] = 62007, - [SMALL_STATE(1958)] = 62021, - [SMALL_STATE(1959)] = 62035, - [SMALL_STATE(1960)] = 62049, - [SMALL_STATE(1961)] = 62063, - [SMALL_STATE(1962)] = 62077, - [SMALL_STATE(1963)] = 62091, - [SMALL_STATE(1964)] = 62101, - [SMALL_STATE(1965)] = 62115, - [SMALL_STATE(1966)] = 62129, - [SMALL_STATE(1967)] = 62139, - [SMALL_STATE(1968)] = 62151, - [SMALL_STATE(1969)] = 62165, - [SMALL_STATE(1970)] = 62179, - [SMALL_STATE(1971)] = 62193, - [SMALL_STATE(1972)] = 62207, - [SMALL_STATE(1973)] = 62221, - [SMALL_STATE(1974)] = 62235, - [SMALL_STATE(1975)] = 62245, - [SMALL_STATE(1976)] = 62259, - [SMALL_STATE(1977)] = 62273, - [SMALL_STATE(1978)] = 62287, - [SMALL_STATE(1979)] = 62301, - [SMALL_STATE(1980)] = 62315, - [SMALL_STATE(1981)] = 62329, - [SMALL_STATE(1982)] = 62343, - [SMALL_STATE(1983)] = 62357, - [SMALL_STATE(1984)] = 62371, - [SMALL_STATE(1985)] = 62383, - [SMALL_STATE(1986)] = 62397, - [SMALL_STATE(1987)] = 62407, - [SMALL_STATE(1988)] = 62421, - [SMALL_STATE(1989)] = 62435, - [SMALL_STATE(1990)] = 62445, - [SMALL_STATE(1991)] = 62459, - [SMALL_STATE(1992)] = 62473, - [SMALL_STATE(1993)] = 62487, - [SMALL_STATE(1994)] = 62501, - [SMALL_STATE(1995)] = 62515, - [SMALL_STATE(1996)] = 62527, - [SMALL_STATE(1997)] = 62539, - [SMALL_STATE(1998)] = 62553, - [SMALL_STATE(1999)] = 62567, - [SMALL_STATE(2000)] = 62581, - [SMALL_STATE(2001)] = 62595, - [SMALL_STATE(2002)] = 62609, - [SMALL_STATE(2003)] = 62623, - [SMALL_STATE(2004)] = 62637, - [SMALL_STATE(2005)] = 62651, - [SMALL_STATE(2006)] = 62665, - [SMALL_STATE(2007)] = 62679, - [SMALL_STATE(2008)] = 62693, - [SMALL_STATE(2009)] = 62707, - [SMALL_STATE(2010)] = 62721, - [SMALL_STATE(2011)] = 62733, - [SMALL_STATE(2012)] = 62747, - [SMALL_STATE(2013)] = 62761, - [SMALL_STATE(2014)] = 62775, - [SMALL_STATE(2015)] = 62789, - [SMALL_STATE(2016)] = 62803, - [SMALL_STATE(2017)] = 62815, - [SMALL_STATE(2018)] = 62829, - [SMALL_STATE(2019)] = 62843, - [SMALL_STATE(2020)] = 62855, - [SMALL_STATE(2021)] = 62869, - [SMALL_STATE(2022)] = 62883, - [SMALL_STATE(2023)] = 62897, - [SMALL_STATE(2024)] = 62911, - [SMALL_STATE(2025)] = 62923, - [SMALL_STATE(2026)] = 62937, - [SMALL_STATE(2027)] = 62951, - [SMALL_STATE(2028)] = 62965, - [SMALL_STATE(2029)] = 62979, - [SMALL_STATE(2030)] = 62991, - [SMALL_STATE(2031)] = 63001, - [SMALL_STATE(2032)] = 63015, - [SMALL_STATE(2033)] = 63029, - [SMALL_STATE(2034)] = 63041, - [SMALL_STATE(2035)] = 63055, - [SMALL_STATE(2036)] = 63069, - [SMALL_STATE(2037)] = 63083, - [SMALL_STATE(2038)] = 63094, - [SMALL_STATE(2039)] = 63105, - [SMALL_STATE(2040)] = 63116, - [SMALL_STATE(2041)] = 63127, - [SMALL_STATE(2042)] = 63138, - [SMALL_STATE(2043)] = 63149, - [SMALL_STATE(2044)] = 63160, - [SMALL_STATE(2045)] = 63171, - [SMALL_STATE(2046)] = 63182, - [SMALL_STATE(2047)] = 63191, - [SMALL_STATE(2048)] = 63202, - [SMALL_STATE(2049)] = 63213, - [SMALL_STATE(2050)] = 63224, - [SMALL_STATE(2051)] = 63235, - [SMALL_STATE(2052)] = 63246, - [SMALL_STATE(2053)] = 63255, - [SMALL_STATE(2054)] = 63266, - [SMALL_STATE(2055)] = 63277, - [SMALL_STATE(2056)] = 63288, - [SMALL_STATE(2057)] = 63297, - [SMALL_STATE(2058)] = 63308, - [SMALL_STATE(2059)] = 63319, - [SMALL_STATE(2060)] = 63330, - [SMALL_STATE(2061)] = 63341, - [SMALL_STATE(2062)] = 63352, - [SMALL_STATE(2063)] = 63363, - [SMALL_STATE(2064)] = 63374, - [SMALL_STATE(2065)] = 63385, - [SMALL_STATE(2066)] = 63396, - [SMALL_STATE(2067)] = 63405, - [SMALL_STATE(2068)] = 63416, - [SMALL_STATE(2069)] = 63427, - [SMALL_STATE(2070)] = 63438, - [SMALL_STATE(2071)] = 63449, - [SMALL_STATE(2072)] = 63460, - [SMALL_STATE(2073)] = 63471, - [SMALL_STATE(2074)] = 63482, - [SMALL_STATE(2075)] = 63493, - [SMALL_STATE(2076)] = 63502, - [SMALL_STATE(2077)] = 63513, - [SMALL_STATE(2078)] = 63524, - [SMALL_STATE(2079)] = 63535, - [SMALL_STATE(2080)] = 63546, - [SMALL_STATE(2081)] = 63557, - [SMALL_STATE(2082)] = 63568, - [SMALL_STATE(2083)] = 63579, - [SMALL_STATE(2084)] = 63590, - [SMALL_STATE(2085)] = 63601, - [SMALL_STATE(2086)] = 63610, - [SMALL_STATE(2087)] = 63619, - [SMALL_STATE(2088)] = 63628, - [SMALL_STATE(2089)] = 63639, - [SMALL_STATE(2090)] = 63650, - [SMALL_STATE(2091)] = 63661, - [SMALL_STATE(2092)] = 63672, - [SMALL_STATE(2093)] = 63683, - [SMALL_STATE(2094)] = 63694, - [SMALL_STATE(2095)] = 63705, - [SMALL_STATE(2096)] = 63716, - [SMALL_STATE(2097)] = 63727, - [SMALL_STATE(2098)] = 63738, - [SMALL_STATE(2099)] = 63749, - [SMALL_STATE(2100)] = 63760, - [SMALL_STATE(2101)] = 63771, - [SMALL_STATE(2102)] = 63782, - [SMALL_STATE(2103)] = 63791, - [SMALL_STATE(2104)] = 63802, - [SMALL_STATE(2105)] = 63811, - [SMALL_STATE(2106)] = 63822, - [SMALL_STATE(2107)] = 63833, - [SMALL_STATE(2108)] = 63844, - [SMALL_STATE(2109)] = 63855, - [SMALL_STATE(2110)] = 63866, - [SMALL_STATE(2111)] = 63875, - [SMALL_STATE(2112)] = 63886, - [SMALL_STATE(2113)] = 63895, - [SMALL_STATE(2114)] = 63906, - [SMALL_STATE(2115)] = 63917, - [SMALL_STATE(2116)] = 63928, - [SMALL_STATE(2117)] = 63937, - [SMALL_STATE(2118)] = 63948, - [SMALL_STATE(2119)] = 63959, - [SMALL_STATE(2120)] = 63970, - [SMALL_STATE(2121)] = 63981, - [SMALL_STATE(2122)] = 63992, - [SMALL_STATE(2123)] = 64003, - [SMALL_STATE(2124)] = 64014, - [SMALL_STATE(2125)] = 64025, - [SMALL_STATE(2126)] = 64036, - [SMALL_STATE(2127)] = 64047, - [SMALL_STATE(2128)] = 64058, - [SMALL_STATE(2129)] = 64069, - [SMALL_STATE(2130)] = 64080, - [SMALL_STATE(2131)] = 64091, - [SMALL_STATE(2132)] = 64102, - [SMALL_STATE(2133)] = 64113, - [SMALL_STATE(2134)] = 64124, - [SMALL_STATE(2135)] = 64135, - [SMALL_STATE(2136)] = 64146, - [SMALL_STATE(2137)] = 64157, - [SMALL_STATE(2138)] = 64168, - [SMALL_STATE(2139)] = 64179, - [SMALL_STATE(2140)] = 64190, - [SMALL_STATE(2141)] = 64201, - [SMALL_STATE(2142)] = 64212, - [SMALL_STATE(2143)] = 64223, - [SMALL_STATE(2144)] = 64234, - [SMALL_STATE(2145)] = 64245, - [SMALL_STATE(2146)] = 64256, - [SMALL_STATE(2147)] = 64267, - [SMALL_STATE(2148)] = 64278, - [SMALL_STATE(2149)] = 64289, - [SMALL_STATE(2150)] = 64300, - [SMALL_STATE(2151)] = 64311, - [SMALL_STATE(2152)] = 64322, - [SMALL_STATE(2153)] = 64333, - [SMALL_STATE(2154)] = 64344, - [SMALL_STATE(2155)] = 64355, - [SMALL_STATE(2156)] = 64366, - [SMALL_STATE(2157)] = 64377, - [SMALL_STATE(2158)] = 64388, - [SMALL_STATE(2159)] = 64399, - [SMALL_STATE(2160)] = 64410, - [SMALL_STATE(2161)] = 64421, - [SMALL_STATE(2162)] = 64432, - [SMALL_STATE(2163)] = 64443, - [SMALL_STATE(2164)] = 64454, - [SMALL_STATE(2165)] = 64465, - [SMALL_STATE(2166)] = 64476, - [SMALL_STATE(2167)] = 64487, - [SMALL_STATE(2168)] = 64498, - [SMALL_STATE(2169)] = 64509, - [SMALL_STATE(2170)] = 64520, - [SMALL_STATE(2171)] = 64531, - [SMALL_STATE(2172)] = 64542, - [SMALL_STATE(2173)] = 64553, - [SMALL_STATE(2174)] = 64564, - [SMALL_STATE(2175)] = 64575, - [SMALL_STATE(2176)] = 64586, - [SMALL_STATE(2177)] = 64597, - [SMALL_STATE(2178)] = 64606, - [SMALL_STATE(2179)] = 64617, - [SMALL_STATE(2180)] = 64628, - [SMALL_STATE(2181)] = 64639, - [SMALL_STATE(2182)] = 64650, - [SMALL_STATE(2183)] = 64661, - [SMALL_STATE(2184)] = 64670, - [SMALL_STATE(2185)] = 64681, - [SMALL_STATE(2186)] = 64692, - [SMALL_STATE(2187)] = 64701, - [SMALL_STATE(2188)] = 64712, - [SMALL_STATE(2189)] = 64721, - [SMALL_STATE(2190)] = 64732, - [SMALL_STATE(2191)] = 64743, - [SMALL_STATE(2192)] = 64754, - [SMALL_STATE(2193)] = 64763, - [SMALL_STATE(2194)] = 64774, - [SMALL_STATE(2195)] = 64785, - [SMALL_STATE(2196)] = 64796, - [SMALL_STATE(2197)] = 64807, - [SMALL_STATE(2198)] = 64818, - [SMALL_STATE(2199)] = 64829, - [SMALL_STATE(2200)] = 64840, - [SMALL_STATE(2201)] = 64851, - [SMALL_STATE(2202)] = 64862, - [SMALL_STATE(2203)] = 64873, - [SMALL_STATE(2204)] = 64884, - [SMALL_STATE(2205)] = 64895, - [SMALL_STATE(2206)] = 64906, - [SMALL_STATE(2207)] = 64917, - [SMALL_STATE(2208)] = 64928, - [SMALL_STATE(2209)] = 64939, - [SMALL_STATE(2210)] = 64950, - [SMALL_STATE(2211)] = 64961, - [SMALL_STATE(2212)] = 64972, - [SMALL_STATE(2213)] = 64983, - [SMALL_STATE(2214)] = 64994, - [SMALL_STATE(2215)] = 65005, - [SMALL_STATE(2216)] = 65014, - [SMALL_STATE(2217)] = 65025, - [SMALL_STATE(2218)] = 65036, - [SMALL_STATE(2219)] = 65045, - [SMALL_STATE(2220)] = 65056, - [SMALL_STATE(2221)] = 65067, - [SMALL_STATE(2222)] = 65076, - [SMALL_STATE(2223)] = 65087, - [SMALL_STATE(2224)] = 65098, - [SMALL_STATE(2225)] = 65109, - [SMALL_STATE(2226)] = 65118, - [SMALL_STATE(2227)] = 65127, - [SMALL_STATE(2228)] = 65138, - [SMALL_STATE(2229)] = 65147, - [SMALL_STATE(2230)] = 65158, - [SMALL_STATE(2231)] = 65167, - [SMALL_STATE(2232)] = 65178, - [SMALL_STATE(2233)] = 65189, - [SMALL_STATE(2234)] = 65200, - [SMALL_STATE(2235)] = 65211, - [SMALL_STATE(2236)] = 65222, - [SMALL_STATE(2237)] = 65233, - [SMALL_STATE(2238)] = 65244, - [SMALL_STATE(2239)] = 65255, - [SMALL_STATE(2240)] = 65264, - [SMALL_STATE(2241)] = 65275, - [SMALL_STATE(2242)] = 65286, - [SMALL_STATE(2243)] = 65297, - [SMALL_STATE(2244)] = 65308, - [SMALL_STATE(2245)] = 65317, - [SMALL_STATE(2246)] = 65326, - [SMALL_STATE(2247)] = 65337, - [SMALL_STATE(2248)] = 65345, - [SMALL_STATE(2249)] = 65353, - [SMALL_STATE(2250)] = 65361, - [SMALL_STATE(2251)] = 65369, - [SMALL_STATE(2252)] = 65377, - [SMALL_STATE(2253)] = 65385, - [SMALL_STATE(2254)] = 65393, - [SMALL_STATE(2255)] = 65401, - [SMALL_STATE(2256)] = 65409, - [SMALL_STATE(2257)] = 65417, - [SMALL_STATE(2258)] = 65425, - [SMALL_STATE(2259)] = 65433, - [SMALL_STATE(2260)] = 65441, - [SMALL_STATE(2261)] = 65449, - [SMALL_STATE(2262)] = 65457, - [SMALL_STATE(2263)] = 65465, - [SMALL_STATE(2264)] = 65473, - [SMALL_STATE(2265)] = 65481, - [SMALL_STATE(2266)] = 65489, - [SMALL_STATE(2267)] = 65497, - [SMALL_STATE(2268)] = 65505, - [SMALL_STATE(2269)] = 65513, - [SMALL_STATE(2270)] = 65521, - [SMALL_STATE(2271)] = 65529, - [SMALL_STATE(2272)] = 65537, - [SMALL_STATE(2273)] = 65545, - [SMALL_STATE(2274)] = 65553, - [SMALL_STATE(2275)] = 65561, - [SMALL_STATE(2276)] = 65569, - [SMALL_STATE(2277)] = 65577, - [SMALL_STATE(2278)] = 65585, - [SMALL_STATE(2279)] = 65593, - [SMALL_STATE(2280)] = 65601, - [SMALL_STATE(2281)] = 65609, - [SMALL_STATE(2282)] = 65617, - [SMALL_STATE(2283)] = 65625, - [SMALL_STATE(2284)] = 65633, - [SMALL_STATE(2285)] = 65641, - [SMALL_STATE(2286)] = 65649, - [SMALL_STATE(2287)] = 65657, - [SMALL_STATE(2288)] = 65665, - [SMALL_STATE(2289)] = 65673, - [SMALL_STATE(2290)] = 65681, - [SMALL_STATE(2291)] = 65689, - [SMALL_STATE(2292)] = 65697, - [SMALL_STATE(2293)] = 65705, - [SMALL_STATE(2294)] = 65713, - [SMALL_STATE(2295)] = 65721, - [SMALL_STATE(2296)] = 65729, - [SMALL_STATE(2297)] = 65737, - [SMALL_STATE(2298)] = 65745, - [SMALL_STATE(2299)] = 65753, - [SMALL_STATE(2300)] = 65761, - [SMALL_STATE(2301)] = 65769, - [SMALL_STATE(2302)] = 65777, - [SMALL_STATE(2303)] = 65785, - [SMALL_STATE(2304)] = 65793, - [SMALL_STATE(2305)] = 65801, - [SMALL_STATE(2306)] = 65809, - [SMALL_STATE(2307)] = 65817, - [SMALL_STATE(2308)] = 65825, - [SMALL_STATE(2309)] = 65833, - [SMALL_STATE(2310)] = 65841, - [SMALL_STATE(2311)] = 65849, - [SMALL_STATE(2312)] = 65857, - [SMALL_STATE(2313)] = 65865, - [SMALL_STATE(2314)] = 65873, - [SMALL_STATE(2315)] = 65881, - [SMALL_STATE(2316)] = 65889, - [SMALL_STATE(2317)] = 65897, - [SMALL_STATE(2318)] = 65905, - [SMALL_STATE(2319)] = 65913, - [SMALL_STATE(2320)] = 65921, - [SMALL_STATE(2321)] = 65929, - [SMALL_STATE(2322)] = 65937, - [SMALL_STATE(2323)] = 65945, - [SMALL_STATE(2324)] = 65953, - [SMALL_STATE(2325)] = 65961, - [SMALL_STATE(2326)] = 65969, - [SMALL_STATE(2327)] = 65977, - [SMALL_STATE(2328)] = 65985, - [SMALL_STATE(2329)] = 65993, - [SMALL_STATE(2330)] = 66001, - [SMALL_STATE(2331)] = 66009, - [SMALL_STATE(2332)] = 66017, - [SMALL_STATE(2333)] = 66025, - [SMALL_STATE(2334)] = 66033, - [SMALL_STATE(2335)] = 66041, - [SMALL_STATE(2336)] = 66049, - [SMALL_STATE(2337)] = 66057, - [SMALL_STATE(2338)] = 66065, - [SMALL_STATE(2339)] = 66073, - [SMALL_STATE(2340)] = 66081, - [SMALL_STATE(2341)] = 66089, - [SMALL_STATE(2342)] = 66097, - [SMALL_STATE(2343)] = 66105, - [SMALL_STATE(2344)] = 66113, - [SMALL_STATE(2345)] = 66121, - [SMALL_STATE(2346)] = 66129, - [SMALL_STATE(2347)] = 66137, - [SMALL_STATE(2348)] = 66145, - [SMALL_STATE(2349)] = 66153, - [SMALL_STATE(2350)] = 66161, - [SMALL_STATE(2351)] = 66169, - [SMALL_STATE(2352)] = 66177, - [SMALL_STATE(2353)] = 66185, - [SMALL_STATE(2354)] = 66193, - [SMALL_STATE(2355)] = 66201, - [SMALL_STATE(2356)] = 66209, - [SMALL_STATE(2357)] = 66217, - [SMALL_STATE(2358)] = 66225, - [SMALL_STATE(2359)] = 66233, - [SMALL_STATE(2360)] = 66241, - [SMALL_STATE(2361)] = 66249, - [SMALL_STATE(2362)] = 66257, - [SMALL_STATE(2363)] = 66265, - [SMALL_STATE(2364)] = 66273, - [SMALL_STATE(2365)] = 66281, - [SMALL_STATE(2366)] = 66289, - [SMALL_STATE(2367)] = 66297, - [SMALL_STATE(2368)] = 66305, - [SMALL_STATE(2369)] = 66313, - [SMALL_STATE(2370)] = 66321, - [SMALL_STATE(2371)] = 66329, - [SMALL_STATE(2372)] = 66337, - [SMALL_STATE(2373)] = 66345, - [SMALL_STATE(2374)] = 66353, - [SMALL_STATE(2375)] = 66361, - [SMALL_STATE(2376)] = 66369, - [SMALL_STATE(2377)] = 66377, - [SMALL_STATE(2378)] = 66385, - [SMALL_STATE(2379)] = 66393, - [SMALL_STATE(2380)] = 66401, - [SMALL_STATE(2381)] = 66409, - [SMALL_STATE(2382)] = 66417, - [SMALL_STATE(2383)] = 66425, - [SMALL_STATE(2384)] = 66433, - [SMALL_STATE(2385)] = 66441, - [SMALL_STATE(2386)] = 66449, - [SMALL_STATE(2387)] = 66457, - [SMALL_STATE(2388)] = 66465, - [SMALL_STATE(2389)] = 66473, - [SMALL_STATE(2390)] = 66481, - [SMALL_STATE(2391)] = 66489, - [SMALL_STATE(2392)] = 66497, - [SMALL_STATE(2393)] = 66505, - [SMALL_STATE(2394)] = 66513, - [SMALL_STATE(2395)] = 66521, - [SMALL_STATE(2396)] = 66529, - [SMALL_STATE(2397)] = 66537, - [SMALL_STATE(2398)] = 66545, - [SMALL_STATE(2399)] = 66553, - [SMALL_STATE(2400)] = 66561, - [SMALL_STATE(2401)] = 66569, - [SMALL_STATE(2402)] = 66577, - [SMALL_STATE(2403)] = 66585, - [SMALL_STATE(2404)] = 66593, - [SMALL_STATE(2405)] = 66601, - [SMALL_STATE(2406)] = 66609, - [SMALL_STATE(2407)] = 66617, - [SMALL_STATE(2408)] = 66625, - [SMALL_STATE(2409)] = 66633, - [SMALL_STATE(2410)] = 66641, - [SMALL_STATE(2411)] = 66649, - [SMALL_STATE(2412)] = 66657, - [SMALL_STATE(2413)] = 66665, - [SMALL_STATE(2414)] = 66673, - [SMALL_STATE(2415)] = 66681, - [SMALL_STATE(2416)] = 66689, - [SMALL_STATE(2417)] = 66697, - [SMALL_STATE(2418)] = 66705, - [SMALL_STATE(2419)] = 66713, - [SMALL_STATE(2420)] = 66721, - [SMALL_STATE(2421)] = 66729, - [SMALL_STATE(2422)] = 66737, - [SMALL_STATE(2423)] = 66745, - [SMALL_STATE(2424)] = 66753, - [SMALL_STATE(2425)] = 66761, - [SMALL_STATE(2426)] = 66769, - [SMALL_STATE(2427)] = 66777, - [SMALL_STATE(2428)] = 66785, - [SMALL_STATE(2429)] = 66793, - [SMALL_STATE(2430)] = 66801, - [SMALL_STATE(2431)] = 66809, - [SMALL_STATE(2432)] = 66817, - [SMALL_STATE(2433)] = 66825, - [SMALL_STATE(2434)] = 66833, - [SMALL_STATE(2435)] = 66841, - [SMALL_STATE(2436)] = 66849, - [SMALL_STATE(2437)] = 66857, - [SMALL_STATE(2438)] = 66865, - [SMALL_STATE(2439)] = 66873, - [SMALL_STATE(2440)] = 66881, - [SMALL_STATE(2441)] = 66889, - [SMALL_STATE(2442)] = 66897, - [SMALL_STATE(2443)] = 66905, - [SMALL_STATE(2444)] = 66913, - [SMALL_STATE(2445)] = 66921, - [SMALL_STATE(2446)] = 66929, - [SMALL_STATE(2447)] = 66937, - [SMALL_STATE(2448)] = 66945, - [SMALL_STATE(2449)] = 66953, - [SMALL_STATE(2450)] = 66961, - [SMALL_STATE(2451)] = 66969, - [SMALL_STATE(2452)] = 66977, - [SMALL_STATE(2453)] = 66985, - [SMALL_STATE(2454)] = 66993, - [SMALL_STATE(2455)] = 67001, - [SMALL_STATE(2456)] = 67009, - [SMALL_STATE(2457)] = 67017, - [SMALL_STATE(2458)] = 67025, - [SMALL_STATE(2459)] = 67033, - [SMALL_STATE(2460)] = 67041, - [SMALL_STATE(2461)] = 67049, - [SMALL_STATE(2462)] = 67057, - [SMALL_STATE(2463)] = 67065, - [SMALL_STATE(2464)] = 67073, - [SMALL_STATE(2465)] = 67081, - [SMALL_STATE(2466)] = 67089, - [SMALL_STATE(2467)] = 67097, - [SMALL_STATE(2468)] = 67105, - [SMALL_STATE(2469)] = 67113, - [SMALL_STATE(2470)] = 67121, - [SMALL_STATE(2471)] = 67129, - [SMALL_STATE(2472)] = 67137, - [SMALL_STATE(2473)] = 67145, - [SMALL_STATE(2474)] = 67153, - [SMALL_STATE(2475)] = 67161, - [SMALL_STATE(2476)] = 67169, - [SMALL_STATE(2477)] = 67177, - [SMALL_STATE(2478)] = 67185, - [SMALL_STATE(2479)] = 67193, + [SMALL_STATE(760)] = 0, + [SMALL_STATE(761)] = 129, + [SMALL_STATE(762)] = 258, + [SMALL_STATE(763)] = 387, + [SMALL_STATE(764)] = 516, + [SMALL_STATE(765)] = 645, + [SMALL_STATE(766)] = 774, + [SMALL_STATE(767)] = 903, + [SMALL_STATE(768)] = 1032, + [SMALL_STATE(769)] = 1161, + [SMALL_STATE(770)] = 1290, + [SMALL_STATE(771)] = 1419, + [SMALL_STATE(772)] = 1548, + [SMALL_STATE(773)] = 1677, + [SMALL_STATE(774)] = 1806, + [SMALL_STATE(775)] = 1935, + [SMALL_STATE(776)] = 2064, + [SMALL_STATE(777)] = 2193, + [SMALL_STATE(778)] = 2322, + [SMALL_STATE(779)] = 2451, + [SMALL_STATE(780)] = 2580, + [SMALL_STATE(781)] = 2709, + [SMALL_STATE(782)] = 2838, + [SMALL_STATE(783)] = 2967, + [SMALL_STATE(784)] = 3096, + [SMALL_STATE(785)] = 3225, + [SMALL_STATE(786)] = 3354, + [SMALL_STATE(787)] = 3483, + [SMALL_STATE(788)] = 3612, + [SMALL_STATE(789)] = 3741, + [SMALL_STATE(790)] = 3870, + [SMALL_STATE(791)] = 3999, + [SMALL_STATE(792)] = 4128, + [SMALL_STATE(793)] = 4257, + [SMALL_STATE(794)] = 4386, + [SMALL_STATE(795)] = 4515, + [SMALL_STATE(796)] = 4644, + [SMALL_STATE(797)] = 4773, + [SMALL_STATE(798)] = 4902, + [SMALL_STATE(799)] = 5031, + [SMALL_STATE(800)] = 5160, + [SMALL_STATE(801)] = 5289, + [SMALL_STATE(802)] = 5418, + [SMALL_STATE(803)] = 5547, + [SMALL_STATE(804)] = 5676, + [SMALL_STATE(805)] = 5807, + [SMALL_STATE(806)] = 5936, + [SMALL_STATE(807)] = 6065, + [SMALL_STATE(808)] = 6194, + [SMALL_STATE(809)] = 6323, + [SMALL_STATE(810)] = 6452, + [SMALL_STATE(811)] = 6581, + [SMALL_STATE(812)] = 6710, + [SMALL_STATE(813)] = 6839, + [SMALL_STATE(814)] = 6968, + [SMALL_STATE(815)] = 7097, + [SMALL_STATE(816)] = 7226, + [SMALL_STATE(817)] = 7355, + [SMALL_STATE(818)] = 7484, + [SMALL_STATE(819)] = 7613, + [SMALL_STATE(820)] = 7742, + [SMALL_STATE(821)] = 7871, + [SMALL_STATE(822)] = 8000, + [SMALL_STATE(823)] = 8129, + [SMALL_STATE(824)] = 8258, + [SMALL_STATE(825)] = 8387, + [SMALL_STATE(826)] = 8516, + [SMALL_STATE(827)] = 8645, + [SMALL_STATE(828)] = 8774, + [SMALL_STATE(829)] = 8903, + [SMALL_STATE(830)] = 9032, + [SMALL_STATE(831)] = 9161, + [SMALL_STATE(832)] = 9290, + [SMALL_STATE(833)] = 9419, + [SMALL_STATE(834)] = 9548, + [SMALL_STATE(835)] = 9677, + [SMALL_STATE(836)] = 9806, + [SMALL_STATE(837)] = 9935, + [SMALL_STATE(838)] = 10064, + [SMALL_STATE(839)] = 10193, + [SMALL_STATE(840)] = 10322, + [SMALL_STATE(841)] = 10451, + [SMALL_STATE(842)] = 10580, + [SMALL_STATE(843)] = 10709, + [SMALL_STATE(844)] = 10838, + [SMALL_STATE(845)] = 10967, + [SMALL_STATE(846)] = 11096, + [SMALL_STATE(847)] = 11225, + [SMALL_STATE(848)] = 11354, + [SMALL_STATE(849)] = 11483, + [SMALL_STATE(850)] = 11612, + [SMALL_STATE(851)] = 11741, + [SMALL_STATE(852)] = 11870, + [SMALL_STATE(853)] = 11999, + [SMALL_STATE(854)] = 12128, + [SMALL_STATE(855)] = 12257, + [SMALL_STATE(856)] = 12386, + [SMALL_STATE(857)] = 12515, + [SMALL_STATE(858)] = 12644, + [SMALL_STATE(859)] = 12773, + [SMALL_STATE(860)] = 12902, + [SMALL_STATE(861)] = 13031, + [SMALL_STATE(862)] = 13160, + [SMALL_STATE(863)] = 13289, + [SMALL_STATE(864)] = 13418, + [SMALL_STATE(865)] = 13547, + [SMALL_STATE(866)] = 13676, + [SMALL_STATE(867)] = 13805, + [SMALL_STATE(868)] = 13934, + [SMALL_STATE(869)] = 14063, + [SMALL_STATE(870)] = 14192, + [SMALL_STATE(871)] = 14321, + [SMALL_STATE(872)] = 14450, + [SMALL_STATE(873)] = 14579, + [SMALL_STATE(874)] = 14708, + [SMALL_STATE(875)] = 14837, + [SMALL_STATE(876)] = 14966, + [SMALL_STATE(877)] = 15037, + [SMALL_STATE(878)] = 15166, + [SMALL_STATE(879)] = 15295, + [SMALL_STATE(880)] = 15424, + [SMALL_STATE(881)] = 15553, + [SMALL_STATE(882)] = 15682, + [SMALL_STATE(883)] = 15811, + [SMALL_STATE(884)] = 15940, + [SMALL_STATE(885)] = 16069, + [SMALL_STATE(886)] = 16198, + [SMALL_STATE(887)] = 16264, + [SMALL_STATE(888)] = 16330, + [SMALL_STATE(889)] = 16396, + [SMALL_STATE(890)] = 16462, + [SMALL_STATE(891)] = 16524, + [SMALL_STATE(892)] = 16585, + [SMALL_STATE(893)] = 16642, + [SMALL_STATE(894)] = 16699, + [SMALL_STATE(895)] = 16756, + [SMALL_STATE(896)] = 16825, + [SMALL_STATE(897)] = 16887, + [SMALL_STATE(898)] = 16953, + [SMALL_STATE(899)] = 17009, + [SMALL_STATE(900)] = 17075, + [SMALL_STATE(901)] = 17131, + [SMALL_STATE(902)] = 17187, + [SMALL_STATE(903)] = 17243, + [SMALL_STATE(904)] = 17299, + [SMALL_STATE(905)] = 17358, + [SMALL_STATE(906)] = 17417, + [SMALL_STATE(907)] = 17480, + [SMALL_STATE(908)] = 17535, + [SMALL_STATE(909)] = 17590, + [SMALL_STATE(910)] = 17645, + [SMALL_STATE(911)] = 17700, + [SMALL_STATE(912)] = 17759, + [SMALL_STATE(913)] = 17818, + [SMALL_STATE(914)] = 17881, + [SMALL_STATE(915)] = 17944, + [SMALL_STATE(916)] = 18007, + [SMALL_STATE(917)] = 18061, + [SMALL_STATE(918)] = 18115, + [SMALL_STATE(919)] = 18169, + [SMALL_STATE(920)] = 18223, + [SMALL_STATE(921)] = 18277, + [SMALL_STATE(922)] = 18331, + [SMALL_STATE(923)] = 18385, + [SMALL_STATE(924)] = 18439, + [SMALL_STATE(925)] = 18493, + [SMALL_STATE(926)] = 18547, + [SMALL_STATE(927)] = 18601, + [SMALL_STATE(928)] = 18659, + [SMALL_STATE(929)] = 18713, + [SMALL_STATE(930)] = 18767, + [SMALL_STATE(931)] = 18821, + [SMALL_STATE(932)] = 18875, + [SMALL_STATE(933)] = 18929, + [SMALL_STATE(934)] = 18983, + [SMALL_STATE(935)] = 19037, + [SMALL_STATE(936)] = 19091, + [SMALL_STATE(937)] = 19145, + [SMALL_STATE(938)] = 19199, + [SMALL_STATE(939)] = 19253, + [SMALL_STATE(940)] = 19307, + [SMALL_STATE(941)] = 19361, + [SMALL_STATE(942)] = 19415, + [SMALL_STATE(943)] = 19469, + [SMALL_STATE(944)] = 19523, + [SMALL_STATE(945)] = 19577, + [SMALL_STATE(946)] = 19631, + [SMALL_STATE(947)] = 19685, + [SMALL_STATE(948)] = 19739, + [SMALL_STATE(949)] = 19793, + [SMALL_STATE(950)] = 19847, + [SMALL_STATE(951)] = 19901, + [SMALL_STATE(952)] = 19955, + [SMALL_STATE(953)] = 20009, + [SMALL_STATE(954)] = 20063, + [SMALL_STATE(955)] = 20117, + [SMALL_STATE(956)] = 20171, + [SMALL_STATE(957)] = 20225, + [SMALL_STATE(958)] = 20279, + [SMALL_STATE(959)] = 20333, + [SMALL_STATE(960)] = 20387, + [SMALL_STATE(961)] = 20441, + [SMALL_STATE(962)] = 20495, + [SMALL_STATE(963)] = 20549, + [SMALL_STATE(964)] = 20603, + [SMALL_STATE(965)] = 20657, + [SMALL_STATE(966)] = 20711, + [SMALL_STATE(967)] = 20765, + [SMALL_STATE(968)] = 20819, + [SMALL_STATE(969)] = 20873, + [SMALL_STATE(970)] = 20927, + [SMALL_STATE(971)] = 20981, + [SMALL_STATE(972)] = 21035, + [SMALL_STATE(973)] = 21089, + [SMALL_STATE(974)] = 21143, + [SMALL_STATE(975)] = 21197, + [SMALL_STATE(976)] = 21251, + [SMALL_STATE(977)] = 21305, + [SMALL_STATE(978)] = 21359, + [SMALL_STATE(979)] = 21413, + [SMALL_STATE(980)] = 21467, + [SMALL_STATE(981)] = 21521, + [SMALL_STATE(982)] = 21575, + [SMALL_STATE(983)] = 21629, + [SMALL_STATE(984)] = 21683, + [SMALL_STATE(985)] = 21737, + [SMALL_STATE(986)] = 21791, + [SMALL_STATE(987)] = 21845, + [SMALL_STATE(988)] = 21899, + [SMALL_STATE(989)] = 21953, + [SMALL_STATE(990)] = 22007, + [SMALL_STATE(991)] = 22061, + [SMALL_STATE(992)] = 22115, + [SMALL_STATE(993)] = 22169, + [SMALL_STATE(994)] = 22223, + [SMALL_STATE(995)] = 22277, + [SMALL_STATE(996)] = 22331, + [SMALL_STATE(997)] = 22385, + [SMALL_STATE(998)] = 22439, + [SMALL_STATE(999)] = 22493, + [SMALL_STATE(1000)] = 22547, + [SMALL_STATE(1001)] = 22601, + [SMALL_STATE(1002)] = 22655, + [SMALL_STATE(1003)] = 22709, + [SMALL_STATE(1004)] = 22763, + [SMALL_STATE(1005)] = 22817, + [SMALL_STATE(1006)] = 22871, + [SMALL_STATE(1007)] = 22925, + [SMALL_STATE(1008)] = 22979, + [SMALL_STATE(1009)] = 23033, + [SMALL_STATE(1010)] = 23089, + [SMALL_STATE(1011)] = 23143, + [SMALL_STATE(1012)] = 23197, + [SMALL_STATE(1013)] = 23251, + [SMALL_STATE(1014)] = 23305, + [SMALL_STATE(1015)] = 23359, + [SMALL_STATE(1016)] = 23413, + [SMALL_STATE(1017)] = 23467, + [SMALL_STATE(1018)] = 23521, + [SMALL_STATE(1019)] = 23575, + [SMALL_STATE(1020)] = 23629, + [SMALL_STATE(1021)] = 23683, + [SMALL_STATE(1022)] = 23739, + [SMALL_STATE(1023)] = 23793, + [SMALL_STATE(1024)] = 23847, + [SMALL_STATE(1025)] = 23901, + [SMALL_STATE(1026)] = 23955, + [SMALL_STATE(1027)] = 24009, + [SMALL_STATE(1028)] = 24063, + [SMALL_STATE(1029)] = 24117, + [SMALL_STATE(1030)] = 24171, + [SMALL_STATE(1031)] = 24225, + [SMALL_STATE(1032)] = 24279, + [SMALL_STATE(1033)] = 24333, + [SMALL_STATE(1034)] = 24387, + [SMALL_STATE(1035)] = 24441, + [SMALL_STATE(1036)] = 24495, + [SMALL_STATE(1037)] = 24549, + [SMALL_STATE(1038)] = 24607, + [SMALL_STATE(1039)] = 24661, + [SMALL_STATE(1040)] = 24715, + [SMALL_STATE(1041)] = 24769, + [SMALL_STATE(1042)] = 24823, + [SMALL_STATE(1043)] = 24877, + [SMALL_STATE(1044)] = 24931, + [SMALL_STATE(1045)] = 24985, + [SMALL_STATE(1046)] = 25039, + [SMALL_STATE(1047)] = 25097, + [SMALL_STATE(1048)] = 25151, + [SMALL_STATE(1049)] = 25205, + [SMALL_STATE(1050)] = 25259, + [SMALL_STATE(1051)] = 25313, + [SMALL_STATE(1052)] = 25367, + [SMALL_STATE(1053)] = 25421, + [SMALL_STATE(1054)] = 25475, + [SMALL_STATE(1055)] = 25529, + [SMALL_STATE(1056)] = 25583, + [SMALL_STATE(1057)] = 25637, + [SMALL_STATE(1058)] = 25691, + [SMALL_STATE(1059)] = 25745, + [SMALL_STATE(1060)] = 25799, + [SMALL_STATE(1061)] = 25853, + [SMALL_STATE(1062)] = 25909, + [SMALL_STATE(1063)] = 25963, + [SMALL_STATE(1064)] = 26017, + [SMALL_STATE(1065)] = 26071, + [SMALL_STATE(1066)] = 26125, + [SMALL_STATE(1067)] = 26179, + [SMALL_STATE(1068)] = 26233, + [SMALL_STATE(1069)] = 26287, + [SMALL_STATE(1070)] = 26341, + [SMALL_STATE(1071)] = 26395, + [SMALL_STATE(1072)] = 26449, + [SMALL_STATE(1073)] = 26503, + [SMALL_STATE(1074)] = 26557, + [SMALL_STATE(1075)] = 26611, + [SMALL_STATE(1076)] = 26665, + [SMALL_STATE(1077)] = 26719, + [SMALL_STATE(1078)] = 26773, + [SMALL_STATE(1079)] = 26827, + [SMALL_STATE(1080)] = 26881, + [SMALL_STATE(1081)] = 26935, + [SMALL_STATE(1082)] = 26989, + [SMALL_STATE(1083)] = 27043, + [SMALL_STATE(1084)] = 27097, + [SMALL_STATE(1085)] = 27151, + [SMALL_STATE(1086)] = 27205, + [SMALL_STATE(1087)] = 27259, + [SMALL_STATE(1088)] = 27313, + [SMALL_STATE(1089)] = 27367, + [SMALL_STATE(1090)] = 27421, + [SMALL_STATE(1091)] = 27475, + [SMALL_STATE(1092)] = 27529, + [SMALL_STATE(1093)] = 27583, + [SMALL_STATE(1094)] = 27637, + [SMALL_STATE(1095)] = 27691, + [SMALL_STATE(1096)] = 27745, + [SMALL_STATE(1097)] = 27801, + [SMALL_STATE(1098)] = 27855, + [SMALL_STATE(1099)] = 27909, + [SMALL_STATE(1100)] = 27963, + [SMALL_STATE(1101)] = 28017, + [SMALL_STATE(1102)] = 28071, + [SMALL_STATE(1103)] = 28125, + [SMALL_STATE(1104)] = 28179, + [SMALL_STATE(1105)] = 28233, + [SMALL_STATE(1106)] = 28287, + [SMALL_STATE(1107)] = 28341, + [SMALL_STATE(1108)] = 28395, + [SMALL_STATE(1109)] = 28449, + [SMALL_STATE(1110)] = 28503, + [SMALL_STATE(1111)] = 28557, + [SMALL_STATE(1112)] = 28611, + [SMALL_STATE(1113)] = 28665, + [SMALL_STATE(1114)] = 28719, + [SMALL_STATE(1115)] = 28773, + [SMALL_STATE(1116)] = 28827, + [SMALL_STATE(1117)] = 28881, + [SMALL_STATE(1118)] = 28935, + [SMALL_STATE(1119)] = 28989, + [SMALL_STATE(1120)] = 29043, + [SMALL_STATE(1121)] = 29097, + [SMALL_STATE(1122)] = 29151, + [SMALL_STATE(1123)] = 29205, + [SMALL_STATE(1124)] = 29259, + [SMALL_STATE(1125)] = 29313, + [SMALL_STATE(1126)] = 29367, + [SMALL_STATE(1127)] = 29421, + [SMALL_STATE(1128)] = 29475, + [SMALL_STATE(1129)] = 29529, + [SMALL_STATE(1130)] = 29583, + [SMALL_STATE(1131)] = 29637, + [SMALL_STATE(1132)] = 29691, + [SMALL_STATE(1133)] = 29745, + [SMALL_STATE(1134)] = 29799, + [SMALL_STATE(1135)] = 29853, + [SMALL_STATE(1136)] = 29907, + [SMALL_STATE(1137)] = 29961, + [SMALL_STATE(1138)] = 30015, + [SMALL_STATE(1139)] = 30069, + [SMALL_STATE(1140)] = 30123, + [SMALL_STATE(1141)] = 30178, + [SMALL_STATE(1142)] = 30235, + [SMALL_STATE(1143)] = 30288, + [SMALL_STATE(1144)] = 30343, + [SMALL_STATE(1145)] = 30398, + [SMALL_STATE(1146)] = 30451, + [SMALL_STATE(1147)] = 30504, + [SMALL_STATE(1148)] = 30557, + [SMALL_STATE(1149)] = 30612, + [SMALL_STATE(1150)] = 30665, + [SMALL_STATE(1151)] = 30720, + [SMALL_STATE(1152)] = 30775, + [SMALL_STATE(1153)] = 30832, + [SMALL_STATE(1154)] = 30887, + [SMALL_STATE(1155)] = 30940, + [SMALL_STATE(1156)] = 30995, + [SMALL_STATE(1157)] = 31048, + [SMALL_STATE(1158)] = 31101, + [SMALL_STATE(1159)] = 31156, + [SMALL_STATE(1160)] = 31211, + [SMALL_STATE(1161)] = 31300, + [SMALL_STATE(1162)] = 31355, + [SMALL_STATE(1163)] = 31410, + [SMALL_STATE(1164)] = 31463, + [SMALL_STATE(1165)] = 31516, + [SMALL_STATE(1166)] = 31569, + [SMALL_STATE(1167)] = 31622, + [SMALL_STATE(1168)] = 31675, + [SMALL_STATE(1169)] = 31728, + [SMALL_STATE(1170)] = 31781, + [SMALL_STATE(1171)] = 31834, + [SMALL_STATE(1172)] = 31891, + [SMALL_STATE(1173)] = 31944, + [SMALL_STATE(1174)] = 31999, + [SMALL_STATE(1175)] = 32054, + [SMALL_STATE(1176)] = 32109, + [SMALL_STATE(1177)] = 32162, + [SMALL_STATE(1178)] = 32215, + [SMALL_STATE(1179)] = 32270, + [SMALL_STATE(1180)] = 32323, + [SMALL_STATE(1181)] = 32376, + [SMALL_STATE(1182)] = 32431, + [SMALL_STATE(1183)] = 32484, + [SMALL_STATE(1184)] = 32537, + [SMALL_STATE(1185)] = 32594, + [SMALL_STATE(1186)] = 32683, + [SMALL_STATE(1187)] = 32736, + [SMALL_STATE(1188)] = 32788, + [SMALL_STATE(1189)] = 32840, + [SMALL_STATE(1190)] = 32892, + [SMALL_STATE(1191)] = 32944, + [SMALL_STATE(1192)] = 32996, + [SMALL_STATE(1193)] = 33048, + [SMALL_STATE(1194)] = 33100, + [SMALL_STATE(1195)] = 33152, + [SMALL_STATE(1196)] = 33204, + [SMALL_STATE(1197)] = 33256, + [SMALL_STATE(1198)] = 33308, + [SMALL_STATE(1199)] = 33360, + [SMALL_STATE(1200)] = 33412, + [SMALL_STATE(1201)] = 33464, + [SMALL_STATE(1202)] = 33516, + [SMALL_STATE(1203)] = 33568, + [SMALL_STATE(1204)] = 33620, + [SMALL_STATE(1205)] = 33672, + [SMALL_STATE(1206)] = 33724, + [SMALL_STATE(1207)] = 33776, + [SMALL_STATE(1208)] = 33828, + [SMALL_STATE(1209)] = 33880, + [SMALL_STATE(1210)] = 33932, + [SMALL_STATE(1211)] = 33984, + [SMALL_STATE(1212)] = 34038, + [SMALL_STATE(1213)] = 34090, + [SMALL_STATE(1214)] = 34142, + [SMALL_STATE(1215)] = 34194, + [SMALL_STATE(1216)] = 34246, + [SMALL_STATE(1217)] = 34298, + [SMALL_STATE(1218)] = 34350, + [SMALL_STATE(1219)] = 34402, + [SMALL_STATE(1220)] = 34454, + [SMALL_STATE(1221)] = 34506, + [SMALL_STATE(1222)] = 34558, + [SMALL_STATE(1223)] = 34610, + [SMALL_STATE(1224)] = 34662, + [SMALL_STATE(1225)] = 34714, + [SMALL_STATE(1226)] = 34766, + [SMALL_STATE(1227)] = 34830, + [SMALL_STATE(1228)] = 34882, + [SMALL_STATE(1229)] = 34934, + [SMALL_STATE(1230)] = 34986, + [SMALL_STATE(1231)] = 35038, + [SMALL_STATE(1232)] = 35090, + [SMALL_STATE(1233)] = 35142, + [SMALL_STATE(1234)] = 35196, + [SMALL_STATE(1235)] = 35256, + [SMALL_STATE(1236)] = 35308, + [SMALL_STATE(1237)] = 35360, + [SMALL_STATE(1238)] = 35412, + [SMALL_STATE(1239)] = 35464, + [SMALL_STATE(1240)] = 35516, + [SMALL_STATE(1241)] = 35568, + [SMALL_STATE(1242)] = 35620, + [SMALL_STATE(1243)] = 35672, + [SMALL_STATE(1244)] = 35724, + [SMALL_STATE(1245)] = 35776, + [SMALL_STATE(1246)] = 35828, + [SMALL_STATE(1247)] = 35880, + [SMALL_STATE(1248)] = 35932, + [SMALL_STATE(1249)] = 35984, + [SMALL_STATE(1250)] = 36036, + [SMALL_STATE(1251)] = 36088, + [SMALL_STATE(1252)] = 36140, + [SMALL_STATE(1253)] = 36192, + [SMALL_STATE(1254)] = 36244, + [SMALL_STATE(1255)] = 36296, + [SMALL_STATE(1256)] = 36348, + [SMALL_STATE(1257)] = 36400, + [SMALL_STATE(1258)] = 36452, + [SMALL_STATE(1259)] = 36504, + [SMALL_STATE(1260)] = 36556, + [SMALL_STATE(1261)] = 36608, + [SMALL_STATE(1262)] = 36660, + [SMALL_STATE(1263)] = 36712, + [SMALL_STATE(1264)] = 36764, + [SMALL_STATE(1265)] = 36816, + [SMALL_STATE(1266)] = 36868, + [SMALL_STATE(1267)] = 36920, + [SMALL_STATE(1268)] = 36972, + [SMALL_STATE(1269)] = 37024, + [SMALL_STATE(1270)] = 37076, + [SMALL_STATE(1271)] = 37128, + [SMALL_STATE(1272)] = 37180, + [SMALL_STATE(1273)] = 37232, + [SMALL_STATE(1274)] = 37284, + [SMALL_STATE(1275)] = 37336, + [SMALL_STATE(1276)] = 37388, + [SMALL_STATE(1277)] = 37440, + [SMALL_STATE(1278)] = 37492, + [SMALL_STATE(1279)] = 37544, + [SMALL_STATE(1280)] = 37611, + [SMALL_STATE(1281)] = 37672, + [SMALL_STATE(1282)] = 37751, + [SMALL_STATE(1283)] = 37822, + [SMALL_STATE(1284)] = 37901, + [SMALL_STATE(1285)] = 37986, + [SMALL_STATE(1286)] = 38065, + [SMALL_STATE(1287)] = 38152, + [SMALL_STATE(1288)] = 38211, + [SMALL_STATE(1289)] = 38298, + [SMALL_STATE(1290)] = 38377, + [SMALL_STATE(1291)] = 38462, + [SMALL_STATE(1292)] = 38525, + [SMALL_STATE(1293)] = 38604, + [SMALL_STATE(1294)] = 38681, + [SMALL_STATE(1295)] = 38740, + [SMALL_STATE(1296)] = 38827, + [SMALL_STATE(1297)] = 38886, + [SMALL_STATE(1298)] = 38965, + [SMALL_STATE(1299)] = 39044, + [SMALL_STATE(1300)] = 39103, + [SMALL_STATE(1301)] = 39154, + [SMALL_STATE(1302)] = 39241, + [SMALL_STATE(1303)] = 39316, + [SMALL_STATE(1304)] = 39385, + [SMALL_STATE(1305)] = 39442, + [SMALL_STATE(1306)] = 39529, + [SMALL_STATE(1307)] = 39594, + [SMALL_STATE(1308)] = 39681, + [SMALL_STATE(1309)] = 39740, + [SMALL_STATE(1310)] = 39801, + [SMALL_STATE(1311)] = 39886, + [SMALL_STATE(1312)] = 39971, + [SMALL_STATE(1313)] = 40032, + [SMALL_STATE(1314)] = 40090, + [SMALL_STATE(1315)] = 40146, + [SMALL_STATE(1316)] = 40200, + [SMALL_STATE(1317)] = 40254, + [SMALL_STATE(1318)] = 40308, + [SMALL_STATE(1319)] = 40362, + [SMALL_STATE(1320)] = 40414, + [SMALL_STATE(1321)] = 40466, + [SMALL_STATE(1322)] = 40542, + [SMALL_STATE(1323)] = 40596, + [SMALL_STATE(1324)] = 40672, + [SMALL_STATE(1325)] = 40748, + [SMALL_STATE(1326)] = 40824, + [SMALL_STATE(1327)] = 40882, + [SMALL_STATE(1328)] = 40934, + [SMALL_STATE(1329)] = 40992, + [SMALL_STATE(1330)] = 41044, + [SMALL_STATE(1331)] = 41120, + [SMALL_STATE(1332)] = 41196, + [SMALL_STATE(1333)] = 41285, + [SMALL_STATE(1334)] = 41338, + [SMALL_STATE(1335)] = 41387, + [SMALL_STATE(1336)] = 41436, + [SMALL_STATE(1337)] = 41485, + [SMALL_STATE(1338)] = 41574, + [SMALL_STATE(1339)] = 41627, + [SMALL_STATE(1340)] = 41676, + [SMALL_STATE(1341)] = 41749, + [SMALL_STATE(1342)] = 41802, + [SMALL_STATE(1343)] = 41891, + [SMALL_STATE(1344)] = 41940, + [SMALL_STATE(1345)] = 41989, + [SMALL_STATE(1346)] = 42038, + [SMALL_STATE(1347)] = 42091, + [SMALL_STATE(1348)] = 42142, + [SMALL_STATE(1349)] = 42191, + [SMALL_STATE(1350)] = 42242, + [SMALL_STATE(1351)] = 42293, + [SMALL_STATE(1352)] = 42346, + [SMALL_STATE(1353)] = 42395, + [SMALL_STATE(1354)] = 42446, + [SMALL_STATE(1355)] = 42495, + [SMALL_STATE(1356)] = 42544, + [SMALL_STATE(1357)] = 42593, + [SMALL_STATE(1358)] = 42642, + [SMALL_STATE(1359)] = 42695, + [SMALL_STATE(1360)] = 42784, + [SMALL_STATE(1361)] = 42837, + [SMALL_STATE(1362)] = 42885, + [SMALL_STATE(1363)] = 42937, + [SMALL_STATE(1364)] = 42987, + [SMALL_STATE(1365)] = 43037, + [SMALL_STATE(1366)] = 43087, + [SMALL_STATE(1367)] = 43135, + [SMALL_STATE(1368)] = 43185, + [SMALL_STATE(1369)] = 43235, + [SMALL_STATE(1370)] = 43313, + [SMALL_STATE(1371)] = 43363, + [SMALL_STATE(1372)] = 43413, + [SMALL_STATE(1373)] = 43463, + [SMALL_STATE(1374)] = 43513, + [SMALL_STATE(1375)] = 43563, + [SMALL_STATE(1376)] = 43613, + [SMALL_STATE(1377)] = 43661, + [SMALL_STATE(1378)] = 43739, + [SMALL_STATE(1379)] = 43787, + [SMALL_STATE(1380)] = 43873, + [SMALL_STATE(1381)] = 43923, + [SMALL_STATE(1382)] = 43973, + [SMALL_STATE(1383)] = 44021, + [SMALL_STATE(1384)] = 44071, + [SMALL_STATE(1385)] = 44119, + [SMALL_STATE(1386)] = 44169, + [SMALL_STATE(1387)] = 44217, + [SMALL_STATE(1388)] = 44267, + [SMALL_STATE(1389)] = 44317, + [SMALL_STATE(1390)] = 44403, + [SMALL_STATE(1391)] = 44453, + [SMALL_STATE(1392)] = 44539, + [SMALL_STATE(1393)] = 44625, + [SMALL_STATE(1394)] = 44675, + [SMALL_STATE(1395)] = 44723, + [SMALL_STATE(1396)] = 44801, + [SMALL_STATE(1397)] = 44849, + [SMALL_STATE(1398)] = 44897, + [SMALL_STATE(1399)] = 44945, + [SMALL_STATE(1400)] = 44993, + [SMALL_STATE(1401)] = 45041, + [SMALL_STATE(1402)] = 45088, + [SMALL_STATE(1403)] = 45135, + [SMALL_STATE(1404)] = 45182, + [SMALL_STATE(1405)] = 45229, + [SMALL_STATE(1406)] = 45276, + [SMALL_STATE(1407)] = 45323, + [SMALL_STATE(1408)] = 45370, + [SMALL_STATE(1409)] = 45417, + [SMALL_STATE(1410)] = 45500, + [SMALL_STATE(1411)] = 45583, + [SMALL_STATE(1412)] = 45666, + [SMALL_STATE(1413)] = 45713, + [SMALL_STATE(1414)] = 45794, + [SMALL_STATE(1415)] = 45841, + [SMALL_STATE(1416)] = 45896, + [SMALL_STATE(1417)] = 45943, + [SMALL_STATE(1418)] = 46026, + [SMALL_STATE(1419)] = 46109, + [SMALL_STATE(1420)] = 46156, + [SMALL_STATE(1421)] = 46203, + [SMALL_STATE(1422)] = 46250, + [SMALL_STATE(1423)] = 46333, + [SMALL_STATE(1424)] = 46414, + [SMALL_STATE(1425)] = 46497, + [SMALL_STATE(1426)] = 46544, + [SMALL_STATE(1427)] = 46625, + [SMALL_STATE(1428)] = 46708, + [SMALL_STATE(1429)] = 46791, + [SMALL_STATE(1430)] = 46874, + [SMALL_STATE(1431)] = 46921, + [SMALL_STATE(1432)] = 47004, + [SMALL_STATE(1433)] = 47087, + [SMALL_STATE(1434)] = 47170, + [SMALL_STATE(1435)] = 47253, + [SMALL_STATE(1436)] = 47336, + [SMALL_STATE(1437)] = 47419, + [SMALL_STATE(1438)] = 47502, + [SMALL_STATE(1439)] = 47549, + [SMALL_STATE(1440)] = 47596, + [SMALL_STATE(1441)] = 47643, + [SMALL_STATE(1442)] = 47714, + [SMALL_STATE(1443)] = 47761, + [SMALL_STATE(1444)] = 47844, + [SMALL_STATE(1445)] = 47927, + [SMALL_STATE(1446)] = 47974, + [SMALL_STATE(1447)] = 48057, + [SMALL_STATE(1448)] = 48104, + [SMALL_STATE(1449)] = 48187, + [SMALL_STATE(1450)] = 48270, + [SMALL_STATE(1451)] = 48353, + [SMALL_STATE(1452)] = 48400, + [SMALL_STATE(1453)] = 48483, + [SMALL_STATE(1454)] = 48566, + [SMALL_STATE(1455)] = 48613, + [SMALL_STATE(1456)] = 48660, + [SMALL_STATE(1457)] = 48715, + [SMALL_STATE(1458)] = 48798, + [SMALL_STATE(1459)] = 48845, + [SMALL_STATE(1460)] = 48928, + [SMALL_STATE(1461)] = 49011, + [SMALL_STATE(1462)] = 49094, + [SMALL_STATE(1463)] = 49177, + [SMALL_STATE(1464)] = 49224, + [SMALL_STATE(1465)] = 49307, + [SMALL_STATE(1466)] = 49390, + [SMALL_STATE(1467)] = 49473, + [SMALL_STATE(1468)] = 49556, + [SMALL_STATE(1469)] = 49603, + [SMALL_STATE(1470)] = 49650, + [SMALL_STATE(1471)] = 49697, + [SMALL_STATE(1472)] = 49752, + [SMALL_STATE(1473)] = 49799, + [SMALL_STATE(1474)] = 49846, + [SMALL_STATE(1475)] = 49929, + [SMALL_STATE(1476)] = 49976, + [SMALL_STATE(1477)] = 50023, + [SMALL_STATE(1478)] = 50070, + [SMALL_STATE(1479)] = 50153, + [SMALL_STATE(1480)] = 50200, + [SMALL_STATE(1481)] = 50281, + [SMALL_STATE(1482)] = 50364, + [SMALL_STATE(1483)] = 50411, + [SMALL_STATE(1484)] = 50492, + [SMALL_STATE(1485)] = 50539, + [SMALL_STATE(1486)] = 50614, + [SMALL_STATE(1487)] = 50697, + [SMALL_STATE(1488)] = 50744, + [SMALL_STATE(1489)] = 50791, + [SMALL_STATE(1490)] = 50838, + [SMALL_STATE(1491)] = 50921, + [SMALL_STATE(1492)] = 51004, + [SMALL_STATE(1493)] = 51087, + [SMALL_STATE(1494)] = 51170, + [SMALL_STATE(1495)] = 51217, + [SMALL_STATE(1496)] = 51300, + [SMALL_STATE(1497)] = 51381, + [SMALL_STATE(1498)] = 51428, + [SMALL_STATE(1499)] = 51511, + [SMALL_STATE(1500)] = 51558, + [SMALL_STATE(1501)] = 51605, + [SMALL_STATE(1502)] = 51660, + [SMALL_STATE(1503)] = 51721, + [SMALL_STATE(1504)] = 51776, + [SMALL_STATE(1505)] = 51823, + [SMALL_STATE(1506)] = 51904, + [SMALL_STATE(1507)] = 51951, + [SMALL_STATE(1508)] = 52034, + [SMALL_STATE(1509)] = 52081, + [SMALL_STATE(1510)] = 52128, + [SMALL_STATE(1511)] = 52195, + [SMALL_STATE(1512)] = 52278, + [SMALL_STATE(1513)] = 52361, + [SMALL_STATE(1514)] = 52408, + [SMALL_STATE(1515)] = 52489, + [SMALL_STATE(1516)] = 52572, + [SMALL_STATE(1517)] = 52655, + [SMALL_STATE(1518)] = 52702, + [SMALL_STATE(1519)] = 52783, + [SMALL_STATE(1520)] = 52830, + [SMALL_STATE(1521)] = 52911, + [SMALL_STATE(1522)] = 52958, + [SMALL_STATE(1523)] = 53023, + [SMALL_STATE(1524)] = 53070, + [SMALL_STATE(1525)] = 53117, + [SMALL_STATE(1526)] = 53192, + [SMALL_STATE(1527)] = 53239, + [SMALL_STATE(1528)] = 53286, + [SMALL_STATE(1529)] = 53333, + [SMALL_STATE(1530)] = 53380, + [SMALL_STATE(1531)] = 53427, + [SMALL_STATE(1532)] = 53502, + [SMALL_STATE(1533)] = 53549, + [SMALL_STATE(1534)] = 53624, + [SMALL_STATE(1535)] = 53671, + [SMALL_STATE(1536)] = 53718, + [SMALL_STATE(1537)] = 53765, + [SMALL_STATE(1538)] = 53840, + [SMALL_STATE(1539)] = 53887, + [SMALL_STATE(1540)] = 53934, + [SMALL_STATE(1541)] = 53981, + [SMALL_STATE(1542)] = 54028, + [SMALL_STATE(1543)] = 54103, + [SMALL_STATE(1544)] = 54150, + [SMALL_STATE(1545)] = 54225, + [SMALL_STATE(1546)] = 54272, + [SMALL_STATE(1547)] = 54339, + [SMALL_STATE(1548)] = 54414, + [SMALL_STATE(1549)] = 54489, + [SMALL_STATE(1550)] = 54548, + [SMALL_STATE(1551)] = 54621, + [SMALL_STATE(1552)] = 54704, + [SMALL_STATE(1553)] = 54787, + [SMALL_STATE(1554)] = 54862, + [SMALL_STATE(1555)] = 54933, + [SMALL_STATE(1556)] = 55014, + [SMALL_STATE(1557)] = 55061, + [SMALL_STATE(1558)] = 55126, + [SMALL_STATE(1559)] = 55173, + [SMALL_STATE(1560)] = 55220, + [SMALL_STATE(1561)] = 55275, + [SMALL_STATE(1562)] = 55322, + [SMALL_STATE(1563)] = 55369, + [SMALL_STATE(1564)] = 55452, + [SMALL_STATE(1565)] = 55535, + [SMALL_STATE(1566)] = 55582, + [SMALL_STATE(1567)] = 55643, + [SMALL_STATE(1568)] = 55706, + [SMALL_STATE(1569)] = 55753, + [SMALL_STATE(1570)] = 55834, + [SMALL_STATE(1571)] = 55889, + [SMALL_STATE(1572)] = 55946, + [SMALL_STATE(1573)] = 56027, + [SMALL_STATE(1574)] = 56074, + [SMALL_STATE(1575)] = 56121, + [SMALL_STATE(1576)] = 56204, + [SMALL_STATE(1577)] = 56259, + [SMALL_STATE(1578)] = 56318, + [SMALL_STATE(1579)] = 56365, + [SMALL_STATE(1580)] = 56412, + [SMALL_STATE(1581)] = 56459, + [SMALL_STATE(1582)] = 56506, + [SMALL_STATE(1583)] = 56553, + [SMALL_STATE(1584)] = 56600, + [SMALL_STATE(1585)] = 56681, + [SMALL_STATE(1586)] = 56764, + [SMALL_STATE(1587)] = 56837, + [SMALL_STATE(1588)] = 56920, + [SMALL_STATE(1589)] = 56967, + [SMALL_STATE(1590)] = 57050, + [SMALL_STATE(1591)] = 57097, + [SMALL_STATE(1592)] = 57154, + [SMALL_STATE(1593)] = 57235, + [SMALL_STATE(1594)] = 57310, + [SMALL_STATE(1595)] = 57357, + [SMALL_STATE(1596)] = 57432, + [SMALL_STATE(1597)] = 57515, + [SMALL_STATE(1598)] = 57586, + [SMALL_STATE(1599)] = 57649, + [SMALL_STATE(1600)] = 57730, + [SMALL_STATE(1601)] = 57813, + [SMALL_STATE(1602)] = 57896, + [SMALL_STATE(1603)] = 57976, + [SMALL_STATE(1604)] = 58056, + [SMALL_STATE(1605)] = 58136, + [SMALL_STATE(1606)] = 58216, + [SMALL_STATE(1607)] = 58296, + [SMALL_STATE(1608)] = 58376, + [SMALL_STATE(1609)] = 58456, + [SMALL_STATE(1610)] = 58524, + [SMALL_STATE(1611)] = 58604, + [SMALL_STATE(1612)] = 58684, + [SMALL_STATE(1613)] = 58764, + [SMALL_STATE(1614)] = 58844, + [SMALL_STATE(1615)] = 58924, + [SMALL_STATE(1616)] = 59004, + [SMALL_STATE(1617)] = 59084, + [SMALL_STATE(1618)] = 59164, + [SMALL_STATE(1619)] = 59244, + [SMALL_STATE(1620)] = 59324, + [SMALL_STATE(1621)] = 59392, + [SMALL_STATE(1622)] = 59472, + [SMALL_STATE(1623)] = 59552, + [SMALL_STATE(1624)] = 59632, + [SMALL_STATE(1625)] = 59712, + [SMALL_STATE(1626)] = 59792, + [SMALL_STATE(1627)] = 59872, + [SMALL_STATE(1628)] = 59952, + [SMALL_STATE(1629)] = 60032, + [SMALL_STATE(1630)] = 60112, + [SMALL_STATE(1631)] = 60192, + [SMALL_STATE(1632)] = 60272, + [SMALL_STATE(1633)] = 60352, + [SMALL_STATE(1634)] = 60432, + [SMALL_STATE(1635)] = 60512, + [SMALL_STATE(1636)] = 60592, + [SMALL_STATE(1637)] = 60672, + [SMALL_STATE(1638)] = 60752, + [SMALL_STATE(1639)] = 60832, + [SMALL_STATE(1640)] = 60912, + [SMALL_STATE(1641)] = 60992, + [SMALL_STATE(1642)] = 61072, + [SMALL_STATE(1643)] = 61152, + [SMALL_STATE(1644)] = 61217, + [SMALL_STATE(1645)] = 61282, + [SMALL_STATE(1646)] = 61347, + [SMALL_STATE(1647)] = 61412, + [SMALL_STATE(1648)] = 61477, + [SMALL_STATE(1649)] = 61517, + [SMALL_STATE(1650)] = 61557, + [SMALL_STATE(1651)] = 61597, + [SMALL_STATE(1652)] = 61649, + [SMALL_STATE(1653)] = 61701, + [SMALL_STATE(1654)] = 61727, + [SMALL_STATE(1655)] = 61753, + [SMALL_STATE(1656)] = 61793, + [SMALL_STATE(1657)] = 61822, + [SMALL_STATE(1658)] = 61859, + [SMALL_STATE(1659)] = 61896, + [SMALL_STATE(1660)] = 61925, + [SMALL_STATE(1661)] = 61954, + [SMALL_STATE(1662)] = 61983, + [SMALL_STATE(1663)] = 62023, + [SMALL_STATE(1664)] = 62077, + [SMALL_STATE(1665)] = 62109, + [SMALL_STATE(1666)] = 62141, + [SMALL_STATE(1667)] = 62173, + [SMALL_STATE(1668)] = 62227, + [SMALL_STATE(1669)] = 62252, + [SMALL_STATE(1670)] = 62275, + [SMALL_STATE(1671)] = 62299, + [SMALL_STATE(1672)] = 62325, + [SMALL_STATE(1673)] = 62349, + [SMALL_STATE(1674)] = 62371, + [SMALL_STATE(1675)] = 62415, + [SMALL_STATE(1676)] = 62439, + [SMALL_STATE(1677)] = 62485, + [SMALL_STATE(1678)] = 62507, + [SMALL_STATE(1679)] = 62531, + [SMALL_STATE(1680)] = 62555, + [SMALL_STATE(1681)] = 62577, + [SMALL_STATE(1682)] = 62603, + [SMALL_STATE(1683)] = 62629, + [SMALL_STATE(1684)] = 62655, + [SMALL_STATE(1685)] = 62679, + [SMALL_STATE(1686)] = 62703, + [SMALL_STATE(1687)] = 62747, + [SMALL_STATE(1688)] = 62771, + [SMALL_STATE(1689)] = 62795, + [SMALL_STATE(1690)] = 62819, + [SMALL_STATE(1691)] = 62840, + [SMALL_STATE(1692)] = 62863, + [SMALL_STATE(1693)] = 62886, + [SMALL_STATE(1694)] = 62911, + [SMALL_STATE(1695)] = 62934, + [SMALL_STATE(1696)] = 62957, + [SMALL_STATE(1697)] = 62978, + [SMALL_STATE(1698)] = 63001, + [SMALL_STATE(1699)] = 63026, + [SMALL_STATE(1700)] = 63049, + [SMALL_STATE(1701)] = 63072, + [SMALL_STATE(1702)] = 63093, + [SMALL_STATE(1703)] = 63118, + [SMALL_STATE(1704)] = 63163, + [SMALL_STATE(1705)] = 63186, + [SMALL_STATE(1706)] = 63207, + [SMALL_STATE(1707)] = 63232, + [SMALL_STATE(1708)] = 63253, + [SMALL_STATE(1709)] = 63278, + [SMALL_STATE(1710)] = 63303, + [SMALL_STATE(1711)] = 63323, + [SMALL_STATE(1712)] = 63343, + [SMALL_STATE(1713)] = 63363, + [SMALL_STATE(1714)] = 63383, + [SMALL_STATE(1715)] = 63403, + [SMALL_STATE(1716)] = 63423, + [SMALL_STATE(1717)] = 63451, + [SMALL_STATE(1718)] = 63471, + [SMALL_STATE(1719)] = 63491, + [SMALL_STATE(1720)] = 63511, + [SMALL_STATE(1721)] = 63531, + [SMALL_STATE(1722)] = 63551, + [SMALL_STATE(1723)] = 63571, + [SMALL_STATE(1724)] = 63591, + [SMALL_STATE(1725)] = 63611, + [SMALL_STATE(1726)] = 63631, + [SMALL_STATE(1727)] = 63651, + [SMALL_STATE(1728)] = 63671, + [SMALL_STATE(1729)] = 63691, + [SMALL_STATE(1730)] = 63711, + [SMALL_STATE(1731)] = 63731, + [SMALL_STATE(1732)] = 63751, + [SMALL_STATE(1733)] = 63771, + [SMALL_STATE(1734)] = 63791, + [SMALL_STATE(1735)] = 63811, + [SMALL_STATE(1736)] = 63831, + [SMALL_STATE(1737)] = 63851, + [SMALL_STATE(1738)] = 63871, + [SMALL_STATE(1739)] = 63896, + [SMALL_STATE(1740)] = 63921, + [SMALL_STATE(1741)] = 63946, + [SMALL_STATE(1742)] = 63971, + [SMALL_STATE(1743)] = 63996, + [SMALL_STATE(1744)] = 64015, + [SMALL_STATE(1745)] = 64038, + [SMALL_STATE(1746)] = 64061, + [SMALL_STATE(1747)] = 64096, + [SMALL_STATE(1748)] = 64121, + [SMALL_STATE(1749)] = 64144, + [SMALL_STATE(1750)] = 64169, + [SMALL_STATE(1751)] = 64194, + [SMALL_STATE(1752)] = 64219, + [SMALL_STATE(1753)] = 64242, + [SMALL_STATE(1754)] = 64268, + [SMALL_STATE(1755)] = 64292, + [SMALL_STATE(1756)] = 64324, + [SMALL_STATE(1757)] = 64356, + [SMALL_STATE(1758)] = 64380, + [SMALL_STATE(1759)] = 64398, + [SMALL_STATE(1760)] = 64418, + [SMALL_STATE(1761)] = 64450, + [SMALL_STATE(1762)] = 64474, + [SMALL_STATE(1763)] = 64506, + [SMALL_STATE(1764)] = 64532, + [SMALL_STATE(1765)] = 64564, + [SMALL_STATE(1766)] = 64596, + [SMALL_STATE(1767)] = 64620, + [SMALL_STATE(1768)] = 64652, + [SMALL_STATE(1769)] = 64670, + [SMALL_STATE(1770)] = 64702, + [SMALL_STATE(1771)] = 64734, + [SMALL_STATE(1772)] = 64753, + [SMALL_STATE(1773)] = 64786, + [SMALL_STATE(1774)] = 64803, + [SMALL_STATE(1775)] = 64832, + [SMALL_STATE(1776)] = 64859, + [SMALL_STATE(1777)] = 64882, + [SMALL_STATE(1778)] = 64911, + [SMALL_STATE(1779)] = 64934, + [SMALL_STATE(1780)] = 64959, + [SMALL_STATE(1781)] = 64980, + [SMALL_STATE(1782)] = 65001, + [SMALL_STATE(1783)] = 65022, + [SMALL_STATE(1784)] = 65043, + [SMALL_STATE(1785)] = 65060, + [SMALL_STATE(1786)] = 65091, + [SMALL_STATE(1787)] = 65110, + [SMALL_STATE(1788)] = 65143, + [SMALL_STATE(1789)] = 65160, + [SMALL_STATE(1790)] = 65183, + [SMALL_STATE(1791)] = 65202, + [SMALL_STATE(1792)] = 65221, + [SMALL_STATE(1793)] = 65242, + [SMALL_STATE(1794)] = 65263, + [SMALL_STATE(1795)] = 65284, + [SMALL_STATE(1796)] = 65317, + [SMALL_STATE(1797)] = 65350, + [SMALL_STATE(1798)] = 65371, + [SMALL_STATE(1799)] = 65387, + [SMALL_STATE(1800)] = 65417, + [SMALL_STATE(1801)] = 65433, + [SMALL_STATE(1802)] = 65463, + [SMALL_STATE(1803)] = 65493, + [SMALL_STATE(1804)] = 65523, + [SMALL_STATE(1805)] = 65539, + [SMALL_STATE(1806)] = 65565, + [SMALL_STATE(1807)] = 65587, + [SMALL_STATE(1808)] = 65609, + [SMALL_STATE(1809)] = 65639, + [SMALL_STATE(1810)] = 65665, + [SMALL_STATE(1811)] = 65687, + [SMALL_STATE(1812)] = 65703, + [SMALL_STATE(1813)] = 65719, + [SMALL_STATE(1814)] = 65749, + [SMALL_STATE(1815)] = 65775, + [SMALL_STATE(1816)] = 65791, + [SMALL_STATE(1817)] = 65807, + [SMALL_STATE(1818)] = 65833, + [SMALL_STATE(1819)] = 65863, + [SMALL_STATE(1820)] = 65879, + [SMALL_STATE(1821)] = 65895, + [SMALL_STATE(1822)] = 65925, + [SMALL_STATE(1823)] = 65941, + [SMALL_STATE(1824)] = 65957, + [SMALL_STATE(1825)] = 65989, + [SMALL_STATE(1826)] = 66019, + [SMALL_STATE(1827)] = 66045, + [SMALL_STATE(1828)] = 66077, + [SMALL_STATE(1829)] = 66093, + [SMALL_STATE(1830)] = 66109, + [SMALL_STATE(1831)] = 66139, + [SMALL_STATE(1832)] = 66155, + [SMALL_STATE(1833)] = 66187, + [SMALL_STATE(1834)] = 66203, + [SMALL_STATE(1835)] = 66219, + [SMALL_STATE(1836)] = 66249, + [SMALL_STATE(1837)] = 66265, + [SMALL_STATE(1838)] = 66295, + [SMALL_STATE(1839)] = 66321, + [SMALL_STATE(1840)] = 66347, + [SMALL_STATE(1841)] = 66377, + [SMALL_STATE(1842)] = 66407, + [SMALL_STATE(1843)] = 66437, + [SMALL_STATE(1844)] = 66453, + [SMALL_STATE(1845)] = 66479, + [SMALL_STATE(1846)] = 66501, + [SMALL_STATE(1847)] = 66527, + [SMALL_STATE(1848)] = 66553, + [SMALL_STATE(1849)] = 66569, + [SMALL_STATE(1850)] = 66599, + [SMALL_STATE(1851)] = 66629, + [SMALL_STATE(1852)] = 66659, + [SMALL_STATE(1853)] = 66675, + [SMALL_STATE(1854)] = 66697, + [SMALL_STATE(1855)] = 66713, + [SMALL_STATE(1856)] = 66739, + [SMALL_STATE(1857)] = 66755, + [SMALL_STATE(1858)] = 66787, + [SMALL_STATE(1859)] = 66803, + [SMALL_STATE(1860)] = 66819, + [SMALL_STATE(1861)] = 66841, + [SMALL_STATE(1862)] = 66857, + [SMALL_STATE(1863)] = 66873, + [SMALL_STATE(1864)] = 66903, + [SMALL_STATE(1865)] = 66919, + [SMALL_STATE(1866)] = 66949, + [SMALL_STATE(1867)] = 66975, + [SMALL_STATE(1868)] = 67001, + [SMALL_STATE(1869)] = 67017, + [SMALL_STATE(1870)] = 67033, + [SMALL_STATE(1871)] = 67049, + [SMALL_STATE(1872)] = 67079, + [SMALL_STATE(1873)] = 67095, + [SMALL_STATE(1874)] = 67122, + [SMALL_STATE(1875)] = 67141, + [SMALL_STATE(1876)] = 67162, + [SMALL_STATE(1877)] = 67181, + [SMALL_STATE(1878)] = 67210, + [SMALL_STATE(1879)] = 67229, + [SMALL_STATE(1880)] = 67256, + [SMALL_STATE(1881)] = 67283, + [SMALL_STATE(1882)] = 67306, + [SMALL_STATE(1883)] = 67333, + [SMALL_STATE(1884)] = 67358, + [SMALL_STATE(1885)] = 67385, + [SMALL_STATE(1886)] = 67404, + [SMALL_STATE(1887)] = 67423, + [SMALL_STATE(1888)] = 67442, + [SMALL_STATE(1889)] = 67469, + [SMALL_STATE(1890)] = 67496, + [SMALL_STATE(1891)] = 67515, + [SMALL_STATE(1892)] = 67534, + [SMALL_STATE(1893)] = 67553, + [SMALL_STATE(1894)] = 67572, + [SMALL_STATE(1895)] = 67595, + [SMALL_STATE(1896)] = 67614, + [SMALL_STATE(1897)] = 67629, + [SMALL_STATE(1898)] = 67658, + [SMALL_STATE(1899)] = 67685, + [SMALL_STATE(1900)] = 67714, + [SMALL_STATE(1901)] = 67741, + [SMALL_STATE(1902)] = 67768, + [SMALL_STATE(1903)] = 67795, + [SMALL_STATE(1904)] = 67822, + [SMALL_STATE(1905)] = 67851, + [SMALL_STATE(1906)] = 67880, + [SMALL_STATE(1907)] = 67907, + [SMALL_STATE(1908)] = 67934, + [SMALL_STATE(1909)] = 67955, + [SMALL_STATE(1910)] = 67978, + [SMALL_STATE(1911)] = 67997, + [SMALL_STATE(1912)] = 68024, + [SMALL_STATE(1913)] = 68051, + [SMALL_STATE(1914)] = 68074, + [SMALL_STATE(1915)] = 68101, + [SMALL_STATE(1916)] = 68124, + [SMALL_STATE(1917)] = 68153, + [SMALL_STATE(1918)] = 68169, + [SMALL_STATE(1919)] = 68195, + [SMALL_STATE(1920)] = 68211, + [SMALL_STATE(1921)] = 68237, + [SMALL_STATE(1922)] = 68263, + [SMALL_STATE(1923)] = 68289, + [SMALL_STATE(1924)] = 68315, + [SMALL_STATE(1925)] = 68341, + [SMALL_STATE(1926)] = 68367, + [SMALL_STATE(1927)] = 68393, + [SMALL_STATE(1928)] = 68419, + [SMALL_STATE(1929)] = 68445, + [SMALL_STATE(1930)] = 68461, + [SMALL_STATE(1931)] = 68487, + [SMALL_STATE(1932)] = 68513, + [SMALL_STATE(1933)] = 68539, + [SMALL_STATE(1934)] = 68565, + [SMALL_STATE(1935)] = 68589, + [SMALL_STATE(1936)] = 68611, + [SMALL_STATE(1937)] = 68635, + [SMALL_STATE(1938)] = 68649, + [SMALL_STATE(1939)] = 68675, + [SMALL_STATE(1940)] = 68691, + [SMALL_STATE(1941)] = 68705, + [SMALL_STATE(1942)] = 68731, + [SMALL_STATE(1943)] = 68745, + [SMALL_STATE(1944)] = 68771, + [SMALL_STATE(1945)] = 68787, + [SMALL_STATE(1946)] = 68811, + [SMALL_STATE(1947)] = 68825, + [SMALL_STATE(1948)] = 68841, + [SMALL_STATE(1949)] = 68855, + [SMALL_STATE(1950)] = 68881, + [SMALL_STATE(1951)] = 68905, + [SMALL_STATE(1952)] = 68929, + [SMALL_STATE(1953)] = 68945, + [SMALL_STATE(1954)] = 68969, + [SMALL_STATE(1955)] = 68993, + [SMALL_STATE(1956)] = 69017, + [SMALL_STATE(1957)] = 69043, + [SMALL_STATE(1958)] = 69059, + [SMALL_STATE(1959)] = 69079, + [SMALL_STATE(1960)] = 69093, + [SMALL_STATE(1961)] = 69119, + [SMALL_STATE(1962)] = 69145, + [SMALL_STATE(1963)] = 69169, + [SMALL_STATE(1964)] = 69195, + [SMALL_STATE(1965)] = 69211, + [SMALL_STATE(1966)] = 69233, + [SMALL_STATE(1967)] = 69247, + [SMALL_STATE(1968)] = 69273, + [SMALL_STATE(1969)] = 69299, + [SMALL_STATE(1970)] = 69322, + [SMALL_STATE(1971)] = 69345, + [SMALL_STATE(1972)] = 69362, + [SMALL_STATE(1973)] = 69385, + [SMALL_STATE(1974)] = 69408, + [SMALL_STATE(1975)] = 69427, + [SMALL_STATE(1976)] = 69448, + [SMALL_STATE(1977)] = 69471, + [SMALL_STATE(1978)] = 69494, + [SMALL_STATE(1979)] = 69517, + [SMALL_STATE(1980)] = 69534, + [SMALL_STATE(1981)] = 69557, + [SMALL_STATE(1982)] = 69574, + [SMALL_STATE(1983)] = 69597, + [SMALL_STATE(1984)] = 69620, + [SMALL_STATE(1985)] = 69643, + [SMALL_STATE(1986)] = 69660, + [SMALL_STATE(1987)] = 69683, + [SMALL_STATE(1988)] = 69706, + [SMALL_STATE(1989)] = 69729, + [SMALL_STATE(1990)] = 69752, + [SMALL_STATE(1991)] = 69775, + [SMALL_STATE(1992)] = 69798, + [SMALL_STATE(1993)] = 69815, + [SMALL_STATE(1994)] = 69830, + [SMALL_STATE(1995)] = 69853, + [SMALL_STATE(1996)] = 69876, + [SMALL_STATE(1997)] = 69899, + [SMALL_STATE(1998)] = 69916, + [SMALL_STATE(1999)] = 69939, + [SMALL_STATE(2000)] = 69956, + [SMALL_STATE(2001)] = 69973, + [SMALL_STATE(2002)] = 69996, + [SMALL_STATE(2003)] = 70019, + [SMALL_STATE(2004)] = 70042, + [SMALL_STATE(2005)] = 70065, + [SMALL_STATE(2006)] = 70088, + [SMALL_STATE(2007)] = 70111, + [SMALL_STATE(2008)] = 70128, + [SMALL_STATE(2009)] = 70151, + [SMALL_STATE(2010)] = 70174, + [SMALL_STATE(2011)] = 70197, + [SMALL_STATE(2012)] = 70220, + [SMALL_STATE(2013)] = 70243, + [SMALL_STATE(2014)] = 70266, + [SMALL_STATE(2015)] = 70289, + [SMALL_STATE(2016)] = 70306, + [SMALL_STATE(2017)] = 70329, + [SMALL_STATE(2018)] = 70352, + [SMALL_STATE(2019)] = 70375, + [SMALL_STATE(2020)] = 70398, + [SMALL_STATE(2021)] = 70421, + [SMALL_STATE(2022)] = 70444, + [SMALL_STATE(2023)] = 70467, + [SMALL_STATE(2024)] = 70484, + [SMALL_STATE(2025)] = 70501, + [SMALL_STATE(2026)] = 70524, + [SMALL_STATE(2027)] = 70547, + [SMALL_STATE(2028)] = 70570, + [SMALL_STATE(2029)] = 70587, + [SMALL_STATE(2030)] = 70610, + [SMALL_STATE(2031)] = 70633, + [SMALL_STATE(2032)] = 70656, + [SMALL_STATE(2033)] = 70679, + [SMALL_STATE(2034)] = 70696, + [SMALL_STATE(2035)] = 70719, + [SMALL_STATE(2036)] = 70742, + [SMALL_STATE(2037)] = 70765, + [SMALL_STATE(2038)] = 70788, + [SMALL_STATE(2039)] = 70809, + [SMALL_STATE(2040)] = 70832, + [SMALL_STATE(2041)] = 70855, + [SMALL_STATE(2042)] = 70878, + [SMALL_STATE(2043)] = 70893, + [SMALL_STATE(2044)] = 70916, + [SMALL_STATE(2045)] = 70933, + [SMALL_STATE(2046)] = 70952, + [SMALL_STATE(2047)] = 70975, + [SMALL_STATE(2048)] = 70996, + [SMALL_STATE(2049)] = 71015, + [SMALL_STATE(2050)] = 71036, + [SMALL_STATE(2051)] = 71059, + [SMALL_STATE(2052)] = 71080, + [SMALL_STATE(2053)] = 71103, + [SMALL_STATE(2054)] = 71126, + [SMALL_STATE(2055)] = 71149, + [SMALL_STATE(2056)] = 71172, + [SMALL_STATE(2057)] = 71195, + [SMALL_STATE(2058)] = 71218, + [SMALL_STATE(2059)] = 71241, + [SMALL_STATE(2060)] = 71262, + [SMALL_STATE(2061)] = 71285, + [SMALL_STATE(2062)] = 71308, + [SMALL_STATE(2063)] = 71331, + [SMALL_STATE(2064)] = 71348, + [SMALL_STATE(2065)] = 71371, + [SMALL_STATE(2066)] = 71394, + [SMALL_STATE(2067)] = 71412, + [SMALL_STATE(2068)] = 71432, + [SMALL_STATE(2069)] = 71452, + [SMALL_STATE(2070)] = 71468, + [SMALL_STATE(2071)] = 71484, + [SMALL_STATE(2072)] = 71502, + [SMALL_STATE(2073)] = 71514, + [SMALL_STATE(2074)] = 71530, + [SMALL_STATE(2075)] = 71546, + [SMALL_STATE(2076)] = 71558, + [SMALL_STATE(2077)] = 71578, + [SMALL_STATE(2078)] = 71596, + [SMALL_STATE(2079)] = 71608, + [SMALL_STATE(2080)] = 71620, + [SMALL_STATE(2081)] = 71632, + [SMALL_STATE(2082)] = 71644, + [SMALL_STATE(2083)] = 71664, + [SMALL_STATE(2084)] = 71680, + [SMALL_STATE(2085)] = 71692, + [SMALL_STATE(2086)] = 71704, + [SMALL_STATE(2087)] = 71716, + [SMALL_STATE(2088)] = 71728, + [SMALL_STATE(2089)] = 71740, + [SMALL_STATE(2090)] = 71752, + [SMALL_STATE(2091)] = 71770, + [SMALL_STATE(2092)] = 71788, + [SMALL_STATE(2093)] = 71808, + [SMALL_STATE(2094)] = 71820, + [SMALL_STATE(2095)] = 71832, + [SMALL_STATE(2096)] = 71844, + [SMALL_STATE(2097)] = 71862, + [SMALL_STATE(2098)] = 71880, + [SMALL_STATE(2099)] = 71894, + [SMALL_STATE(2100)] = 71906, + [SMALL_STATE(2101)] = 71918, + [SMALL_STATE(2102)] = 71930, + [SMALL_STATE(2103)] = 71946, + [SMALL_STATE(2104)] = 71958, + [SMALL_STATE(2105)] = 71970, + [SMALL_STATE(2106)] = 71990, + [SMALL_STATE(2107)] = 72006, + [SMALL_STATE(2108)] = 72022, + [SMALL_STATE(2109)] = 72034, + [SMALL_STATE(2110)] = 72052, + [SMALL_STATE(2111)] = 72068, + [SMALL_STATE(2112)] = 72080, + [SMALL_STATE(2113)] = 72094, + [SMALL_STATE(2114)] = 72110, + [SMALL_STATE(2115)] = 72122, + [SMALL_STATE(2116)] = 72134, + [SMALL_STATE(2117)] = 72150, + [SMALL_STATE(2118)] = 72168, + [SMALL_STATE(2119)] = 72180, + [SMALL_STATE(2120)] = 72194, + [SMALL_STATE(2121)] = 72206, + [SMALL_STATE(2122)] = 72218, + [SMALL_STATE(2123)] = 72238, + [SMALL_STATE(2124)] = 72254, + [SMALL_STATE(2125)] = 72270, + [SMALL_STATE(2126)] = 72286, + [SMALL_STATE(2127)] = 72304, + [SMALL_STATE(2128)] = 72321, + [SMALL_STATE(2129)] = 72336, + [SMALL_STATE(2130)] = 72351, + [SMALL_STATE(2131)] = 72362, + [SMALL_STATE(2132)] = 72373, + [SMALL_STATE(2133)] = 72388, + [SMALL_STATE(2134)] = 72405, + [SMALL_STATE(2135)] = 72422, + [SMALL_STATE(2136)] = 72439, + [SMALL_STATE(2137)] = 72456, + [SMALL_STATE(2138)] = 72473, + [SMALL_STATE(2139)] = 72490, + [SMALL_STATE(2140)] = 72505, + [SMALL_STATE(2141)] = 72522, + [SMALL_STATE(2142)] = 72537, + [SMALL_STATE(2143)] = 72552, + [SMALL_STATE(2144)] = 72569, + [SMALL_STATE(2145)] = 72586, + [SMALL_STATE(2146)] = 72603, + [SMALL_STATE(2147)] = 72620, + [SMALL_STATE(2148)] = 72637, + [SMALL_STATE(2149)] = 72654, + [SMALL_STATE(2150)] = 72671, + [SMALL_STATE(2151)] = 72688, + [SMALL_STATE(2152)] = 72705, + [SMALL_STATE(2153)] = 72722, + [SMALL_STATE(2154)] = 72735, + [SMALL_STATE(2155)] = 72750, + [SMALL_STATE(2156)] = 72763, + [SMALL_STATE(2157)] = 72776, + [SMALL_STATE(2158)] = 72789, + [SMALL_STATE(2159)] = 72802, + [SMALL_STATE(2160)] = 72815, + [SMALL_STATE(2161)] = 72828, + [SMALL_STATE(2162)] = 72845, + [SMALL_STATE(2163)] = 72862, + [SMALL_STATE(2164)] = 72875, + [SMALL_STATE(2165)] = 72888, + [SMALL_STATE(2166)] = 72901, + [SMALL_STATE(2167)] = 72914, + [SMALL_STATE(2168)] = 72931, + [SMALL_STATE(2169)] = 72946, + [SMALL_STATE(2170)] = 72963, + [SMALL_STATE(2171)] = 72974, + [SMALL_STATE(2172)] = 72991, + [SMALL_STATE(2173)] = 73008, + [SMALL_STATE(2174)] = 73025, + [SMALL_STATE(2175)] = 73042, + [SMALL_STATE(2176)] = 73057, + [SMALL_STATE(2177)] = 73072, + [SMALL_STATE(2178)] = 73089, + [SMALL_STATE(2179)] = 73106, + [SMALL_STATE(2180)] = 73121, + [SMALL_STATE(2181)] = 73136, + [SMALL_STATE(2182)] = 73153, + [SMALL_STATE(2183)] = 73168, + [SMALL_STATE(2184)] = 73183, + [SMALL_STATE(2185)] = 73198, + [SMALL_STATE(2186)] = 73211, + [SMALL_STATE(2187)] = 73228, + [SMALL_STATE(2188)] = 73245, + [SMALL_STATE(2189)] = 73262, + [SMALL_STATE(2190)] = 73279, + [SMALL_STATE(2191)] = 73294, + [SMALL_STATE(2192)] = 73309, + [SMALL_STATE(2193)] = 73324, + [SMALL_STATE(2194)] = 73341, + [SMALL_STATE(2195)] = 73358, + [SMALL_STATE(2196)] = 73375, + [SMALL_STATE(2197)] = 73392, + [SMALL_STATE(2198)] = 73409, + [SMALL_STATE(2199)] = 73424, + [SMALL_STATE(2200)] = 73441, + [SMALL_STATE(2201)] = 73454, + [SMALL_STATE(2202)] = 73471, + [SMALL_STATE(2203)] = 73486, + [SMALL_STATE(2204)] = 73501, + [SMALL_STATE(2205)] = 73512, + [SMALL_STATE(2206)] = 73529, + [SMALL_STATE(2207)] = 73546, + [SMALL_STATE(2208)] = 73563, + [SMALL_STATE(2209)] = 73578, + [SMALL_STATE(2210)] = 73593, + [SMALL_STATE(2211)] = 73608, + [SMALL_STATE(2212)] = 73625, + [SMALL_STATE(2213)] = 73640, + [SMALL_STATE(2214)] = 73653, + [SMALL_STATE(2215)] = 73670, + [SMALL_STATE(2216)] = 73687, + [SMALL_STATE(2217)] = 73704, + [SMALL_STATE(2218)] = 73721, + [SMALL_STATE(2219)] = 73738, + [SMALL_STATE(2220)] = 73755, + [SMALL_STATE(2221)] = 73768, + [SMALL_STATE(2222)] = 73785, + [SMALL_STATE(2223)] = 73802, + [SMALL_STATE(2224)] = 73819, + [SMALL_STATE(2225)] = 73836, + [SMALL_STATE(2226)] = 73853, + [SMALL_STATE(2227)] = 73870, + [SMALL_STATE(2228)] = 73887, + [SMALL_STATE(2229)] = 73904, + [SMALL_STATE(2230)] = 73919, + [SMALL_STATE(2231)] = 73936, + [SMALL_STATE(2232)] = 73953, + [SMALL_STATE(2233)] = 73970, + [SMALL_STATE(2234)] = 73987, + [SMALL_STATE(2235)] = 74004, + [SMALL_STATE(2236)] = 74021, + [SMALL_STATE(2237)] = 74038, + [SMALL_STATE(2238)] = 74053, + [SMALL_STATE(2239)] = 74070, + [SMALL_STATE(2240)] = 74087, + [SMALL_STATE(2241)] = 74100, + [SMALL_STATE(2242)] = 74117, + [SMALL_STATE(2243)] = 74134, + [SMALL_STATE(2244)] = 74147, + [SMALL_STATE(2245)] = 74162, + [SMALL_STATE(2246)] = 74179, + [SMALL_STATE(2247)] = 74196, + [SMALL_STATE(2248)] = 74209, + [SMALL_STATE(2249)] = 74224, + [SMALL_STATE(2250)] = 74239, + [SMALL_STATE(2251)] = 74256, + [SMALL_STATE(2252)] = 74273, + [SMALL_STATE(2253)] = 74290, + [SMALL_STATE(2254)] = 74307, + [SMALL_STATE(2255)] = 74324, + [SMALL_STATE(2256)] = 74341, + [SMALL_STATE(2257)] = 74356, + [SMALL_STATE(2258)] = 74371, + [SMALL_STATE(2259)] = 74385, + [SMALL_STATE(2260)] = 74397, + [SMALL_STATE(2261)] = 74411, + [SMALL_STATE(2262)] = 74425, + [SMALL_STATE(2263)] = 74437, + [SMALL_STATE(2264)] = 74447, + [SMALL_STATE(2265)] = 74459, + [SMALL_STATE(2266)] = 74473, + [SMALL_STATE(2267)] = 74487, + [SMALL_STATE(2268)] = 74501, + [SMALL_STATE(2269)] = 74511, + [SMALL_STATE(2270)] = 74525, + [SMALL_STATE(2271)] = 74537, + [SMALL_STATE(2272)] = 74549, + [SMALL_STATE(2273)] = 74563, + [SMALL_STATE(2274)] = 74575, + [SMALL_STATE(2275)] = 74589, + [SMALL_STATE(2276)] = 74603, + [SMALL_STATE(2277)] = 74617, + [SMALL_STATE(2278)] = 74631, + [SMALL_STATE(2279)] = 74645, + [SMALL_STATE(2280)] = 74655, + [SMALL_STATE(2281)] = 74669, + [SMALL_STATE(2282)] = 74683, + [SMALL_STATE(2283)] = 74697, + [SMALL_STATE(2284)] = 74711, + [SMALL_STATE(2285)] = 74725, + [SMALL_STATE(2286)] = 74737, + [SMALL_STATE(2287)] = 74751, + [SMALL_STATE(2288)] = 74765, + [SMALL_STATE(2289)] = 74777, + [SMALL_STATE(2290)] = 74791, + [SMALL_STATE(2291)] = 74805, + [SMALL_STATE(2292)] = 74819, + [SMALL_STATE(2293)] = 74833, + [SMALL_STATE(2294)] = 74847, + [SMALL_STATE(2295)] = 74861, + [SMALL_STATE(2296)] = 74873, + [SMALL_STATE(2297)] = 74887, + [SMALL_STATE(2298)] = 74901, + [SMALL_STATE(2299)] = 74915, + [SMALL_STATE(2300)] = 74929, + [SMALL_STATE(2301)] = 74941, + [SMALL_STATE(2302)] = 74955, + [SMALL_STATE(2303)] = 74969, + [SMALL_STATE(2304)] = 74981, + [SMALL_STATE(2305)] = 74995, + [SMALL_STATE(2306)] = 75007, + [SMALL_STATE(2307)] = 75019, + [SMALL_STATE(2308)] = 75031, + [SMALL_STATE(2309)] = 75041, + [SMALL_STATE(2310)] = 75055, + [SMALL_STATE(2311)] = 75069, + [SMALL_STATE(2312)] = 75083, + [SMALL_STATE(2313)] = 75095, + [SMALL_STATE(2314)] = 75109, + [SMALL_STATE(2315)] = 75121, + [SMALL_STATE(2316)] = 75135, + [SMALL_STATE(2317)] = 75149, + [SMALL_STATE(2318)] = 75163, + [SMALL_STATE(2319)] = 75177, + [SMALL_STATE(2320)] = 75191, + [SMALL_STATE(2321)] = 75205, + [SMALL_STATE(2322)] = 75219, + [SMALL_STATE(2323)] = 75233, + [SMALL_STATE(2324)] = 75247, + [SMALL_STATE(2325)] = 75261, + [SMALL_STATE(2326)] = 75271, + [SMALL_STATE(2327)] = 75281, + [SMALL_STATE(2328)] = 75295, + [SMALL_STATE(2329)] = 75307, + [SMALL_STATE(2330)] = 75317, + [SMALL_STATE(2331)] = 75331, + [SMALL_STATE(2332)] = 75345, + [SMALL_STATE(2333)] = 75359, + [SMALL_STATE(2334)] = 75373, + [SMALL_STATE(2335)] = 75387, + [SMALL_STATE(2336)] = 75397, + [SMALL_STATE(2337)] = 75407, + [SMALL_STATE(2338)] = 75421, + [SMALL_STATE(2339)] = 75435, + [SMALL_STATE(2340)] = 75447, + [SMALL_STATE(2341)] = 75461, + [SMALL_STATE(2342)] = 75471, + [SMALL_STATE(2343)] = 75483, + [SMALL_STATE(2344)] = 75497, + [SMALL_STATE(2345)] = 75509, + [SMALL_STATE(2346)] = 75521, + [SMALL_STATE(2347)] = 75533, + [SMALL_STATE(2348)] = 75547, + [SMALL_STATE(2349)] = 75561, + [SMALL_STATE(2350)] = 75573, + [SMALL_STATE(2351)] = 75587, + [SMALL_STATE(2352)] = 75601, + [SMALL_STATE(2353)] = 75613, + [SMALL_STATE(2354)] = 75627, + [SMALL_STATE(2355)] = 75639, + [SMALL_STATE(2356)] = 75649, + [SMALL_STATE(2357)] = 75663, + [SMALL_STATE(2358)] = 75677, + [SMALL_STATE(2359)] = 75691, + [SMALL_STATE(2360)] = 75705, + [SMALL_STATE(2361)] = 75719, + [SMALL_STATE(2362)] = 75733, + [SMALL_STATE(2363)] = 75747, + [SMALL_STATE(2364)] = 75761, + [SMALL_STATE(2365)] = 75775, + [SMALL_STATE(2366)] = 75789, + [SMALL_STATE(2367)] = 75803, + [SMALL_STATE(2368)] = 75817, + [SMALL_STATE(2369)] = 75831, + [SMALL_STATE(2370)] = 75845, + [SMALL_STATE(2371)] = 75859, + [SMALL_STATE(2372)] = 75869, + [SMALL_STATE(2373)] = 75883, + [SMALL_STATE(2374)] = 75897, + [SMALL_STATE(2375)] = 75911, + [SMALL_STATE(2376)] = 75925, + [SMALL_STATE(2377)] = 75935, + [SMALL_STATE(2378)] = 75947, + [SMALL_STATE(2379)] = 75957, + [SMALL_STATE(2380)] = 75971, + [SMALL_STATE(2381)] = 75983, + [SMALL_STATE(2382)] = 75997, + [SMALL_STATE(2383)] = 76011, + [SMALL_STATE(2384)] = 76025, + [SMALL_STATE(2385)] = 76039, + [SMALL_STATE(2386)] = 76053, + [SMALL_STATE(2387)] = 76067, + [SMALL_STATE(2388)] = 76081, + [SMALL_STATE(2389)] = 76093, + [SMALL_STATE(2390)] = 76107, + [SMALL_STATE(2391)] = 76121, + [SMALL_STATE(2392)] = 76135, + [SMALL_STATE(2393)] = 76149, + [SMALL_STATE(2394)] = 76163, + [SMALL_STATE(2395)] = 76177, + [SMALL_STATE(2396)] = 76191, + [SMALL_STATE(2397)] = 76205, + [SMALL_STATE(2398)] = 76219, + [SMALL_STATE(2399)] = 76233, + [SMALL_STATE(2400)] = 76247, + [SMALL_STATE(2401)] = 76261, + [SMALL_STATE(2402)] = 76275, + [SMALL_STATE(2403)] = 76285, + [SMALL_STATE(2404)] = 76299, + [SMALL_STATE(2405)] = 76313, + [SMALL_STATE(2406)] = 76327, + [SMALL_STATE(2407)] = 76337, + [SMALL_STATE(2408)] = 76351, + [SMALL_STATE(2409)] = 76363, + [SMALL_STATE(2410)] = 76377, + [SMALL_STATE(2411)] = 76387, + [SMALL_STATE(2412)] = 76401, + [SMALL_STATE(2413)] = 76413, + [SMALL_STATE(2414)] = 76425, + [SMALL_STATE(2415)] = 76439, + [SMALL_STATE(2416)] = 76453, + [SMALL_STATE(2417)] = 76467, + [SMALL_STATE(2418)] = 76481, + [SMALL_STATE(2419)] = 76495, + [SMALL_STATE(2420)] = 76507, + [SMALL_STATE(2421)] = 76521, + [SMALL_STATE(2422)] = 76535, + [SMALL_STATE(2423)] = 76549, + [SMALL_STATE(2424)] = 76563, + [SMALL_STATE(2425)] = 76577, + [SMALL_STATE(2426)] = 76591, + [SMALL_STATE(2427)] = 76605, + [SMALL_STATE(2428)] = 76619, + [SMALL_STATE(2429)] = 76633, + [SMALL_STATE(2430)] = 76647, + [SMALL_STATE(2431)] = 76659, + [SMALL_STATE(2432)] = 76673, + [SMALL_STATE(2433)] = 76687, + [SMALL_STATE(2434)] = 76699, + [SMALL_STATE(2435)] = 76713, + [SMALL_STATE(2436)] = 76727, + [SMALL_STATE(2437)] = 76741, + [SMALL_STATE(2438)] = 76751, + [SMALL_STATE(2439)] = 76765, + [SMALL_STATE(2440)] = 76775, + [SMALL_STATE(2441)] = 76789, + [SMALL_STATE(2442)] = 76803, + [SMALL_STATE(2443)] = 76817, + [SMALL_STATE(2444)] = 76827, + [SMALL_STATE(2445)] = 76841, + [SMALL_STATE(2446)] = 76855, + [SMALL_STATE(2447)] = 76865, + [SMALL_STATE(2448)] = 76879, + [SMALL_STATE(2449)] = 76893, + [SMALL_STATE(2450)] = 76907, + [SMALL_STATE(2451)] = 76921, + [SMALL_STATE(2452)] = 76931, + [SMALL_STATE(2453)] = 76945, + [SMALL_STATE(2454)] = 76955, + [SMALL_STATE(2455)] = 76969, + [SMALL_STATE(2456)] = 76983, + [SMALL_STATE(2457)] = 76993, + [SMALL_STATE(2458)] = 77007, + [SMALL_STATE(2459)] = 77021, + [SMALL_STATE(2460)] = 77035, + [SMALL_STATE(2461)] = 77049, + [SMALL_STATE(2462)] = 77063, + [SMALL_STATE(2463)] = 77077, + [SMALL_STATE(2464)] = 77091, + [SMALL_STATE(2465)] = 77105, + [SMALL_STATE(2466)] = 77117, + [SMALL_STATE(2467)] = 77131, + [SMALL_STATE(2468)] = 77141, + [SMALL_STATE(2469)] = 77155, + [SMALL_STATE(2470)] = 77169, + [SMALL_STATE(2471)] = 77183, + [SMALL_STATE(2472)] = 77197, + [SMALL_STATE(2473)] = 77207, + [SMALL_STATE(2474)] = 77221, + [SMALL_STATE(2475)] = 77235, + [SMALL_STATE(2476)] = 77245, + [SMALL_STATE(2477)] = 77259, + [SMALL_STATE(2478)] = 77273, + [SMALL_STATE(2479)] = 77287, + [SMALL_STATE(2480)] = 77301, + [SMALL_STATE(2481)] = 77311, + [SMALL_STATE(2482)] = 77321, + [SMALL_STATE(2483)] = 77331, + [SMALL_STATE(2484)] = 77345, + [SMALL_STATE(2485)] = 77359, + [SMALL_STATE(2486)] = 77373, + [SMALL_STATE(2487)] = 77387, + [SMALL_STATE(2488)] = 77401, + [SMALL_STATE(2489)] = 77415, + [SMALL_STATE(2490)] = 77427, + [SMALL_STATE(2491)] = 77441, + [SMALL_STATE(2492)] = 77455, + [SMALL_STATE(2493)] = 77469, + [SMALL_STATE(2494)] = 77483, + [SMALL_STATE(2495)] = 77495, + [SMALL_STATE(2496)] = 77509, + [SMALL_STATE(2497)] = 77519, + [SMALL_STATE(2498)] = 77533, + [SMALL_STATE(2499)] = 77547, + [SMALL_STATE(2500)] = 77561, + [SMALL_STATE(2501)] = 77571, + [SMALL_STATE(2502)] = 77581, + [SMALL_STATE(2503)] = 77591, + [SMALL_STATE(2504)] = 77601, + [SMALL_STATE(2505)] = 77615, + [SMALL_STATE(2506)] = 77629, + [SMALL_STATE(2507)] = 77639, + [SMALL_STATE(2508)] = 77653, + [SMALL_STATE(2509)] = 77663, + [SMALL_STATE(2510)] = 77677, + [SMALL_STATE(2511)] = 77691, + [SMALL_STATE(2512)] = 77705, + [SMALL_STATE(2513)] = 77719, + [SMALL_STATE(2514)] = 77733, + [SMALL_STATE(2515)] = 77743, + [SMALL_STATE(2516)] = 77757, + [SMALL_STATE(2517)] = 77767, + [SMALL_STATE(2518)] = 77781, + [SMALL_STATE(2519)] = 77795, + [SMALL_STATE(2520)] = 77809, + [SMALL_STATE(2521)] = 77823, + [SMALL_STATE(2522)] = 77837, + [SMALL_STATE(2523)] = 77851, + [SMALL_STATE(2524)] = 77865, + [SMALL_STATE(2525)] = 77875, + [SMALL_STATE(2526)] = 77889, + [SMALL_STATE(2527)] = 77899, + [SMALL_STATE(2528)] = 77913, + [SMALL_STATE(2529)] = 77927, + [SMALL_STATE(2530)] = 77941, + [SMALL_STATE(2531)] = 77955, + [SMALL_STATE(2532)] = 77965, + [SMALL_STATE(2533)] = 77979, + [SMALL_STATE(2534)] = 77993, + [SMALL_STATE(2535)] = 78003, + [SMALL_STATE(2536)] = 78017, + [SMALL_STATE(2537)] = 78027, + [SMALL_STATE(2538)] = 78037, + [SMALL_STATE(2539)] = 78047, + [SMALL_STATE(2540)] = 78061, + [SMALL_STATE(2541)] = 78075, + [SMALL_STATE(2542)] = 78085, + [SMALL_STATE(2543)] = 78099, + [SMALL_STATE(2544)] = 78113, + [SMALL_STATE(2545)] = 78123, + [SMALL_STATE(2546)] = 78137, + [SMALL_STATE(2547)] = 78151, + [SMALL_STATE(2548)] = 78165, + [SMALL_STATE(2549)] = 78175, + [SMALL_STATE(2550)] = 78189, + [SMALL_STATE(2551)] = 78203, + [SMALL_STATE(2552)] = 78213, + [SMALL_STATE(2553)] = 78227, + [SMALL_STATE(2554)] = 78241, + [SMALL_STATE(2555)] = 78251, + [SMALL_STATE(2556)] = 78265, + [SMALL_STATE(2557)] = 78279, + [SMALL_STATE(2558)] = 78293, + [SMALL_STATE(2559)] = 78305, + [SMALL_STATE(2560)] = 78319, + [SMALL_STATE(2561)] = 78329, + [SMALL_STATE(2562)] = 78339, + [SMALL_STATE(2563)] = 78353, + [SMALL_STATE(2564)] = 78367, + [SMALL_STATE(2565)] = 78377, + [SMALL_STATE(2566)] = 78387, + [SMALL_STATE(2567)] = 78397, + [SMALL_STATE(2568)] = 78407, + [SMALL_STATE(2569)] = 78421, + [SMALL_STATE(2570)] = 78431, + [SMALL_STATE(2571)] = 78445, + [SMALL_STATE(2572)] = 78459, + [SMALL_STATE(2573)] = 78473, + [SMALL_STATE(2574)] = 78487, + [SMALL_STATE(2575)] = 78501, + [SMALL_STATE(2576)] = 78515, + [SMALL_STATE(2577)] = 78525, + [SMALL_STATE(2578)] = 78539, + [SMALL_STATE(2579)] = 78549, + [SMALL_STATE(2580)] = 78563, + [SMALL_STATE(2581)] = 78577, + [SMALL_STATE(2582)] = 78591, + [SMALL_STATE(2583)] = 78605, + [SMALL_STATE(2584)] = 78619, + [SMALL_STATE(2585)] = 78633, + [SMALL_STATE(2586)] = 78647, + [SMALL_STATE(2587)] = 78661, + [SMALL_STATE(2588)] = 78675, + [SMALL_STATE(2589)] = 78689, + [SMALL_STATE(2590)] = 78703, + [SMALL_STATE(2591)] = 78717, + [SMALL_STATE(2592)] = 78728, + [SMALL_STATE(2593)] = 78739, + [SMALL_STATE(2594)] = 78750, + [SMALL_STATE(2595)] = 78761, + [SMALL_STATE(2596)] = 78772, + [SMALL_STATE(2597)] = 78783, + [SMALL_STATE(2598)] = 78794, + [SMALL_STATE(2599)] = 78805, + [SMALL_STATE(2600)] = 78816, + [SMALL_STATE(2601)] = 78827, + [SMALL_STATE(2602)] = 78838, + [SMALL_STATE(2603)] = 78847, + [SMALL_STATE(2604)] = 78858, + [SMALL_STATE(2605)] = 78869, + [SMALL_STATE(2606)] = 78880, + [SMALL_STATE(2607)] = 78891, + [SMALL_STATE(2608)] = 78902, + [SMALL_STATE(2609)] = 78913, + [SMALL_STATE(2610)] = 78924, + [SMALL_STATE(2611)] = 78933, + [SMALL_STATE(2612)] = 78944, + [SMALL_STATE(2613)] = 78955, + [SMALL_STATE(2614)] = 78966, + [SMALL_STATE(2615)] = 78977, + [SMALL_STATE(2616)] = 78988, + [SMALL_STATE(2617)] = 78999, + [SMALL_STATE(2618)] = 79010, + [SMALL_STATE(2619)] = 79021, + [SMALL_STATE(2620)] = 79032, + [SMALL_STATE(2621)] = 79043, + [SMALL_STATE(2622)] = 79054, + [SMALL_STATE(2623)] = 79065, + [SMALL_STATE(2624)] = 79076, + [SMALL_STATE(2625)] = 79087, + [SMALL_STATE(2626)] = 79098, + [SMALL_STATE(2627)] = 79109, + [SMALL_STATE(2628)] = 79120, + [SMALL_STATE(2629)] = 79131, + [SMALL_STATE(2630)] = 79142, + [SMALL_STATE(2631)] = 79153, + [SMALL_STATE(2632)] = 79164, + [SMALL_STATE(2633)] = 79175, + [SMALL_STATE(2634)] = 79186, + [SMALL_STATE(2635)] = 79197, + [SMALL_STATE(2636)] = 79208, + [SMALL_STATE(2637)] = 79219, + [SMALL_STATE(2638)] = 79228, + [SMALL_STATE(2639)] = 79239, + [SMALL_STATE(2640)] = 79250, + [SMALL_STATE(2641)] = 79261, + [SMALL_STATE(2642)] = 79272, + [SMALL_STATE(2643)] = 79283, + [SMALL_STATE(2644)] = 79292, + [SMALL_STATE(2645)] = 79303, + [SMALL_STATE(2646)] = 79314, + [SMALL_STATE(2647)] = 79325, + [SMALL_STATE(2648)] = 79336, + [SMALL_STATE(2649)] = 79345, + [SMALL_STATE(2650)] = 79354, + [SMALL_STATE(2651)] = 79365, + [SMALL_STATE(2652)] = 79376, + [SMALL_STATE(2653)] = 79387, + [SMALL_STATE(2654)] = 79398, + [SMALL_STATE(2655)] = 79409, + [SMALL_STATE(2656)] = 79420, + [SMALL_STATE(2657)] = 79431, + [SMALL_STATE(2658)] = 79440, + [SMALL_STATE(2659)] = 79451, + [SMALL_STATE(2660)] = 79462, + [SMALL_STATE(2661)] = 79473, + [SMALL_STATE(2662)] = 79484, + [SMALL_STATE(2663)] = 79495, + [SMALL_STATE(2664)] = 79504, + [SMALL_STATE(2665)] = 79513, + [SMALL_STATE(2666)] = 79524, + [SMALL_STATE(2667)] = 79535, + [SMALL_STATE(2668)] = 79546, + [SMALL_STATE(2669)] = 79557, + [SMALL_STATE(2670)] = 79566, + [SMALL_STATE(2671)] = 79575, + [SMALL_STATE(2672)] = 79586, + [SMALL_STATE(2673)] = 79595, + [SMALL_STATE(2674)] = 79606, + [SMALL_STATE(2675)] = 79617, + [SMALL_STATE(2676)] = 79628, + [SMALL_STATE(2677)] = 79639, + [SMALL_STATE(2678)] = 79650, + [SMALL_STATE(2679)] = 79661, + [SMALL_STATE(2680)] = 79672, + [SMALL_STATE(2681)] = 79683, + [SMALL_STATE(2682)] = 79694, + [SMALL_STATE(2683)] = 79705, + [SMALL_STATE(2684)] = 79714, + [SMALL_STATE(2685)] = 79725, + [SMALL_STATE(2686)] = 79736, + [SMALL_STATE(2687)] = 79747, + [SMALL_STATE(2688)] = 79758, + [SMALL_STATE(2689)] = 79769, + [SMALL_STATE(2690)] = 79780, + [SMALL_STATE(2691)] = 79791, + [SMALL_STATE(2692)] = 79802, + [SMALL_STATE(2693)] = 79813, + [SMALL_STATE(2694)] = 79824, + [SMALL_STATE(2695)] = 79835, + [SMALL_STATE(2696)] = 79846, + [SMALL_STATE(2697)] = 79857, + [SMALL_STATE(2698)] = 79868, + [SMALL_STATE(2699)] = 79879, + [SMALL_STATE(2700)] = 79890, + [SMALL_STATE(2701)] = 79901, + [SMALL_STATE(2702)] = 79912, + [SMALL_STATE(2703)] = 79923, + [SMALL_STATE(2704)] = 79932, + [SMALL_STATE(2705)] = 79941, + [SMALL_STATE(2706)] = 79952, + [SMALL_STATE(2707)] = 79963, + [SMALL_STATE(2708)] = 79974, + [SMALL_STATE(2709)] = 79985, + [SMALL_STATE(2710)] = 79996, + [SMALL_STATE(2711)] = 80007, + [SMALL_STATE(2712)] = 80018, + [SMALL_STATE(2713)] = 80029, + [SMALL_STATE(2714)] = 80040, + [SMALL_STATE(2715)] = 80051, + [SMALL_STATE(2716)] = 80062, + [SMALL_STATE(2717)] = 80073, + [SMALL_STATE(2718)] = 80084, + [SMALL_STATE(2719)] = 80095, + [SMALL_STATE(2720)] = 80106, + [SMALL_STATE(2721)] = 80115, + [SMALL_STATE(2722)] = 80126, + [SMALL_STATE(2723)] = 80137, + [SMALL_STATE(2724)] = 80148, + [SMALL_STATE(2725)] = 80157, + [SMALL_STATE(2726)] = 80168, + [SMALL_STATE(2727)] = 80177, + [SMALL_STATE(2728)] = 80188, + [SMALL_STATE(2729)] = 80199, + [SMALL_STATE(2730)] = 80210, + [SMALL_STATE(2731)] = 80221, + [SMALL_STATE(2732)] = 80230, + [SMALL_STATE(2733)] = 80241, + [SMALL_STATE(2734)] = 80250, + [SMALL_STATE(2735)] = 80259, + [SMALL_STATE(2736)] = 80270, + [SMALL_STATE(2737)] = 80281, + [SMALL_STATE(2738)] = 80290, + [SMALL_STATE(2739)] = 80301, + [SMALL_STATE(2740)] = 80310, + [SMALL_STATE(2741)] = 80321, + [SMALL_STATE(2742)] = 80332, + [SMALL_STATE(2743)] = 80343, + [SMALL_STATE(2744)] = 80352, + [SMALL_STATE(2745)] = 80361, + [SMALL_STATE(2746)] = 80372, + [SMALL_STATE(2747)] = 80381, + [SMALL_STATE(2748)] = 80390, + [SMALL_STATE(2749)] = 80401, + [SMALL_STATE(2750)] = 80412, + [SMALL_STATE(2751)] = 80423, + [SMALL_STATE(2752)] = 80434, + [SMALL_STATE(2753)] = 80445, + [SMALL_STATE(2754)] = 80456, + [SMALL_STATE(2755)] = 80467, + [SMALL_STATE(2756)] = 80476, + [SMALL_STATE(2757)] = 80487, + [SMALL_STATE(2758)] = 80498, + [SMALL_STATE(2759)] = 80509, + [SMALL_STATE(2760)] = 80518, + [SMALL_STATE(2761)] = 80529, + [SMALL_STATE(2762)] = 80540, + [SMALL_STATE(2763)] = 80551, + [SMALL_STATE(2764)] = 80562, + [SMALL_STATE(2765)] = 80573, + [SMALL_STATE(2766)] = 80584, + [SMALL_STATE(2767)] = 80595, + [SMALL_STATE(2768)] = 80606, + [SMALL_STATE(2769)] = 80617, + [SMALL_STATE(2770)] = 80628, + [SMALL_STATE(2771)] = 80639, + [SMALL_STATE(2772)] = 80650, + [SMALL_STATE(2773)] = 80661, + [SMALL_STATE(2774)] = 80672, + [SMALL_STATE(2775)] = 80683, + [SMALL_STATE(2776)] = 80694, + [SMALL_STATE(2777)] = 80705, + [SMALL_STATE(2778)] = 80716, + [SMALL_STATE(2779)] = 80727, + [SMALL_STATE(2780)] = 80738, + [SMALL_STATE(2781)] = 80749, + [SMALL_STATE(2782)] = 80760, + [SMALL_STATE(2783)] = 80769, + [SMALL_STATE(2784)] = 80780, + [SMALL_STATE(2785)] = 80789, + [SMALL_STATE(2786)] = 80800, + [SMALL_STATE(2787)] = 80811, + [SMALL_STATE(2788)] = 80822, + [SMALL_STATE(2789)] = 80833, + [SMALL_STATE(2790)] = 80844, + [SMALL_STATE(2791)] = 80855, + [SMALL_STATE(2792)] = 80866, + [SMALL_STATE(2793)] = 80877, + [SMALL_STATE(2794)] = 80886, + [SMALL_STATE(2795)] = 80897, + [SMALL_STATE(2796)] = 80908, + [SMALL_STATE(2797)] = 80919, + [SMALL_STATE(2798)] = 80930, + [SMALL_STATE(2799)] = 80941, + [SMALL_STATE(2800)] = 80952, + [SMALL_STATE(2801)] = 80960, + [SMALL_STATE(2802)] = 80968, + [SMALL_STATE(2803)] = 80976, + [SMALL_STATE(2804)] = 80984, + [SMALL_STATE(2805)] = 80992, + [SMALL_STATE(2806)] = 81000, + [SMALL_STATE(2807)] = 81008, + [SMALL_STATE(2808)] = 81016, + [SMALL_STATE(2809)] = 81024, + [SMALL_STATE(2810)] = 81032, + [SMALL_STATE(2811)] = 81040, + [SMALL_STATE(2812)] = 81048, + [SMALL_STATE(2813)] = 81056, + [SMALL_STATE(2814)] = 81064, + [SMALL_STATE(2815)] = 81072, + [SMALL_STATE(2816)] = 81080, + [SMALL_STATE(2817)] = 81088, + [SMALL_STATE(2818)] = 81096, + [SMALL_STATE(2819)] = 81104, + [SMALL_STATE(2820)] = 81112, + [SMALL_STATE(2821)] = 81120, + [SMALL_STATE(2822)] = 81128, + [SMALL_STATE(2823)] = 81136, + [SMALL_STATE(2824)] = 81144, + [SMALL_STATE(2825)] = 81152, + [SMALL_STATE(2826)] = 81160, + [SMALL_STATE(2827)] = 81168, + [SMALL_STATE(2828)] = 81176, + [SMALL_STATE(2829)] = 81184, + [SMALL_STATE(2830)] = 81192, + [SMALL_STATE(2831)] = 81200, + [SMALL_STATE(2832)] = 81208, + [SMALL_STATE(2833)] = 81216, + [SMALL_STATE(2834)] = 81224, + [SMALL_STATE(2835)] = 81232, + [SMALL_STATE(2836)] = 81240, + [SMALL_STATE(2837)] = 81248, + [SMALL_STATE(2838)] = 81256, + [SMALL_STATE(2839)] = 81264, + [SMALL_STATE(2840)] = 81272, + [SMALL_STATE(2841)] = 81280, + [SMALL_STATE(2842)] = 81288, + [SMALL_STATE(2843)] = 81296, + [SMALL_STATE(2844)] = 81304, + [SMALL_STATE(2845)] = 81312, + [SMALL_STATE(2846)] = 81320, + [SMALL_STATE(2847)] = 81328, + [SMALL_STATE(2848)] = 81336, + [SMALL_STATE(2849)] = 81344, + [SMALL_STATE(2850)] = 81352, + [SMALL_STATE(2851)] = 81360, + [SMALL_STATE(2852)] = 81368, + [SMALL_STATE(2853)] = 81376, + [SMALL_STATE(2854)] = 81384, + [SMALL_STATE(2855)] = 81392, + [SMALL_STATE(2856)] = 81400, + [SMALL_STATE(2857)] = 81408, + [SMALL_STATE(2858)] = 81416, + [SMALL_STATE(2859)] = 81424, + [SMALL_STATE(2860)] = 81432, + [SMALL_STATE(2861)] = 81440, + [SMALL_STATE(2862)] = 81448, + [SMALL_STATE(2863)] = 81456, + [SMALL_STATE(2864)] = 81464, + [SMALL_STATE(2865)] = 81472, + [SMALL_STATE(2866)] = 81480, + [SMALL_STATE(2867)] = 81488, + [SMALL_STATE(2868)] = 81496, + [SMALL_STATE(2869)] = 81504, + [SMALL_STATE(2870)] = 81512, + [SMALL_STATE(2871)] = 81520, + [SMALL_STATE(2872)] = 81528, + [SMALL_STATE(2873)] = 81536, + [SMALL_STATE(2874)] = 81544, + [SMALL_STATE(2875)] = 81552, + [SMALL_STATE(2876)] = 81560, + [SMALL_STATE(2877)] = 81568, + [SMALL_STATE(2878)] = 81576, + [SMALL_STATE(2879)] = 81584, + [SMALL_STATE(2880)] = 81592, + [SMALL_STATE(2881)] = 81600, + [SMALL_STATE(2882)] = 81608, + [SMALL_STATE(2883)] = 81616, + [SMALL_STATE(2884)] = 81624, + [SMALL_STATE(2885)] = 81632, + [SMALL_STATE(2886)] = 81640, + [SMALL_STATE(2887)] = 81648, + [SMALL_STATE(2888)] = 81656, + [SMALL_STATE(2889)] = 81664, + [SMALL_STATE(2890)] = 81672, + [SMALL_STATE(2891)] = 81680, + [SMALL_STATE(2892)] = 81688, + [SMALL_STATE(2893)] = 81696, + [SMALL_STATE(2894)] = 81704, + [SMALL_STATE(2895)] = 81712, + [SMALL_STATE(2896)] = 81720, + [SMALL_STATE(2897)] = 81728, + [SMALL_STATE(2898)] = 81736, + [SMALL_STATE(2899)] = 81744, + [SMALL_STATE(2900)] = 81752, + [SMALL_STATE(2901)] = 81760, + [SMALL_STATE(2902)] = 81768, + [SMALL_STATE(2903)] = 81776, + [SMALL_STATE(2904)] = 81784, + [SMALL_STATE(2905)] = 81792, + [SMALL_STATE(2906)] = 81800, + [SMALL_STATE(2907)] = 81808, + [SMALL_STATE(2908)] = 81816, + [SMALL_STATE(2909)] = 81824, + [SMALL_STATE(2910)] = 81832, + [SMALL_STATE(2911)] = 81840, + [SMALL_STATE(2912)] = 81848, + [SMALL_STATE(2913)] = 81856, + [SMALL_STATE(2914)] = 81864, + [SMALL_STATE(2915)] = 81872, + [SMALL_STATE(2916)] = 81880, + [SMALL_STATE(2917)] = 81888, + [SMALL_STATE(2918)] = 81896, + [SMALL_STATE(2919)] = 81904, + [SMALL_STATE(2920)] = 81912, + [SMALL_STATE(2921)] = 81920, + [SMALL_STATE(2922)] = 81928, + [SMALL_STATE(2923)] = 81936, + [SMALL_STATE(2924)] = 81944, + [SMALL_STATE(2925)] = 81952, + [SMALL_STATE(2926)] = 81960, + [SMALL_STATE(2927)] = 81968, + [SMALL_STATE(2928)] = 81976, + [SMALL_STATE(2929)] = 81984, + [SMALL_STATE(2930)] = 81992, + [SMALL_STATE(2931)] = 82000, + [SMALL_STATE(2932)] = 82008, + [SMALL_STATE(2933)] = 82016, + [SMALL_STATE(2934)] = 82024, + [SMALL_STATE(2935)] = 82032, + [SMALL_STATE(2936)] = 82040, + [SMALL_STATE(2937)] = 82048, + [SMALL_STATE(2938)] = 82056, + [SMALL_STATE(2939)] = 82064, + [SMALL_STATE(2940)] = 82072, + [SMALL_STATE(2941)] = 82080, + [SMALL_STATE(2942)] = 82088, + [SMALL_STATE(2943)] = 82096, + [SMALL_STATE(2944)] = 82104, + [SMALL_STATE(2945)] = 82112, + [SMALL_STATE(2946)] = 82120, + [SMALL_STATE(2947)] = 82128, + [SMALL_STATE(2948)] = 82136, + [SMALL_STATE(2949)] = 82144, + [SMALL_STATE(2950)] = 82152, + [SMALL_STATE(2951)] = 82160, + [SMALL_STATE(2952)] = 82168, + [SMALL_STATE(2953)] = 82176, + [SMALL_STATE(2954)] = 82184, + [SMALL_STATE(2955)] = 82192, + [SMALL_STATE(2956)] = 82200, + [SMALL_STATE(2957)] = 82208, + [SMALL_STATE(2958)] = 82216, + [SMALL_STATE(2959)] = 82224, + [SMALL_STATE(2960)] = 82232, + [SMALL_STATE(2961)] = 82240, + [SMALL_STATE(2962)] = 82248, + [SMALL_STATE(2963)] = 82256, + [SMALL_STATE(2964)] = 82264, + [SMALL_STATE(2965)] = 82272, + [SMALL_STATE(2966)] = 82280, + [SMALL_STATE(2967)] = 82288, + [SMALL_STATE(2968)] = 82296, + [SMALL_STATE(2969)] = 82304, + [SMALL_STATE(2970)] = 82312, + [SMALL_STATE(2971)] = 82320, + [SMALL_STATE(2972)] = 82328, + [SMALL_STATE(2973)] = 82336, + [SMALL_STATE(2974)] = 82344, + [SMALL_STATE(2975)] = 82352, + [SMALL_STATE(2976)] = 82360, + [SMALL_STATE(2977)] = 82368, + [SMALL_STATE(2978)] = 82376, + [SMALL_STATE(2979)] = 82384, + [SMALL_STATE(2980)] = 82392, + [SMALL_STATE(2981)] = 82400, + [SMALL_STATE(2982)] = 82408, + [SMALL_STATE(2983)] = 82416, + [SMALL_STATE(2984)] = 82424, + [SMALL_STATE(2985)] = 82432, + [SMALL_STATE(2986)] = 82440, + [SMALL_STATE(2987)] = 82448, + [SMALL_STATE(2988)] = 82456, + [SMALL_STATE(2989)] = 82464, + [SMALL_STATE(2990)] = 82472, + [SMALL_STATE(2991)] = 82480, + [SMALL_STATE(2992)] = 82488, + [SMALL_STATE(2993)] = 82496, + [SMALL_STATE(2994)] = 82504, + [SMALL_STATE(2995)] = 82512, + [SMALL_STATE(2996)] = 82520, + [SMALL_STATE(2997)] = 82528, + [SMALL_STATE(2998)] = 82536, + [SMALL_STATE(2999)] = 82544, + [SMALL_STATE(3000)] = 82552, + [SMALL_STATE(3001)] = 82560, + [SMALL_STATE(3002)] = 82568, + [SMALL_STATE(3003)] = 82576, + [SMALL_STATE(3004)] = 82584, + [SMALL_STATE(3005)] = 82592, + [SMALL_STATE(3006)] = 82600, + [SMALL_STATE(3007)] = 82608, + [SMALL_STATE(3008)] = 82616, + [SMALL_STATE(3009)] = 82624, + [SMALL_STATE(3010)] = 82632, + [SMALL_STATE(3011)] = 82640, + [SMALL_STATE(3012)] = 82648, + [SMALL_STATE(3013)] = 82656, + [SMALL_STATE(3014)] = 82664, + [SMALL_STATE(3015)] = 82672, + [SMALL_STATE(3016)] = 82680, + [SMALL_STATE(3017)] = 82688, + [SMALL_STATE(3018)] = 82696, + [SMALL_STATE(3019)] = 82704, + [SMALL_STATE(3020)] = 82712, + [SMALL_STATE(3021)] = 82720, + [SMALL_STATE(3022)] = 82728, + [SMALL_STATE(3023)] = 82736, + [SMALL_STATE(3024)] = 82744, + [SMALL_STATE(3025)] = 82752, + [SMALL_STATE(3026)] = 82760, + [SMALL_STATE(3027)] = 82768, + [SMALL_STATE(3028)] = 82776, + [SMALL_STATE(3029)] = 82784, + [SMALL_STATE(3030)] = 82792, + [SMALL_STATE(3031)] = 82800, + [SMALL_STATE(3032)] = 82808, + [SMALL_STATE(3033)] = 82816, + [SMALL_STATE(3034)] = 82824, + [SMALL_STATE(3035)] = 82832, + [SMALL_STATE(3036)] = 82840, + [SMALL_STATE(3037)] = 82848, + [SMALL_STATE(3038)] = 82856, + [SMALL_STATE(3039)] = 82864, + [SMALL_STATE(3040)] = 82872, + [SMALL_STATE(3041)] = 82880, + [SMALL_STATE(3042)] = 82888, + [SMALL_STATE(3043)] = 82896, + [SMALL_STATE(3044)] = 82904, + [SMALL_STATE(3045)] = 82912, + [SMALL_STATE(3046)] = 82920, + [SMALL_STATE(3047)] = 82928, + [SMALL_STATE(3048)] = 82936, + [SMALL_STATE(3049)] = 82944, + [SMALL_STATE(3050)] = 82952, + [SMALL_STATE(3051)] = 82960, + [SMALL_STATE(3052)] = 82968, + [SMALL_STATE(3053)] = 82976, + [SMALL_STATE(3054)] = 82984, + [SMALL_STATE(3055)] = 82992, + [SMALL_STATE(3056)] = 83000, + [SMALL_STATE(3057)] = 83008, + [SMALL_STATE(3058)] = 83016, + [SMALL_STATE(3059)] = 83024, + [SMALL_STATE(3060)] = 83032, + [SMALL_STATE(3061)] = 83040, + [SMALL_STATE(3062)] = 83048, + [SMALL_STATE(3063)] = 83056, + [SMALL_STATE(3064)] = 83064, + [SMALL_STATE(3065)] = 83072, + [SMALL_STATE(3066)] = 83080, + [SMALL_STATE(3067)] = 83088, + [SMALL_STATE(3068)] = 83096, + [SMALL_STATE(3069)] = 83104, + [SMALL_STATE(3070)] = 83112, + [SMALL_STATE(3071)] = 83120, + [SMALL_STATE(3072)] = 83128, + [SMALL_STATE(3073)] = 83136, + [SMALL_STATE(3074)] = 83144, + [SMALL_STATE(3075)] = 83152, + [SMALL_STATE(3076)] = 83160, + [SMALL_STATE(3077)] = 83168, + [SMALL_STATE(3078)] = 83176, + [SMALL_STATE(3079)] = 83184, + [SMALL_STATE(3080)] = 83192, + [SMALL_STATE(3081)] = 83200, + [SMALL_STATE(3082)] = 83208, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -121755,2552 +156450,3041 @@ 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(1086), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1086), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(251), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1793), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), - [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(95), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(981), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2477), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1435), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1461), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(726), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(712), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2474), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2056), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(563), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(587), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(557), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2064), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(143), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2462), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1275), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1832), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2403), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2401), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2400), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1099), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1416), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1242), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2135), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1401), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(591), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2386), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(81), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2143), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(965), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1745), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1054), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2379), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1284), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 138), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 138), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 224), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 224), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 207), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 207), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(720), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(29), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(95), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(981), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2477), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1843), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2187), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(726), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(823), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(550), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(73), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2212), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(120), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2189), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(591), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2386), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(81), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(526), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2143), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(965), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1745), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1054), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1064), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2379), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1064), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 89), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 89), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 128), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 128), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 109), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 109), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 149), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 149), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(243), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(318), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(319), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(320), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2374), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(513), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1785), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(525), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(509), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2240), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(795), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1828), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2267), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1491), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1531), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1500), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2276), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2116), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(585), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(565), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2280), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1275), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1805), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2281), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2282), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2283), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1910), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1501), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1241), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2115), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1385), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(591), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2294), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2287), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1286), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2287), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 81), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 81), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 74), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 74), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 73), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 73), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 74), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 74), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 81), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 81), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 85), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 85), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 86), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 86), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 74), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 74), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 74), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 74), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 87), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 87), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 71), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 71), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 70), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 70), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(287), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(487), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2455), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(513), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1785), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(525), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(287), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 69), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 69), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 108), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 108), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 109), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 109), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 91), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 91), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 111), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 111), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 112), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 112), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 113), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 113), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 114), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 114), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 115), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 115), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 117), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 117), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 123), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 123), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 124), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 124), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 118), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 118), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 74), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 74), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 125), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 125), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 118), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 118), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 118), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 118), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 126), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 126), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 231), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 231), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 227), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 227), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 230), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 230), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 127), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 127), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 229), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 229), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 222), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 222), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 228), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 228), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 216), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 216), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 225), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 225), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 223), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 223), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 222), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 222), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 134), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 134), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 204), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 204), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 220), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 220), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 142), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 142), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 219), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 219), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 212), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 212), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 197), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 197), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 217), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 217), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 215), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 215), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 214), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 214), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 147), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 147), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 148), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 148), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 212), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 212), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 211), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 211), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 209), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 209), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 151), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 151), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 205), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 205), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 204), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 204), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 203), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 203), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 202), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 202), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 201), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 201), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 200), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 200), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 199), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 199), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 118), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 118), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 198), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 198), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 197), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 197), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 196), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 196), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 195), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 195), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 155), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 155), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 156), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 156), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 176), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 176), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 188), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 188), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 167), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 167), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 187), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 187), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 185), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 185), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 123), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 123), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 168), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 168), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 184), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 184), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 151), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 151), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 161), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 161), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 74), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 74), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 181), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 181), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 133), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 133), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 180), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 180), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 118), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 118), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 161), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 161), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 169), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 169), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 161), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 161), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 176), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 176), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1360), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(521), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(522), - [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1306), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2242), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1705), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2346), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(575), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(591), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2295), - [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1377), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(573), - [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(572), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1406), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2244), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1331), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1789), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1302), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1891), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1891), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2346), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 67), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 67), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 98), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 98), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 101), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 101), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 121), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 121), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 149), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 149), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 149), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 139), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 139), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 141), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 141), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 88), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 88), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 109), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 109), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 109), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 90), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 90), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 129), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 129), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2420), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 186), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 186), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 208), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 109), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 110), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 110), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 122), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 178), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 177), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 130), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 149), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 165), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 150), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1464), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1482), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(431), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(429), - [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(428), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(538), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 131), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1234), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(429), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2312), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(148), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(139), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(274), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(170), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(673), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(758), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3082), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2594), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1211), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3080), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1807), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1810), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(927), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(896), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3079), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2602), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(710), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(173), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(755), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(712), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2603), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(326), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3076), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1668), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(25), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2586), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3074), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3073), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3072), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1304), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1779), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1647), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(176), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1761), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2605), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1231), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2129), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1235), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1233), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3063), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1687), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1233), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(43), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(120), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(48), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(47), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(46), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(120), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(3016), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(113), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2191), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(111), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(110), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(45), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(120), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(102), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(104), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(107), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(120), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(3010), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(113), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2191), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(111), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(45), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(58), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(129), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(75), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(74), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(73), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(129), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(58), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(133), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(2139), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(131), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_special_punctuation, 1), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_special_punctuation, 1), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(913), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(148), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(12), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(139), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(274), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(170), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(673), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(758), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(26), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3082), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1211), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3080), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2357), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2659), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(927), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1171), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(729), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(182), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2690), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(281), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(25), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2661), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(181), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2605), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1231), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2129), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1235), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1233), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3063), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1233), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 24), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 24), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 146), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 146), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 27), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 27), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 106), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 106), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 6), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 6), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 6), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 6), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 22), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 22), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 68), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 68), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 114), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 114), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2795), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1094), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2342), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(758), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2892), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2671), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2821), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1908), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1957), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1885), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2811), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2670), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(759), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(701), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2816), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1668), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2448), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2817), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2818), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2819), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2258), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1887), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1644), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1757), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2826), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1685), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2826), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 125), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 125), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 80), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 80), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 125), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 125), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 125), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 125), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 187), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 187), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 125), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 125), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 80), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 80), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 125), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 125), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 190), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 190), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 191), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 191), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 144), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 144), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 192), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 192), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 150), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 150), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 125), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 125), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 122), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 122), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 56), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 56), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 102), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 102), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 119), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 119), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 118), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 118), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 117), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 117), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 102), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 102), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 102), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 102), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 187), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 187), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 65), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 65), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 23), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 23), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 75), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 75), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 101), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 101), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 14), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 14), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 72), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 72), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 114), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 114), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 93), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 93), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 112), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 112), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 111), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 111), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 72), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 72), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 6), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 6), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 105), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 105), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 66), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 66), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 104), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 104), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 103), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 103), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 102), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 102), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 190), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 190), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 65), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 65), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 101), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 101), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 23), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 23), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 103), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 103), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 23), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 23), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 73), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 73), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 143), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 143), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 144), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 144), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 145), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 145), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 80), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 80), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 80), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 80), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 85), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 85), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 120), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 120), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 80), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 80), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 23), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 23), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 23), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 23), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 23), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 23), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 67), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 67), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 85), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 85), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 80), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 80), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 79), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 79), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 56), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 56), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 28), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 28), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 65), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 65), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 64), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 64), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 66), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 66), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 64), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 64), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 65), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 65), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 76), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 76), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 78), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 78), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 64), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 64), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 65), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 65), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 77), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 77), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 64), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 64), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 14), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 14), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 112), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 112), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 65), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 65), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1746), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(675), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(670), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2704), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(737), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(758), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2451), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2453), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2878), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3027), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2000), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2631), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2141), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(736), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(732), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2108), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2176), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2100), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2264), + [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2264), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(3027), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 16), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 16), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 16), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 16), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 21), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 21), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 20), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 20), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 17), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 17), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 17), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 17), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 21), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(3012), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 114), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 114), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 114), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 12), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 12), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 13), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 13), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 19), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 19), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 15), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 15), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 98), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 98), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 69), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 69), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 69), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 69), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 57), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 57), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 59), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 59), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 60), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 60), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 43), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 43), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 69), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 69), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 138), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 138), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 95), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 95), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 96), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 96), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 97), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 97), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 45), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 45), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 186), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 186), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 56), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 56), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 56), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 56), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 55), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 55), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 141), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 141), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 140), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 140), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 139), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 139), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 14), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 14), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 2), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 2), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 11), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 11), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 115), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 115), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 220), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 100), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 114), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 189), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 188), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 11), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 142), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 100), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 11), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 189), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1296), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(185), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 189), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 101), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 213), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 152), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 101), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 152), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 213), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(546), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1097), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1749), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 83), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 120), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 108), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 79), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(543), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 101), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 210), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(670), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 99), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1499), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1111), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 190), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 182), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1240), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 119), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1510), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1502), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1479), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 154), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), - [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), SHIFT_REPEAT(508), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(96), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(187), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 135), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 136), - [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1607), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 137), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(237), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2246), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 82), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5131] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 11), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 20), REDUCE(sym_scoped_type_identifier, 3, .production_id = 21), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 48), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 48), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 51), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 50), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 51), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 50), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 50), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 50), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 50), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 50), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 50), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 51), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 51), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 50), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1875), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1890), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(690), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(53), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(54), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(56), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 63), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 72), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 50), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 50), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 95), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 56), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 14), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 95), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1705), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(344), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 14), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 56), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 69), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(694), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 92), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 93), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 54), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 49), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(2212), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1311), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 108), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 101), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 135), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1902), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2667), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 14), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(666), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(353), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(416), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 137), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1884), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(2049), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 136), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 42), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(150), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 29), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 28), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 184), + [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 185), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1340), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [5285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1915), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 71), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1643), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 56), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 52), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 95), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 219), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(680), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1911), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 107), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 70), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(260), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(808), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 94), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 70), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 71), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 84), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 83), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 82), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 81), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 58), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 62), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 61), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 61), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 62), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 62), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6233] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), }; #ifdef __cplusplus diff --git a/vendor/tree-sitter-rust/src/tree_sitter/parser.h b/vendor/tree-sitter-rust/src/tree_sitter/parser.h index cbbc7b4ee..2b14ac104 100644 --- a/vendor/tree-sitter-rust/src/tree_sitter/parser.h +++ b/vendor/tree-sitter-rust/src/tree_sitter/parser.h @@ -123,6 +123,7 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; /*